[求助]怎样在phpmyadmin中使用password()函数
我想把我mysql数据库中的密码列,用PASSWORD()函数加密,不知道怎样用这个函数,请各位大侠帮帮忙,谢谢
设置密码
update user set password=password('你的密码') where user='你的用户'
添加用户
grant all on dbname.* to '用户'@'localhost' identified by '密码' #会自动加密.
phpmyadmin没用过.