SQL Like

M

Matthew

If I understand this correctly, this query will show all records where the
other field contains the word "customer".

SELECT catalog.*, catalog.other
FROM [catalog]
WHERE (((catalog.other) Like "%customer%"));

For some reason, it does not work.

Any ideas?

Matthew
 
Top