请教各位博友,有谁知道如何格式化sql语句,把sql语句中select的列名首字母变成大写字母开头的样式?谢谢
select
ad.createby,
ad.createtime,
ad.updateby,
ad.updatetime
from tablename ad
变成
select
ad.CreateBy,
ad.CreateTime,
ad.Updateby,
ad.updatetime
from tablename ad
select
ad.createby as CreateBy,
ad.createtime as Createtime,
ad.updateby as Updateby,
ad.updatetime as Updatetime
from tablename ad
谢谢,我的意思是有没有工具可以进行首字母大写的转换,不是键盘敲!
sql脚本字段多时,这种格式化转换很费时!
SQL Prompt第三方工作插件,你百度格式化sql语句....