mysql退出
mysql > exit
mysql > quit
mysql > \q;
mysql 默认的端口为3306
mysql中的超级用户root
连接数据库
mysql -uroot -h主机名 -p密码
连接:mysql -h主机地址 -u用户名 -p用户密码 (注:u与root可以不用加空格,其它也一样)
断开:exit (回车)
创建授权:grant select on 数据库.* to 用户名@登录主机 identified by \"密码\"
修改密码:mysqladmin -u用户名 -p旧密码 password 新密码
删除授权: revoke select,insert,update,delete om *.* fromtest2@localhost;