数据库ip地址为192.168.1.11,在本地通过ip 和端口去连接,即mysql -h192.168.1.11 -P3306-utest -ptest连接数据库, 下面的哪些授权方式可以授权这个连接? A. grant usage on *.* to test@'127.0.0.1' identified by 'test'; B. grant select on *.* to test@'192.168.1.11' identified by 'test'; C. grant select on *.* to test@'localhost' identified by 'test'; D. grant usage on *.* to test@'192.168.1.%' identified by ‘test';