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 / abinash_mishra
SELECT a_null + b_null + c_null + d_null
FROM (SELECT COUNT (DECODE (a, NULL, 1, NULL)) a_null,
COUNT (DECODE (b, NULL, 1, NULL)) b_null,
COUNT (DECODE (c, NULL, 1, NULL)) c_null,
COUNT (DECODE (d, NULL, 1, NULL)) d_null
FROM t_null);
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What are different types of indexes?
Can we use the cursor's to create the collection in PL/SQL?
Explain what is a subquery ?
What are schema-level triggers?
Why do we need cursors in pl sql?
what are the non-standard sql commands supported by 'mysql'? : Sql dba
What is a sql trace file?
How can I speed up sql query?
What are secondary keys?
Can we create index on primary key?
What are pl/sql packages?
what are aggregate and scalar functions? : Sql dba
what is data control language? : Sql dba
What are reports usually used for?
What is #table in sql?