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