SQL 格式化工具专题项目,适合数据库排查、慢 SQL 分析、日志 SQL 阅读、代码审查和 SQL 片段整理。
- SQL 美化
- SQL 压缩
- 关键字格式整理
- 日志 SQL 快速阅读
- 数据库开发调试
Input:
select id,name,created_time from sys_user where status='0' order by created_time descFormatted output:
SELECT
id,
name,
created_time
FROM
sys_user
WHERE
status = '0'
ORDER BY
created_time DESC- 查看日志中压缩在一行的 SQL
- 分析慢查询语句
- 数据库脚本提交前整理格式
- 代码审查时提升 SQL 可读性
- 排查接口调用产生的 SQL 条件
- SQL formatter
- SQL beautifier
- SQL minifier
- online SQL formatter
- SQL 格式化
- SQL 美化
- SQL 压缩
- 数据库开发工具
Description:
Online SQL formatter and beautifier for database debugging, query analysis and code review.
Topics:
sql, sql-formatter, sql-beautifier, database-tools, online-tools, developer-tools
MIT