Specifies amount of spaces to be used for indentation.
A string containing the characters of one indentation step.
Defaults to two spaces (" \ "
).
This option is ignored when useTabs
option is enabled.
SELECT
*,
FROM
(
SELECT
column1,
column5
FROM
table1
) a
JOIN table2
WHERE
column6
AND column7
GROUP BY column4
Using indent: 4
:
SELECT
*,
FROM
(
SELECT
column1,
column5
FROM
table1
) a
JOIN table2
WHERE
column6
AND column7
GROUP BY column4
Using indent: "\t"
:
SELECT
*,
FROM
(
SELECT
column1,
column5
FROM
table1
) a
JOIN table2
WHERE
column6
AND column7
GROUP BY column4
Imagine that these long sequences of spaces are actually TAB characters :)