首页 > 代码库 > Access denied for user 'bill'@'localhost' (using password: YES)

Access denied for user 'bill'@'localhost' (using password: YES)

创建用户分配权限


CREATE USER ‘bill‘@‘%‘ IDENTIFIED BY ‘passpass‘;

 grant all privileges on *.* to bill@localhost identified by ‘passpass‘ with grant option;

Access denied for user 'bill'@'localhost' (using password: YES)