mysql 运维用到的命令

网友投稿 297 2022-09-04

mysql 运维用到的命令

show variables like 'socket%';

通过socket 进行连接

select user,host,authentication_string from user;

\s

开多个实例配置:

慢查询存入到数据表:

开启存储引擎:

禁用:

导入数据:

int

字符串:

获取随机数:

select floor(1+rand()*99);

重复某个字符多少次

select repeat('a',floor(1+rand()*127));

只修改后加入的,现有的不会修改:

修改表的字符集:

查找不是InnoDB的表:

select table_schema,table_name,`engine`, sys.format_bytes(data_length) as data_size from TABLESwhere `engine` <> 'InnoDB'and table_schema not in ('mysql','performance_schema','information_schema');f分区表

分区表:

计算表中每行数据的平均大小:

统计表中的列编码格式utf8

select CONCAT(TABLE_SCHEMA,'.',TABLE_NAME) as Name, character_set_name, GROUP_CONCAT(COLUMN_NAME SEPARATOR ' : ') as COLUMN_LISTfrom information_schema.COLUMNSwheredata_type in ('varchar','longtext','text','mediumtext','char')and character_set_name <> 'utf8mb4'and table_schema not in('mysql','`performance_schema`','information_schema','sys')group by NAME,character_set_name;

比较不错的 sql:

自动添加行号:

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:mysql对比两个数据库中不同的表和列字段
下一篇:营销技巧:怎样才能让客户心甘情愿帮我们转介绍!
相关文章

 发表评论

暂时没有评论,来抢沙发吧~