Additional double quotation marks added to the T-SQL statement
ToMakeSense opened this issue · 1 comments
ToMakeSense commented
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.