前言
记录MySQL常用命令操作
基础操作
mysql -u用户名 -p用户密码
ALTER TABLE order_info_tbl ADD COLUMN create_time TIMESTAMP DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间';ALTER TABLE order_info_tbl ADD COLUMN update_time TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间'修改密码
update user set password=password("root1234") where user="root";
ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY ''root;表分区
ALTER TABLE tache_stat_tbl_20190120 PARTITION BY HASH(province) PARTITIONS 31表、索引、执行计划
select TABLE_NAME, concat(truncate(data_length/1024/1024,2),' MB') as data_size,concat(truncate(index_length/1024/1024,2),' MB') as index_sizefrom information_schema.tables# where TABLE_SCHEMA = 'yourdb'group by TABLE_NAMEorder by data_length desc;
尽量避免廉价的建立索引,可以先根据数据区分度来判断,是否有必要建立索引 。
select count(distinct 将要建立索引的字段) / count(*)
Using index表示使用了覆盖索引(Covering Index)
Using whereUsing where的作用提示了用where来过滤结果集 。
Using temporary说明MySQL需要使用临时表来存储结果集,常见于排序和分组查询
Using filesortMySQL中无法利用索引完成的排序操作称为“文件排序”
常用维护操作
- 查询执行时间超过2分钟的线程,然后拼接成 kill 语句
select concat('kill ', id, ';') from information_schema.processlist where command != 'Sleep' and time > 2*60 order by time desc
GRANT ALL PRIVILEGES ON *.* TO 'YourUserName'@'%' IDENTIFIED BY "YourPassword";数据导入导出
mysqldump -uroot -proot --all-databases >/all.sql
mysqldump -uroot -proot --no-data --databases db1 > /table_with_no_data.sql
- 跨服务器导出导入数据,目标数据库必须存在,否则会报错
mysqldump --host=h1 -uroot -proot --databases db1 |mysql --host=h2 -uroot -proot db2
默认情况下,连接协议为socket,如遇到下述错误,可以尝试更换协议 。
【运维常用Mysql命令你是否还记得?】mysqldump: Got error: 2002: "Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock'方案一:重启数据库会重新创建mysql.sock 。方案二:若暂时无法重启数据库,可以通过TCP协议连接数据库 。--protocol=name The protocol to use for connection (tcp, socket, pipe,memory).样例语句:
mysqldump -h127.0.0.1 -uroot -proot --protocol=TCP --database db1 --tables conf_area_tbl conf_App_tbl > 1.sql
mysqldump -uroot -p --host=localhost --all-databases --routines
mysql -uroot -e 'select * from cb_mon.t_book limit 10' > mytest.txt
DROP PROCEDURE if exists test_insert ;DELIMITER ;;CREATE PROCEDURE test_insert ()BEGINDECLARE i INT DEFAULT 1;# can not be 0WHILE i<1000DOinsert into SS_BOOK values (i, CONCAT("00000",i) , CONCAT('book',i), 1, CONCAT('book_description',i));SET i=i+1;END WHILE ;commit;END;;CALL test_insert();
推荐阅读
-
老高品史▲朱元璋:我把他囚禁不照样得了天下!,陈友谅:我得此人必得天下
-
商业智能|不愧是国民MC!刘在石连续5年稳坐韩国最喜欢艺人榜首
-
-
『科技光影』随时按摩放松,体验智能颈椎按摩器,低头族救星
-
-
「sprite妈咪」高龄生女只为同性恋儿子?网友:扭曲的母爱,61岁奶奶不惧危险
-
-
-
-
-
糖糖八卦神探|全都把老婆宠上天,至今没有任何绯闻!,娶空姐回家的四位男明星
-
-
-
家里一直男强女弱,现在爸爸退休了,妈妈升职了,变成了女强男弱,爸爸现在天天发火脾气很大,咋办呢
-
『高血压』为什么中年人易发胖,一胖就是胖肚子?研究:超胖可缩短10年寿命
-
三峡大坝▲当年修建三峡大坝时,是如何截断长江急流的?
-
想了解一下中建三局北京分公司应届毕业生真实待遇,第一年第二年都可以拿到多少钱?
-
风弛天下|2020年9家客车企业闪“黄灯”!2020年哪些客车企业最不好过?
-
【陕西新纪元】名字很奇葩,味道却不错的美食,最后一个陕西人最爱
-