How can I run a MySQL query that selects everything that is not null? It would be something like
SELECT * FROM schedule WHERE ((all)) IS NOT NULL
Do I just remove the all and go..?
SELECT * FROM schedule WHERE IS NOT NULL
Thanks!
|
|
You'll have to explicitly state the condition on each column, so e.g.
|
|||
|
You can concatenate the fields in order to write only a where-condition:
|
|||||||||||||||||
|
|
It depend on what you mean exactly by "everything that is not null":
At least this is how you would do it in "general sql". I don't know if MySql has special syntax for this. |
|||
|
|
|
You need to get a list of the columns of your table, by looking at the information_schema database. Let's suppose that your database is called
Our final query will look like this:
All we are missing now is the list of nullable columns, comma-separated. We're going to use the
References: http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html#function_group-concat http://dev.mysql.com/tech-resources/articles/4.1/prepared-statements.html |
||||
|
|
|
I've just looked at your linked question and agree with Guffa's answer that you should normalise your database.
The above looks more like a spreadsheet then something that belongs in an RDBMS. To answer your concerns about this being the way you want it displayed. You could write a pivot query and put it in a view to mimic your current table structure and use this for your display query. This will avoid the need for some horrific 24 column WHERE clause whenever you want to search for data or find out if it is NULL as in this question. |
||||
|
|
|
If you are using another programming language combined with sql, you could speed up this process by looping through a list of column names and using a parameter to do the if not null check rather than have to type them all in individually e.g
I would suggest using transactions so you can do the above in one batch after the for loop has run through. |
|||
|
|