How do I select all the columns in a table that only contain NULL values for all the rows? I'm using MS SQL Server 2005. I'm trying to find out which columns are not used in the table so I can delete them.
|
Here is the sql 2005 or later version: Replace ADDR_Address with your tablename.
|
|||
|
|
|
SELECT cols FROM table WHERE cols IS NULL |
|||||
|
|
This should give you a list of all columns in the table "Person" that has only NULL-values. You will get the results as multiple result-sets, which are either empty or contains the name of a single column. You need to replace "Person" in two places to use it with another table.
|
|||
|
|
|
Or did you want to just see if a column only has NULL values (and, thus, is probably unused)? Further clarification of the question might help. EDIT: Ok.. here's some really rough code to get you going...
Yes, there are easier ways, but I have a meeting to go to right now. Good luck! |
||||
|
|
You can do:
If the count returns 0 that means that all rows in that column all NULL (or there is no rows at all in the table) can be changed to
If you want to automate it you can use system tables to iterate the column names in the table you are interested in |
|||
|
|
|
I would also recommend to search for fields which all have the same value, not just NULL. That is, for each column in each table do the query:
and concentrate on those which return 1 as a result. |
|||
|
|
|
If you need to list all rows where all the column values are
You shouldn't really have any tables with ALL the |
||||
|
|
|
You might need to clarify a bit. What are you really trying to accomplish? If you really want to find out the column names that only contain null values, then you will have to loop through the scheama and do a dynamic query based on that. I don't know which DBMS you are using, so I'll put some pseudo-code here.
|
|||
|
|
|
You'll have to loop over the set of columns and check each one. You should be able to get a list of all columns with a DESCRIBE table command. Pseudo-code:
I know this seems a little counterintuitive but SQL does not provide a native method of selecting columns, only rows. |
|||
|
|
Try this -
|
|||
|
|
