i have table T!.
A B C D
NULL 1 2 3
4 NULL 5 6
7 8 NULL 9
10 11 12 NULL.
I WANT COUNT OF NULL VALUES IN TABLE. WRITE A QUERY.
Answer Posted / naren
select count(*) from t1 where a is null or b is null or c is
null or d is null
Is This Answer Correct ? | 26 Yes | 3 No |
Post New Answer View All Answers
What are the advantages of indexing?
How does join work in sql?
What is right join in sql?
Can there be more than one function with a similar name in a pl/sql block?
What are the different ways to optimize a sql query?
What is the difference between inner join and natural join?
Are stored procedures faster than queries?
How bulk collect improves performance?
What is a primary key example?
Is big data nosql?
Who developed sql?
What is clustered and nonclustered index in sql?
How to run pl sql program in mysql?
How do I copy a table in sql?
what is union, minus and interact commands? : Sql dba