table -
new_no old_no
2345 1234
3456 2345
5678 4567
output sud be -new_no
1234
2345
3456
4567
5678
Answer Posted / 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 |
Post New Answer View All Answers
How do I start sql from command line?
What are the query optimization techniques?
What is mutating table error?
What does partition by mean in sql?
How to use boolean type in select statement?
Why is sql important?
What is pl/sql table? Why is it used?
What is the syntax and use of the coalesce function?
is it possible to pass an object or table to a procedure as an argument?
Does view store data in sql?
What is on delete set null?
What are the different types of functions in sql?
What are the advantages of pl sql over sql?
What is a left join?
give the syntax of grant and revoke commands? : Sql dba