Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
2  
Please post the code you have written so far. People generally do not like to just write your code for you. As it is, this is a work description, not a question. – Mitch Wheat Apr 7 '11 at 23:57

2 Answers

With the little information you've provided:

DELETE FROM table WHERE colA IS NULL OR colB is NULL

Add further conditions for each column that you want to check.

Change OR to AND if you only want to delete rows where all of the columns are NULL.

It's fairly easy to generate the SQL for this using a query on user_tab_columns if you don't want to type it out by hand.

share|improve this answer

use a scripting language like PHP to retreive all column names and then construct your SQL query. Using pure SQL could get tricky.

share|improve this answer
DB2, Oracle, SQL Server, PostgreSQL, MySQL, Interbase, Paradox, MS Access and even dBase have easier ways to get all column names from a table, without having to write any kind of script for that. – rsenna Apr 8 '11 at 1:01
Thanks Dave,ITroubs & rsenna! I just want to know if we there's a posibility to create vba like script for deleting rows within SQL. – user697363 Apr 8 '11 at 15:45
I don't knoow VBA but if it is possible in PHP then it should be possible in VBA too. – ITroubs Apr 8 '11 at 16:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.