1

これは機能していません:

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を使用しています。どうしたの?

4

1 に答える 1

1

これを試して:

use mysql

GRANT ALL ON *.* TO 'root@192.168.1.2' IDENTIFIED BY 'password'
于 2013-01-26T14:59:11.363 に答える