sqlfmt formats your dbt SQL files so you don't have to. It is similar in nature to black, gofmt, and rustfmt (but for SQL).
- sqlfmt promotes collaboration. An auto-formatter makes it easier to collaborate with your team and solicit contributions from new people. You will never have to mention (or argue about) code style in code reviews again.
- sqlfmt is fast. Forget about formatting your code, and spend your time on business logic instead. sqlfmt processes hundreds of files per second and only operates on files that have changed since the last run.
- sqlfmt works with Jinja. It formats the code that users look at, and therefore doesn't need to know anything about what happens after the templates are rendered.
- sqlfmt integrates with your workflow. As a CLI written in Python, it's easy to install locally on any OS and run in CI. Plays well with dbt, pre-commit, SQLFluff, VSCode, and GitHub Actions. sqlfmt powers the dbt Cloud IDE's Format button.
sqlfmt is not configurable, except for line length. It enforces a single style. sqlfmt maintains comments and some extra newlines, but largely ignores all indentation and line breaks in the input file.
sqlfmt is not a linter. It does not parse your code into an AST; it just lexes it and tracks a small subset of tokens that impact formatting. This lets us "do one thing and do it well:" sqlfmt is very fast, and easier to maintain and extend than linters that need a full SQL grammar.
For now, sqlfmt only works on select
, delete
, grant
, revoke
, and create function
statements (which is all you need if you use sqlfmt with a dbt project). It is being extended to additional DDL and DML. Visit this tracking issue for more information.
Please visit docs.sqlfmt.com for more information on Getting Started, Integrations, the sqlfmt Style, and an API Reference. Or keep reading for an excerpt from the full docs.
Want to test out sqlfmt on a query before you install it? Go to sqlfmt.com to use the interactive, web-based version.
sqlfmt is a command-line tool that is built in Python and runs on MacOS, Linux, and Windows. It is distributed
on PyPI under the name shandy-sqlfmt
. There are many ways to install and run it, but we strongly
recommend using uv:
-
Install uv. From a POSIX shell, run:
curl -LsSf https://astral.sh/uv/install.sh | sh
Or using Windows Powershell:
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
-
Install sqlfmt as a tool using uv:
uv tool install "shandy-sqlfmt[jinjafmt]"
This command will install sqlfmt into an isolated environment and add it to your PATH so you can easily run the executable.
:::tip Depending on your shell and OS, you may need single or double quotes around
shandy-sqlfmt[jinjafmt]
. ::: -
Test the installation; run sqlfmt with no arguments:
sqlfmt
You should see some ASCII art and help text.
:::warning PyPI Names
The PyPI distribtuion is shandy-sqlfmt
, NOT sqlfmt
, which is a different (unrelated but not malicious) package.
This is unfortunate, but the author cannot do anything about it.
:::
-
Use pip or something pip-like:
If you know what you’re doing, after installing Python 3.9 or above and activating your virtual environment, install
shandy-sqlfmt
using pip, pipx, poetry, or any other program that can install Python packages from PyPI:pip install "shandy-sqlfmt[jinjafmt]"
-
Use Docker
You can skip installation altogether and pull the official Docker image instead. See the docs on running sqlfmt in a container.
:::danger Before You Begin sqlfmt may not always produce the formatted output you want. It might even break your SQL syntax. It is highly recommended to only run sqlfmt on files in a version control system (like git), so that it is easy for you to revert any changes made by sqlfmt. On your first run, be sure to make a commit before running sqlfmt.
For more on sqlfmt's maturity see Maturity and Stability. :::
sqlfmt is a command-line tool. It works on any posix terminal and on Windows Powershell. If you have used the Python code formatter Black, the sqlfmt commands will look familiar.
:::tip The code snippets below are commands that can be typed into your terminal, after installing sqlfmt. :::
To list commands and options:
sqlfmt --help
If you want to format all .sql
and .sql.jinja
files in your current working directory (and all nested directories), simply type (note the trailing .
, denoting the current directory):
sqlfmt .
If you don't want to format the files you have on disk, you can use the --check
or --diff
options. sqlfmt will exit with code 1 if the files on disk are not properly formatted:
sqlfmt --check .
sqlfmt --diff .
sqlfmt can also format code passed through standard input (stdin
) by passing -
as the files argument. The formatted code will be output to stdout
(all other output from sqlfmt is routed to stderr
):
echo "select 1" | sqlfmt -
Any command-line option for sqlfmt can also be set in a pyproject.toml
file, under a [tool.sqlfmt]
section header. Options passed at the command line will override the settings in the config file. See the docs for more information.
sqlfmt loves properly-formatted jinja, too.
See the docs for more information about using the jinjafmt
extra or disabling jinja formatting.
sqlfmt's rules are simple, which means it does not have to parse every single token in your query. This allows nearly all SQL dialects to be formatted using sqlfmt's default "polyglot" dialect, which requires no configuration.
The exception to this is ClickHouse, which is case-sensitive where other dialects are not. To prevent the lowercasing of function names, database identifiers, and aliases, use the --dialect clickhouse
option when running sqlfmt. For example,
$ sqlfmt . --dialect clickhouse
This can also be configured using the pyproject.toml
file:
[tool.sqlfmt]
dialect = "clickhouse"
Note that with this option, sqlfmt will not lowercase most non-reserved keywords, even common ones like sum
or count
. See (and please join) this discussion for more on this topic.
sqlfmt plays nicely with other analytics engineering tools. For more information, see the docs.
sqlfmt was built for dbt, so only minimal configuration is required. We recommend excluding your target
and dbt_packages
directories from formatting. You can do this with the command-line --exclude
option, or by setting exclude
in your pyproject.toml
file:
[tool.sqlfmt]
exclude=["target/**/*", "dbt_packages/**/*"]
Config for other integrations is detailed in the docs linked below:
The only thing you can configure with sqlfmt is the desired line length of the formatted file. You can do this with the --line-length
or -l
options. The default is 88.
sqlfmt borrows elements from well-accepted styles from other programming languages. It places opening brackets on the same line as preceding function names (like black for python and 1TBS for C). It indents closing brackets to the same depth as the opening bracket (this is extended to statements that must be closed, like case
and end
).
The sqlfmt style is as simple as possible, with little-to-no special-casing of formatting concerns. While at first blush, this may not create a format that is as "nice" or "expressive" as hand-crafted indentation, over time, as you grow accustomed to the style, formatting becomes transparent and the consistency will allow you to jump between files, projects, and even companies much faster.
Because SQL is code! But there are other good reasons too.
Using trailing commas follows the convention of every other written language and programming language. But wait, there's more.
We'd love to hear from you! Open an Issue to request new features, report bad formatting, or say hello.
- Install uv You may also need or want make.
- Clone this repo into a directory (let's call it
sqlfmt
), thencd sqlfmt
. - Use
uv sync --all-groups --all-extras
to install the project (editable) and its dependencies (including thejinjafmt
andsqlfmt_primer
extras) into a new virtual env. - Type
make
to run all tests and linters, or runpytest
,ruff
, andmypy
individually, usinguv
(e.g.,uv run pytest
).
- Make sure all changes are committed to sqlfmt.
- Check out
main
in the repo and make sure youpull
changes locally. - Check out the
unformatted
tag in the repo withgit checkout -b chore/apply-abc123 unformatted
whereabc123
is the hash of the most recent sqlfmt commit (from 1). - Run sqlfmt against the working tree, then
git add .
andgit commit -m "chore: apply sqlfmt abc123"
. - We will have conflicts with main that we want to ignore, so merge main into this branch, ignoring anything on main:
git merge -s ours main
. - Push and open a PR; squash and merge. Grab the commit SHA.
- Paste the commit SHA as a ref into
primer.py
. - Run
sqlfmt_primer -k
to clear the cache, then update the stats inprimer.py
to match the results.