13.4 mysql用户管理
mysql>grant all on *.* to 'user' identified by 'passwd';//all表示mysql所有命令,添删改查;*.*表示所有表格;
mysql>grant SELECT,UPDATE,INSERT on db1.* to 'user2' @ '192.168.133.1' identified by 'passwd';
mysql>grant all on db1.* to 'user3' @ '%' identified by 'passwd';//%表示所有IP;
mysql>show grants;//查看当前用户的所有授权
mysql>show grants for user2@192.168.133.1;
13.5 常用sql语句
登录mysql,#mysql -uroot -paminglinux
查找行数,mysql>select count(*) from mysql.user;
mysql>select * from mysql.db;
mysql>select db from mysql.db;
mysql>select db,user from mysql.db;
mysql>select * from mysql.db where host like '192.168.%';
添加,mysql>insert into db1.t1 values (1,'abc');
修改,mysql>update db1.t1 set name='aaa' where id=1;
清空表,mysql>truncate db1.t1;
删除表,mysql>drop table db1.t1;
删除数据库,mysql>drop database db1;
13.6 mysql数据库备份恢复
备份库,mysqldump -uroot -p123456 mysql >/tmp/mysql.sql
恢复库,mysql -uroot -p123456 mysql</tmp/mysql.sql
备份表,mysqldump -uroot -p123456 mysql user >/tmp/user.sql
恢复表,mysql -uroot -p123456 mysql</tmp/user.sql
备份所有库,mysqldump -uroot -p -A>/tmp/123.sql
只备份表结构,mysqldump -uroot -p123456 -d mysql > /tmp/mysql.sql
扩展 SQL语句教程 http://www.runoob.com/sql/sql-tutorial.html
什么是事务?事务的特性有哪些? http://blog.csdn.net/yenange/article/details/7556094
根据binlog恢复指定时间段的数据 https://blog.csdn.net/lilongsy/article/details/74726002
mysql字符集调整 http://xjsunjie.blog.51cto.com/999372/1355013
使用xtrabackup链接:http://pan.baidu.com/s/1miFpS9M 密码:86dx 链接:http://pan.baidu.com/s/1o7GXBBW 密码:ue2f