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(decode(a,null,1)),count(decode(b,null,1)),count(decode(c,null,1)),count(decode(d,null,1))
from t1
| Is This Answer Correct ? | 6 Yes | 4 No |
Post New Answer View All Answers
How do I make my sql query run faster?
What is number function in sql?
Is sql open source?
what is the difference between $message and $$message? : Sql dba
What is db journal file?
Why self join is used in sql?
Does sql support programming?
Do we need to create index on primary key?
What is data definition language?
Is it possible for a table to have more than one foreign key?
What programs use sql?
What is trigger in flip flop?
Describe types of sql statements?
What is the difference between sql and t sql?
what is a materialized view? : Sql dba