Closed ToMakeSense closed 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.
isnull
Sadly T-SQL is not supported. See #53.
see example below:
The formatted SQL was:
Additional double quotation marks were added around
isnull
, it was incorrect.