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

2007-10-11 15:36
2007-10-11 16:36