i have 2 table table one 4 columns respective values a1
7,a2 6,a3 8 ,a4 12 & table two 4 colums respective values
a1 7,a2 6,a3 8,a4 15.if table one & table two 3 colums same
then 4th column values 1)Qes diff >5 then print 5 * diff
value 2)Que diff <5 print 5



i have 2 table table one 4 columns respective values a1 7,a2 6,a3 8 ,a4 12 & table two 4 colum..

Answer / anithaletchumi

select t1.name,case when abs(t1.val-t2.val) > 5 then 5 *
abs(t1.val - t2.val) else 5 end diff from tab1 t1 join tab2 t2
on t1.name=t2.name where t1.val != t2.val

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More SQL PLSQL Interview Questions

How many sql are there?

0 Answers  


Can we group by two columns in sql?

0 Answers  


What is a recursive join sql?

0 Answers  


display null value rows with out using null function?

8 Answers   Infosys,


Which is better join or subquery?

0 Answers  






what is global temporary tables and how use that tables in pl/sql packages

1 Answers   Cap Gemini,


What are tuples in sql?

0 Answers  


What are the two types of exceptions.

0 Answers  


Which are sql * plus commands?

0 Answers  


give the syntax of grant and revoke commands? : Sql dba

0 Answers  


What is the main reason behind using an index?

0 Answers  


What is a temporal table?

0 Answers  


Categories