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 crud diagram?
Is sqlite thread safe?
What is difference between joins and union?
How to check if a column is nullable before setting to nullable?
How do you run a query?
What is sql performance tuning?
How to rename a table?
Why do we use procedures in pl sql?
What is 19 null in sql?
Is primary key clustered or nonclustered?
How many types of tables are there?
Is there a pl/sql pragma similar to deterministic, but for the scope of one single sql select?
Is sql considered coding?
Which is faster subquery or join?
What is the difference between rollback and rollback to statements?