无法在 mysql 中创建新用户
unable to create new user in mysql
我试图在 mysql 5.6 中创建一个新用户,但在执行查询时出现错误。请帮忙
mysql> create user dsuser@'%' indentified by 'Passw0rd';<br></b>
ERROR 1064 (42000): 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 'indentified by 'Passw0rd'' at line 1
create user 'dsuser'@'%' indentified by 'Passw0rd';
CREATE USER 'dsuser'@'%' IDENTIFIED BY 'Passw0rd';
别忘了用户名两边的引号。
我试图在 mysql 5.6 中创建一个新用户,但在执行查询时出现错误。请帮忙
mysql> create user dsuser@'%' indentified by 'Passw0rd';<br></b>
ERROR 1064 (42000): 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 'indentified by 'Passw0rd'' at line 1
create user 'dsuser'@'%' indentified by 'Passw0rd';
CREATE USER 'dsuser'@'%' IDENTIFIED BY 'Passw0rd';
别忘了用户名两边的引号。