上传者: qiuzeming29
|
上传时间: 2022-03-01 13:44:56
|
文件大小: 85KB
|
文件类型: -
在项目开发中, 涉及到对SQL语句的展示, 对于复杂的SQL语句, 特别希望能够将其格式化后展示, 因此找到了开源项目sqlparser, 官网是https://github.com/andialbrecht/sqlparse。
使用Python2安装以后可以直接使用, 测试代码:
使用python2,
import sqlparse
print(sqlparse.format('update t set s=(case when total > 100 then 10 when total >=10 and total100 then 8 when YY>10 and yy<100 then 6 else 4 end ) else 2 end)', reindent=False))