sql-format
Format and organize SQL queries for improved readability and structure. Simplify code maintenance and debugging with a tool designed for developers and database administrators.
Instructions
Format and prettify SQL queries
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sql | Yes | SQL query to format |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"sql": {
"description": "SQL query to format",
"type": "string"
}
},
"required": [
"sql"
],
"type": "object"
}