maddyblue / sqlfmt

SQL formatter with width-aware output
https://sqlfum.pt
Apache License 2.0
415 stars 22 forks source link

Additional double quotation marks added to the T-SQL statement #56

Closed ToMakeSense closed 4 years ago

ToMakeSense commented 4 years ago

see example below:

SELECT len(ISNUll(tableName.clumn,'')) AS CloumnLength FROM tableName;

The formatted SQL was:

SELECT len("isnull"(tablename.clumn, '')) AS cloumnlength FROM tablename;

Additional double quotation marks were added around isnull, it was incorrect.

maddyblue commented 4 years ago

Sadly T-SQL is not supported. See #53.