I have several tex fields (varchar, nvarchar, ....) in a SQL Server 2012.
These fields are updated by the "users" pasting from different sources. And sometime, they paste a text that includes a "tabulator" space.
Obviously I can find spaces using:
SELECT * FROM table
WHERE field LIKE '% %' /*3 spaces*/
OR field LIKE '% %' /*4 spaces*/
OR field LIKE '% %' /*5 spaces*/
OR field LIKE '% %' /*6 spaces*/
But is there any specific way to find out "tabulator" spaces inside a text field?
Regards!