这不起作用:
use mysql
GRANT ALL ON *.* TO 'root'@'192.168.1.2'也不是
use mysql
GRANT ALL ON *.* TO 'root'@'192.168.1.2' IDENTIFIED BY 'password'这是我得到的错误:
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'GRANT ALL ON *.* TO 'root'@'192.168.1.2'' at line 3我使用的是服务器版本5.5.8。怎么了?
发布于 2013-01-26 22:59:11
试试这个:
use mysql
GRANT ALL ON *.* TO 'root@192.168.1.2' IDENTIFIED BY 'password'https://stackoverflow.com/questions/14538007
复制相似问题