what is difference between decode and case function?

Answers were Sorted based on User's Feedback



what is difference between decode and case function?..

Answer / neha sinha

1)Performance wise Case is good.

2)Case is easy to understand and debug.

3)Case is ANSI stranded and Decode is property of oracle.

4) We can use Decode only in SQL but we can use Case any
where like Function/procedure.

5)Decode can be use only for continuous data not for range
value. but case can be use for range value and it allowed
operator like ">" "between" also.

Is This Answer Correct ?    17 Yes 0 No

what is difference between decode and case function?..

Answer / shiva kumar

Case functions are of two types
1. SIMPLE CASE(Equivalent to DECODE)
2. SEARCHED CASE

1.SIMPLE CASE is equivalent to DECODE in performance.The
only difference is it is ANSI Standard where as DECODE
function is designed by oracle.

2.SEARCHED CASE is more powerful then DECODE.Using SEARCHED
CASE we can evaluate multiple conditions,range evaluation.

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More SQL PLSQL Interview Questions

What is Difference Between delete and Truncate?

9 Answers  


How do you optimize a stored procedure query?

0 Answers  


Which query operators in sql is used for pattern matching?

0 Answers  


Which normal form is best?

0 Answers  


What are all types of user defined functions?

0 Answers  






Does sql require a server?

0 Answers  


Which join is default?

0 Answers  


What are the main features of cursor?

0 Answers  


what is primary key? : Sql dba

0 Answers  


Define concurrency control. : Transact sql

0 Answers  


How many sql core licenses do I need?

0 Answers  


What type of database is sql?

0 Answers  


Categories