display null value rows with out using null function?
Answer Posted / noor
Select Empno, Decode (Comm,Null,0,Comm) Comm From Emp;
Select Empno, Case When Comm Is Null Then 0 Else Comm End Comm From Emp
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain what is sql?
What action do you have to perform before retrieving data from the next result set of a stored procedure ?
How to use transactions efficiently : transact sql
Why we use sql profiler?
What is the purpose of a secondary key?
Can you call pl/sql package functions from within a fast formula?
What is sql partition function?
What does count (*) do in sql?
What does the file extension accdb stand for?
Describe types of sql statements?
What are sql functions? Describe the different types of sql functions?
What is a dynamic query?
Can we connect to postgresql using sql developer?
Explain the methods used to protect source code of pl/sql.
How to use sql statements in pl/sql?