criteria search in 2 different fields

A

accesscrzy

I want to ask the user to input one keyword and search two
different fields in the same table. Any suggestions?
 
M

MGFoster

PARAMETERS [Keyword?] AS Text;
SELECT *
FROM Table_Name
WHERE Column1 = [Keyword?] OR Column2 = [Keyword?]
 
Top