动态将表中的列名全部转换成小写
生活随笔
收集整理的這篇文章主要介紹了
动态将表中的列名全部转换成小写
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
/*動態將表的列名改為小寫
*/
select concat_ws('','alter table ',a.TABLE_NAME,' modify ',lower(a.COLUMN_NAME),' ',a.Column_type, case when a.is_nullable = 'NO' THEN ' not null ' else null end,case when a.Column_default is null then nullwhen a.Column_default = '' then ' default '''''when a.Column_default is not null and a.data_type in ('bigint','int','decimal') then concat_ws('',' default ',a.Column_default)when a.Column_default is not null and a.data_type in ('varchar','char') then concat_ws('',' default ','''',a.Column_default,'''')when a.Column_default is not null and a.data_type in ('timestamp','datetime') then concat_ws('',' default ',a.Column_default) else null end ,' comment ''',a.Column_comment,'''',';') aafrom information_schema.`COLUMNS` a where a.TABLE_SCHEMA ='ibgs'and a.TABLE_NAME ='sys_config';
?
轉載于:https://www.cnblogs.com/Yongzhouunknown/p/4900616.html
總結
以上是生活随笔為你收集整理的动态将表中的列名全部转换成小写的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【Alpha】第二次Scrum meet
- 下一篇: 基于webRTC技术 音频和视频,IM解