MySQL 命令集合

Posted 回忆的片段

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL 命令集合相关的知识,希望对你有一定的参考价值。

功能1:批量修改mysql 字段大小写

SELECT CONCAT(ALTER table ,t2.table_schema,.,t2.table_name, CHANGE , `,t2.column_name,` `,UPPER(t2.column_name),` ,  
       t2.column_type, ,CASE WHEN t2.is_nullable=NO THEN not null ELSE null END, COMMENT ‘‘‘,t2.column_comment,‘‘‘;) AS c  
FROM information_schema.tables t1, information_schema.columns t2  
WHERE t1.table_schema = yourusername  
   AND t1.table_type = base table  
   AND t1.table_schema = t2.table_schema  
   AND t1.table_name = t2.table_name  

 

以上是关于MySQL 命令集合的主要内容,如果未能解决你的问题,请参考以下文章

代码片段 - Golang 实现集合操作

MySQL系列:kafka停止命令

如何看mysql版本

VScode 好用插件集合

金蝶handler中 collection 代码片段理解

Alfred常见使用