I am writing query to obtain results from two columns. what i wants is
when i send this string "family apotheke 14.05" from my search input then the query should run like this
Select *
From mytable
Where street LIKE '%family apotheke%'
AND/OR mycustomdate LIKE '%14.05'
So that i can get the result whatever is true. If family apotheke found in columns then show all if date found date column then show its result and if both results found then show all results found.
Hope this will be clear