mysql -u root //第一次进入时(没有密码)
mysql -u root -p //设置root密码后
select user,host,password from mysql.user; //查看用户信息,不要忘了最后的分号
delete from mysql.user where user=''; //删除匿名用户
show databases; //查看系统已存在的数据库
drop database test; //删除名为test的空数据库
grant all privileges on test.* to identified by 'yourpassword'; //建立对test数据库有完全操作权限的名为centospub的用户
select user from mysql.user where user='centospub'; //确认centospub用户的存在与否 create database test; //建立名为test的数据库 create table test(num int,name varchar(50)); //在test数据库中建立表 show tables; //查看test数据库中已存在的表 本文转自 qinling_bai 51CTO博客,原文链接:http://blog.51cto.com/22494/26014,如需转载请自行联系原作者