Hi there
I am trying to add a “quick search” box to my front end that will search a table (single table) for a value that has been input across ALL columns of the table. for example this is my table
|*serial number*|*model type*|*engineers name*|
| 123456712 | X4100 | john smith |
| 410065432 | V4323 | peter jones |
| 773456888 | X4600 | james bar|
is there a way I can issue a single quesry that will search all of the columns using LIKE that will return any relevant rows
for example if i searched for the string …
4100
it would return the following two rows of the table above because that string exists within the row somewhere, as you can see in red below
|*serial number*|*model type*|*engineers name*|
| 123456712 | X[COLOR="Red"]4100[/COLOR] | john smith |
| [COLOR="Red"]4100[/COLOR]65432 | V4323 | peter jones |
Apologies if this is a really basic question ,but i think it would be great to allow someone to search for any string rather than have to select the specific column it exists within
any help would be greatly appreciated