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 is a Python library for the programmatic analysis and manipulation of SQL statements. It provides a non-validating parser that breaks down SQL text into tokens and a utility to divide strings containing multiple queries into individual statements. The project includes a code formatter that reorganizes SQL statements using consistent indentation and keyword casing. It also provides mechanisms for automating this formatting and linting process through version control hooks to maintain code consistency.
Divides large strings of multiple SQL commands into individual statements for sequential execution.