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 / jitendra
#The ORDER BY keyword is used to sort the result-set by a #specified column.
#The ORDER BY keyword sort the records in ascending order by #default.
#If you want to sort the records in a descending order, you #can use the DESC keyword.
#1. display the values ascending order
SELECT f1 FROM t1 ORDER BY f1 AS f1.a
#2. display the values descending order
SELECT f1 FROM t1 ORDER BY f1 DESC AS f1.d
| Is This Answer Correct ? | 0 Yes | 15 No |
Post New Answer View All Answers
What is dba in sql? : SQL DBA
What is sql key?
What are the three pl sql block types?
Are stored procedures faster than dynamic sql?
Which are the different types of indexes in sql?
how to increment dates by 1 in mysql? : Sql dba
discuss about myisam index statistics collection. : Sql dba
Explain the the delete statements in sql?
What are the different types of triggers?
What is the advantage of index in sql?
Which is the correct statement about truncate and delete?
which operator is used in query for pattern matching? : Sql dba
who introduced sql?
How many types of indexes are there in sql?
Differentiate between sga and pga.