Is it possible to run a select on a table to quickly find out if any (one or more) of the fields contain a certain value?
Or would you have to write out all of the column names in the where clause?
|
Is it possible to run a select on a table to quickly find out if any (one or more) of the fields contain a certain value? Or would you have to write out all of the column names in the where clause? |
|||||
|
|
Dig this... It will search on all the tables in the db, but you can mod it down to just one table.
|
|||
|
|
|
As others have said, you're likely going to have to write all the columns into your WHERE clause, either by hand or programatically. SQL does not include functionality to do it directly. A better question might be "why do you need to do this?". Needing to use this type of query is possibly a good indicator that your database isn't properly normalized. If you tell us your schema, we may be able to help with that problem too (if it's an actual problem). |
|||||||
|
|
I think you'd need to list all the columns in the where clause. I'm far from a SQL wizard though...maybe someone else knows a way. |
|||
|
|
|
Of course you have to write out all columns you want to use as a criteria. If you add what programming language you are using and in what type of environment you working we can give you a clue or solution of how to do it dynamically. I think your question really was how to do this dynamically depending of what the user of your program fill in in the "search"-form.. Im right? If not, then.. Give us more information. ;) |
|||
|
|