I need a query that will look at a variable being passed from a url and look and get all available matches. For simplicity sake I will call the data being queried input....
here is what I have and it is not working
SELECT * FROM tablename
WHERE field1 LIKE 'input'
OR field2 LIKE 'input'
OR field3 LIKE 'input'
I need it to look inside ALL of the fields and bring back ANY thing that is close...