ERROR 1054 (42S22): Unknown column '‘root‘' in 'where clause'
linux安装mysql 修改密码的时候出现这个错误:ERROR 1054 (42S22): Unknown column '‘root‘' in 'where clause'修改密码的sql : update user set password=password(‘123456‘) where user=‘root‘;(错误sql)就是上面那个sql导致的错误。其实应该这...
·
linux安装mysql 修改密码的时候出现这个错误:ERROR 1054 (42S22): Unknown column '‘root‘' in 'where clause'
修改密码的sql :
update user set password=password(‘123456‘) where user=‘root‘;(错误sql)
就是上面那个sql导致的错误。其实应该这样写:
update user set password=password("123456") where user="root";
安装mysql 参考阿里云的这个文章 linux 安装mysql
更多推荐
已为社区贡献1条内容
所有评论(0)