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 / monika
if u want to display output in two columns like f1.a,f1.b
then use
select * from(select f1 from t1)a,
select f1 from tt order by f1 desc)b);
if want to display output in same column then use union
like-
select f1 from t1
union
select f1 from t1 order by f1 desc;
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
What is the starting oracle error number?
What is the purpose of a sql?
Explain the uses of control file.
What is sqlca in db2?
what is the use of friend function? : Sql dba
Explain isolation levels. : Transact sql
What is the difference between null value, zero, and blank space?
Write an sql query to select all records from the table?
what is datawarehouse? : Sql dba
how mysql optimizes distinct? : Sql dba
What are the types of variable use in pl sql?
How to write a single statement that concatenates the words ?hello? And ?world? And assign it in a variable named greeting?
How to run sql*plus commands in sql developer?
What version is sql?
What view means?