sql-formatter
TypeScript icon, indicating that this package has built-in type declarations

15.4.9 • Public • Published

SQL Formatter NPM version Build status Coverage Status

SQL Formatter is a JavaScript library for pretty-printing SQL queries.

It started as a port of a PHP Library, but has since considerably diverged.

It supports various SQL dialects: GCP BigQuery, IBM DB2, Apache Hive, MariaDB, MySQL, TiDB, Couchbase N1QL, Oracle PL/SQL, PostgreSQL, Amazon Redshift, SingleStoreDB, Snowflake, Spark, SQL Server Transact-SQL, Trino (and Presto). See language option docs for more details.

It does not support:

  • Stored procedures.
  • Changing of the delimiter type to something else than ;.

Try the demo.

Install

Get the latest version from NPM:

npm install sql-formatter

Also available with yarn:

yarn add sql-formatter

Usage

Usage as library

import { format } from 'sql-formatter';

console.log(format('SELECT * FROM tbl', { language: 'mysql' }));

This will output:

SELECT
  *
FROM
  tbl

You can also pass in configuration options:

format('SELECT * FROM tbl', {
  language: 'spark',
  tabWidth: 2,
  keywordCase: 'upper',
  linesBetweenQueries: 2,
});

Disabling the formatter

You can disable the formatter for a section of SQL by surrounding it with disable/enable comments:

/* sql-formatter-disable */
SELECT * FROM tbl1;
/* sql-formatter-enable */
SELECT * FROM tbl2;

which produces:

/* sql-formatter-disable */
SELECT * FROM tbl1;
/* sql-formatter-enable */
SELECT
  *
FROM
  tbl2;

The formatter doesn't even parse the code between these comments. So in case there's some SQL that happens to crash SQL Formatter, you can at comment the culprit out (at least until the issue gets fixed in SQL Formatter).

Placeholders replacement

In addition to formatting, this library can also perform placeholder replacement in prepared SQL statements:

format('SELECT * FROM tbl WHERE foo = ?', {
  params: ["'bar'"],
});

Results in:

SELECT
  *
FROM
  tbl
WHERE
  foo = 'bar'

For more details see docs of params option.

Usage from command line

The CLI tool will be installed under sql-formatter and may be invoked via npx sql-formatter:

sql-formatter -h
usage: sql-formatter [-h] [-o OUTPUT] \
[-l {bigquery,db2,db2i,hive,mariadb,mysql,n1ql,plsql,postgresql,redshift,singlestoredb,snowflake,spark,sql,sqlite,tidb,transactsql,trino,tsql}] [-c CONFIG] [--version] [FILE]

SQL Formatter

positional arguments:
  FILE            Input SQL file (defaults to stdin)

optional arguments:
  -h, --help      show this help message and exit
  -o, --output    OUTPUT
                    File to write SQL output (defaults to stdout)
  --fix           Update the file in-place
  -l, --language  {bigquery,db2,db2i,hive,mariadb,mysql,n1ql,plsql,postgresql,redshift,singlestoredb,snowflake,spark,sql,sqlite,tidb,trino,tsql}
                    SQL dialect (defaults to basic sql)
  -c, --config    CONFIG
                    Path to config JSON file or json string (will find a file named '.sql-formatter.json' or use default configs if unspecified)
  --version       show program's version number and exit

By default, the tool takes queries from stdin and processes them to stdout but one can also name an input file name or use the --output option.

echo 'select * from tbl where id = 3' | sql-formatter
select
  *
from
  tbl
where
  id = 3

The tool also accepts a JSON config file named .sql-formatter.json in the current or any parent directory, or with the --config option that takes this form:

{
  "language": "spark",
  "tabWidth": 2,
  "keywordCase": "upper",
  "linesBetweenQueries": 2
}

All fields are optional and all fields that are not specified will be filled with their default values.

Configuration options

Usage without NPM

If you don't use a module bundler, clone the repository, run npm install and grab a file from /dist directory to use inside a <script> tag. This makes SQL Formatter available as a global variable window.sqlFormatter.

Usage in editors

Usage as ESLint plugin

Frequently Asked Questions

Parse error: Unexpected ... at line ...

The most common cause is that you haven't specified an SQL dialect. Instead of calling the library simply:

format('select [col] from tbl');
// Throws: Parse error: Unexpected "[col] from" at line 1 column 8

pick the proper dialect, like:

format('select [col] from tbl', { language: 'transactsql' });

Or when using the VSCode extension: Settings -> SQL-Formatter-VSCode: SQLFlavourOverride.

Module parse failed: Unexpected token

This typically happens when bundling an appication with Webpack. The cause is that Babel (through babel-loader) is not configured to support class properties syntax:

    | export default class ExpressionFormatter {
    >   inline = false;

This syntax is widely supported in all major browsers (except old IE) and support for it is included to the default @babel/preset-env.

Possible fixes:

  • Update to newer Babel / Webpack
  • Switch to @babel/preset-env
  • Include plugin @babel/plugin-proposal-class-properties

I'm having a problem with Prettier SQL VSCode extension

The Prettier SQL VSCode extension is no more maintained by its author.

Please use the official SQL Formatter VSCode extension to get the latest fixes from SQL Formatter library.

My SQL contains templating syntax which SQL Formatter fails to parse

For example, you might have an SQL like:

SELECT {col1}, {col2} FROM {tablename}

While templating is not directly supported by SQL Formatter, the workaround is to use paramTypes config option to treat these occurances of templating constructs as prepared-statement parameter-placeholders:

format('SELECT {col1}, {col2} FROM {tablename};', {
  paramTypes: { custom: [{ regex: String.raw`\{\w+\}` }] },
});

This won't work for all possible templating constructs, but should solve the most common use cases.

The future

The development of this formatter is currently in maintenance mode. Bugs will get fixed if feasible, but new features will likely not be added.

I have started a new SQL formatting tool: prettier-plugin-sql-cst.

  • It solves several problems which can't be fixed in SQL Formatter because of fundamental problems in its arhictecture.
  • It makes use of the Prettier layout algorithm, doing a better job of splitting long expressions to multiple lines.
  • It takes much more opinionated approach to SQL formatting, giving only a very limited set of options to adjust the code style.
  • It already has full support for SQLite and BigQuery syntax. It should work for the most common SQL code in various other dialects.

Give it a try if you'd like to take your SQL auto-formatting to the next level.

Contributing

Please see CONTRIBUTING.md

License

MIT

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
9.0.0-beta11beta1
9.0.0-beta20beta2
15.4.9262,161latest
9.0.0-beta31beta3
9.0.0-beta40beta4
14.1.0-beta.21beta

Version History

VersionDownloads (Last 7 Days)Published
15.4.9262,161
15.4.822,217
15.4.76,871
15.4.656,279
15.4.519,687
15.4.4587
15.4.311,770
15.4.223,234
15.4.15,800
15.4.07,916
15.3.227,617
15.3.146,918
15.3.04,239
15.2.017,172
15.1.31,428
15.1.27,324
15.1.10
15.1.061
15.0.213,252
15.0.13
15.0.0161
14.1.0-beta.21
14.1.0-beta.10
14.0.01,310
14.0.0-beta.40
14.0.0-beta.30
14.0.0-beta.20
14.0.0-beta.10
13.1.019,195
13.0.4514
13.0.30
13.0.26,679
13.0.126
13.0.01,520
12.2.415,669
12.2.35,935
12.2.2312
12.2.1619
12.2.018,558
12.1.41
12.1.3102
12.1.2129
12.1.11
12.1.0155
12.0.692
12.0.5114
12.0.4270
12.0.3466
12.0.26,479
12.0.124
12.0.01
12.0.0-beta.60
12.0.0-beta.50
12.0.0-beta.40
12.0.0-beta.30
12.0.0-beta.20
12.0.0-beta.10
11.0.23,675
11.0.10
11.0.03
11.0.0-beta.20
11.0.0-beta.10
10.8.0-beta.61
10.8.0-beta.50
10.8.0-beta.40
10.8.0-beta.30
10.8.0-beta.20
10.8.0-beta.10
10.7.26,022
10.7.110
10.7.03
10.6.0308
10.5.111
10.5.03
10.4.02
10.3.00
10.2.02
10.1.10
10.1.02
10.0.0289
10.0.0-beta.10
9.2.02,188
9.1.0646
9.0.120
9.0.03
9.0.0-beta.70
9.0.0-beta.60
9.0.0-beta.51
9.0.0-beta40
9.0.0-beta31
9.0.0-beta20
9.0.0-beta11
8.2.0427
8.1.09
8.0.238
8.0.10
8.0.02
7.0.42,208
7.0.31
7.0.262
7.0.1267
7.0.00
6.1.54,284
6.1.40
6.1.30
6.1.2333
6.1.13,021
6.1.0157
6.0.21
6.0.10
6.0.02
6.0.0-beta.40
6.0.0-beta.30
6.0.0-beta.20
6.0.0-beta.10
4.0.221,600
4.0.1372
4.0.01
4.0.0-beta.80
4.0.0-beta.70
4.0.0-beta.60
4.0.0-beta.50
4.0.0-beta.40
4.0.0-beta.30
4.0.0-beta.20
4.0.0-beta.10
4.0.0-beta.00
3.1.02,299
2.3.424,721
2.3.37,567
2.3.2242
2.3.1908
2.3.00
2.2.055
2.1.22
2.1.10
2.1.080
2.0.04
1.3.01,243
1.2.24
1.2.10
1.2.032
1.1.25
1.1.10
1.1.00
1.0.00
0.0.30
0.0.21
0.0.10

Package Sidebar

Install

npm i sql-formatter

Weekly Downloads

696,008

Version

15.4.9

License

MIT

Unpacked Size

3.06 MB

Total Files

14

Last publish

Collaborators

  • nene
  • inferrinizzard