I have a dataset with over 100,000 rows, over 100 columns and where some values are NULL. Now I want to remove all the rows which contain NULL values.
Can anybody suggest the sql command for it?
|
I have a dataset with over 100,000 rows, over 100 columns and where some values are Can anybody suggest the sql command for it? |
|||||
|
|
With the little information you've provided:
Add further conditions for each column that you want to check. Change It's fairly easy to generate the SQL for this using a query on |
|||
|
|
|
use a scripting language like PHP to retreive all column names and then construct your SQL query. Using pure SQL could get tricky. |
|||||||
|