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
How much does sql cost?
How to download oracle sql developer?
What is AUTH_ID and AUTH_USER in pl/sql ?
How many types of tables are there?
What are the operators used in select statements?
What is schema in sql?
What is database sql?
What are procedures used for?
What is the starting oracle error number? What is meant by forward declaration in functions?
What are the various restrictions imposed on view in terms of dml?
Explain what is a column in a table?
What is application trigger?
What is a sql schema used for?
What is the execution plan in sql?
how do you control the max size of a heap table? : Sql dba