criteria search in 2 different fields

  • Thread starter Thread starter accesscrzy
  • Start date Start date
A

accesscrzy

I want to ask the user to input one keyword and search two
different fields in the same table. Any suggestions?
 
PARAMETERS [Keyword?] AS Text;
SELECT *
FROM Table_Name
WHERE Column1 = [Keyword?] OR Column2 = [Keyword?]
 
Back
Top