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 a trigger word?
What is sql injection owasp?
What is difference between inner join and self join?
What is recursive join in sql?
what are the differences between char and nchar? : Sql dba
Why partition by is used in sql?
what are date and time data types? : Sql dba
What are system versioned tables?
what are the differences between get and post methods in form submitting. Give the case where we can use get and we can use post methods? : Sql dba
What is the maximum number of columns in sql table?
What is crud stand for?
What are the qualities of 2nf?
What are the different types of dbms?
What is sqlservr exe?
What is scope and visibility in PL/SQL?