Hi
I've a table (hosted in a database SQL Server) where i've products stored.
The person who inserted a few products last week, instead of making new lines with "Enter" (tinyMCE would created a </br>
tag) in description, she had typed "Space" creating white spaces (she though that typing white spaces, creates new line when it goes to the new line. Really dumb).
So, i've records something like this:
Description:
         
Now i'm trying to create a query for search this records, but i think i'm using LIKE operator in a wrong way.
SELECT * From ProductsDescription WHERE Description LIKE '% '
It's returning 0 rows. Is anything wrong in that query?
Thanks