I have a search engine that I wrote. The problem is that the database that it is working on will evolve from time to time and may add/delete fields as time goes by.
Short of writting a procedure to read the database field names out of the database, thus adding more processing time to a already time-intensive process already, I figured I try the simplest solution first...
Is it possible to define a SELECT statement where the WHERE clause is wildcarded? Sorta like:
SELECT * WHERE * LIKE 'mysearchtext'?
TIA
Short of writting a procedure to read the database field names out of the database, thus adding more processing time to a already time-intensive process already, I figured I try the simplest solution first...
Is it possible to define a SELECT statement where the WHERE clause is wildcarded? Sorta like:
SELECT * WHERE * LIKE 'mysearchtext'?
TIA