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 / sowmya
select a.f1 f1.a,b.f1 f1.b
from t1 a t1 b
order by a.f1 asc,b.f1 desc;
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
Can sql function call stored procedure?
What is dynamic sql in pl sql?
Explain two easy sql optimizations.
How much ram can sql express use?
explain the advantages and disadvantages of stored procedure? : Sql dba
Name the different types of indexes in sql and define them.
i have some prob lem to tell me about my self in interview first round ...
What is cross join sql?
What are the uses of merge?
What is a behavioral trigger?
What is recursive stored procedure?
What sql database should I use?
what is user defined functions? : Sql dba
what are the differences between public, private, protected, static, transient, final and volatile? : Sql dba
What are system versioned tables?