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
What is rownum and rowid?
describe mysql connection using mysql binary. : Sql dba
What is package in pl sql with an examples?
What is pl sql block structure?
How to disable a trigger name update_salary?
What are the topics in pl sql?
What are the steps for performance tuning.
What do you understand by exception handling in pl/sql?
What is a system versioned table?
what is index? : Sql dba
Is sql harder than python?
How do I create a memory optimized filegroup?
What is the left table in sql?
What is crud stand for?
What is the unique index?