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
Is sql pronounced sequel or sql?
What are the types of sql commands?
What are the limitations of sql express?
What is sql rowcount?
Which normal form is best?
What does desc stand for?
what is the difference between char_length and length? : Sql dba
What is the left table in sql?
What is difference between pl and sql?
What are joins in sql?
Write the alter statement to enable all the triggers on the t.students table.
how to convert dates to character strings? : Sql dba
how to rename an existing column in a table? : Sql dba
what are the advantages of using stored procedures? : Sql dba
Why truncate is faster than delete?