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 / ankesh
select sum(nvl2(col1,0,1)+sum(nvl2(col2,0,1)+<...as many
columns we have > from <table name>
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Mention what are the benefits of pl/sql packages?
What is materialized view in sql?
How to connect a sql*plus session to an oracle server?
Can delete statement be rollbacked?
Explain how you can copy a file to file content and file to pl/sql table in advance pl/sql?
What is sql query optimization?
In a distributed database system, can we execute two queries simultaneously?
How do I filter in sql profiler?
What is a mutating table and a constraining table?
What are the operators used in select statements?
Can we use two order by clause in query?
What are basic techniques of indexing?
Which join is like inner join?
Can we insert data into view?
What is normalization in a database?