table -
new_no old_no
2345 1234
3456 2345
5678 4567

output sud be -new_no
1234
2345
3456
4567
5678

Answers were Sorted based on User's Feedback



table - new_no old_no 2345 1234 3456 2345 5678 4567 output sud be -new..

Answer / bibhu

select new_no as new_noz
from t01
union
select old_no as new_noz
from t01
order by new_noz

Is This Answer Correct ?    10 Yes 0 No

table - new_no old_no 2345 1234 3456 2345 5678 4567 output sud be -new..

Answer / lizamishra15

pls send me th answer

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More SQL PLSQL Interview Questions

How can I delete duplicate rows?

0 Answers  


how many tables will create when we create table, what are they? : Sql dba

0 Answers  


Name some usages of database trigger?

0 Answers  


How do I run sql profiler?

0 Answers  


select 10 from dual; y its showing all the rows with 10?

1 Answers  






What is an Exception ? What are types of Exception ?

2 Answers  


what are the advantages of package?

7 Answers   iFlex,


Is sql considered coding?

0 Answers  


select sal from emp group by sal

3 Answers   TCS,


display null value rows with out using null function?

8 Answers   Infosys,


what is uncommittable transactions? : Transact sql

0 Answers  


what is meant by databases

4 Answers  


Categories