I have a TEXT field in my table but when I try to search within that field, it does not report any row. Example:
Code: Select all
SELECT * FROM Customers
WHERE Customer_Notes LIKE '%peter%'Any help?
Thanks!
Code: Select all
SELECT * FROM Customers
WHERE Customer_Notes LIKE '%peter%'