Answers for "sql find leading space"

SQL
0

sql find leading space

SELECT ID, Data, FieldName
FROM table
WHERE DATALENGTH(RTRIM(LTRIM(Data))) <> DATALENGTH(Data)
Posted by: Guest on February-08-2021

Code answers related to "sql find leading space"

Code answers related to "SQL"

Browse Popular Code Answers by Language