take one table is t1 and in that column name is f1
f1 column values are
200
5000
3000
7000
300
600
100
400
800
400
i want display the values asc and desc in a single output.
sample output is
f1.a
100
200
300
400
500
600
etc......
and f1.d is
5000
4000
3000
2000
1000
etc...
Answer Posted / anjum
select * from (select f1 from t1 order by f1 asc)
union all
select * from (select f1 from t1 order by f1 desc)
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Are pl sql variables case sensitive?
what is log shipping? : Sql dba
Which one is better sql or oracle?
What is difference between pl and sql?
What is autocommit sql?
What is restrict in sql?
Describe types of sql statements?
Can unique keys be null?
Do stored procedures prevent sql injection?
Does a join table need a primary key?
how to include character strings in sql statements? : Sql dba
What is primary key secondary key alternate key candidate key?
What is case function?
What is type and rowtype in pl sql?
What is the use of pl/sql table?