可以利用RUBY方便的文件操作和正则处理,将SQL语句中关键字小写的地方改为大写,与其他语言相比,其处理更加方便,语句更加简洁
cat FormatSql.rb
while line=gets
line1=line.gsub(/(select|from|where|sum|having|group|end|case|by)/) {|match| match.upcase}
puts line1
end
2021-10-09 17:56:59
可以利用RUBY方便的文件操作和正则处理,将SQL语句中关键字小写的地方改为大写,与其他语言相比,其处理更加方便,语句更加简洁
cat FormatSql.rb
while line=gets
line1=line.gsub(/(select|from|where|sum|having|group|end|case|by)/) {|match| match.upcase}
puts line1
end