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
How do I count rows in sql query?
explain access control lists. : Sql dba
How can we make an if statement within a select statement?
What are the types of triggers in sql?
Can we insert data in view?
What is an index? What are the types of indexes? How many clustered indexes can be created on a table?
How do I sort a table in sql?
How do I view a view in sql?
What is snowflake sql?
How do you modify a column in sql?
Explain alias in sql?
how to drop an existing table in mysql? : Sql dba
How you can copy a file to file content and file to pl/sql table in advance pl/sql?
What does select * from mean in sql?
Is sqlexception checked or unchecked?