I want to be able to search through entire table without specifying each column. I want to be able to look for a record where each column may look LIKE '%QASHQAI%'. This table has about 100 different columns. Naming all of them like
SELECT * FROM vehicle WHERE ... LIKE '%QASHQAI%' OR ... LIKE '%QASHQAI%' OR ... LIKE '%QASHQAI%';
Is there a quicker way of searching through the table?