Answers for "How to find leading and trailing spaces in SQL Server"

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 "How to find leading and trailing spaces in SQL Server"

Code answers related to "SQL"

Browse Popular Code Answers by Language