Answers for "how to find out names with leading and trailing spaces in sql"

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 out names with leading and trailing spaces in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language