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 to write html code in pl sql?
What is trigger in sql?
Which join is default?
What is the reports view in oracle sql developer?
How would you convert date into julian date format?
What is posting?
What is sql query optimization?
Does sql*plus also have a pl/sql engine?
How do you rank data in sql?
Does a join table need a primary key?
What do you think about pl/sql?
How does sql store data?
What is full form of rtm?
Is there a 64 bit version of ssms?
Can we use distinct and group by together?