how to sort records in sql?
Answers were Sorted based on User's Feedback
Answer / hannan oca
by using order by asc or order by des;
we can sort the data.
| Is This Answer Correct ? | 16 Yes | 0 No |
For EMP table
order by deptno asc OR order by deptno desc
Normally records with NULL values are listed at last. We can
change this by using "NULLS FIRST" or "NULLS LAST" along
with order by clause.
Ex: order by deptno nulls first
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / slokh
SELECT * FROM table_name
ORDER BY column_name ASC;
| Is This Answer Correct ? | 1 Yes | 0 No |
What is normalization? dec 2009
What does the acronym acid stand for in database management?
What are the usages of sql?
what are the tunnig tables you used for tuning a query and tell me some of coloumns in that tuning tables?
What are the operators in sql?
What is procedure explain with example?
what is primary key? : Sql dba
In a package if we have 10 procedures or functions,How to know which will execute first?
what is sql profiler? : Sql dba
What is the difference between null value, zero, and blank space?
Does truncate remove indexes?
What is difference between select statement and cursor
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)