I need to write a query that searches a field that contains *'s
I tried using the Like operator with the Ascii chr(42) but can not get the right results as it seems to return all records
SELECT tbl_catalog.upc, tbl_catalog.Caption
FROM tbl_catalog
WHERE (((tbl_catalog.Caption) Like Chr(42)));
Thoughts?
Thanks
I tried using the Like operator with the Ascii chr(42) but can not get the right results as it seems to return all records
SELECT tbl_catalog.upc, tbl_catalog.Caption
FROM tbl_catalog
WHERE (((tbl_catalog.Caption) Like Chr(42)));
Thoughts?
Thanks