SQL Like

  • Thread starter Thread starter Matthew
  • Start date Start date
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
 
Back
Top