1 个仓库
Dividing large SQL scripts into a sequence of individual executable statements.
Distinct from SQL Script Execution: Distinct from SQL Script Execution: focuses on the decomposition of the script into parts rather than the execution of those parts.
Explore 1 awesome GitHub repository matching data & databases · Script Splitting. Refine with filters or upvote what's useful.
sqlparse 是一个用于 SQL 语句程序化分析和操作的 Python 库。它提供了一个非验证解析器,将 SQL 文本分解为标记,并提供了一个将包含多个查询的字符串划分为单个语句的实用程序。 该项目包括一个代码格式化程序,使用一致的缩进和关键字大小写来重组 SQL 语句。它还提供了通过版本控制钩子自动化此格式化和 Linting 过程的机制,以保持代码一致性。
Divides large strings of multiple SQL commands into individual statements for sequential execution.