以root进入MYSQL后会看到如下画面 Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 Server version: 5.0.33-log OpenBSD port: mysql-server-5.0.33
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql>
选择数据库,首先看他到底被你改了那些资料。。。: 通过select * from db ; 可以查看db表的狀況.
可以看到目前 db 中 共有两条记录(最下方会显示符合条数). 及其他相关的权限资料 如果你不确定是否相同,最笨的方法就是删掉重建 由于此例我看到两个资料的Host 列都是 localhost 所以 透過 delete from `表名` where `列名`='值'; 进行刪除资料, 若是资料不是localhost 就如法炮制 把localhost改成名称即可.
例如: 若其中一个是 ohaha.ks.edu.tw 一个是 localhost 则下分別两行指令. delete from `db` where `Host`='ohaha.ks.edu.tw'; delete from `db` where `Host`='localhost';