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?
Can we join same table in sql?
What are all different types of collation sensitivity?
Can we join more than 2 tables in sql?
what are local and global variables and their differences? : Sql dba
Can a table have no primary key?
How can we store rows in PL/SQL using array?
Why is pl sql needed?
What is a join query?
When is the update_statistics command used?
What's the difference between inner join and left join?
How to use transactions efficiently : transact sql
Does sap use sql?
How do you explain an index number?
What is indexing in sql and its types?