string? please help....

R

Renatorius

Hallo, please help me.
How could I create a queries, that check (find out) if
wanted string is a part of cell?? Is it possible? Thanks.
 
V

Van T. Dinh

SELECT *
FROM [YourTable]
WHERE [FieldToBeSearch] Like "*" & [SearchString] & "*"
 
Top