Using ORDER BY : Order « Select Query « PostgreSQL

PostgreSQL
1. Aggregate Functions
2. Analytical Functions
3. Array
4. Constraints
5. Cursor
6. Data Type
7. Database
8. Date Timezone
9. Index
10. Inheritance
11. Insert Delete Update
12. Math Functions
13. Postgre SQL
14. Select Query
15. Sequence
16. Store Procedure Function
17. String Functions
18. Subquery
19. Table
20. Table Joins
21. Transaction
22. User Previliege
23. View
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
PostgreSQL » Select Query » Order 
Using ORDER BY


postgres=#
postgres=# CREATE TABLE "editions" (
postgres(#      "isbn" text NOT NULL,
postgres(#      "book_id" integer,
postgres(#      "edition" integer,
postgres(#      "publisher_id" integer,
postgres(#      "publication" date,
postgres(#      "type" character(1)
postgres();
CREATE TABLE
postgres=#
postgres=# insert into editions values('039480001X', 1608,  1,  59,  '1957-03-01', 'h');
INSERT 0 1
postgres=# insert into editions values('0451160916', 7808,  1,  75,  '1981-08-01', 'p');
INSERT 0 1
postgres=# insert into editions values('0394800753', 1590,  1,  59,  '1949-03-01', 'p');
INSERT 0 1
postgres=# insert into editions values('0590445065', 259081,  150'1987-03-01', 'p');
INSERT 0 1
postgres=# insert into editions values('0694003611', 1501,  1,  65,  '1947-03-04', 'p');
INSERT 0 1
postgres=# insert into editions values('0596000855', 414732,  113'2001-03-01', 'p');
INSERT 0 1
postgres=#
postgres=# select from editions;
    isbn    | book_id | edition | publisher_id | publication | type
------------+---------+---------+--------------+-------------+------
 039480001X |    1608 |       |           59 1957-03-01  | h
 0451160916 |    7808 |       |           75 1981-08-01  | p
 0394800753 |    1590 |       |           59 1949-03-01  | p
 0590445065 |   25908 |       |          150 1987-03-01  | p
 0694003611 |    1501 |       |           65 1947-03-04  | p
 0596000855 |   41473 |       |          113 2001-03-01  | p
(rows)

postgres=#
postgres=# --Using ORDER BY
postgres=#
postgres=# SELECT isbn, edition, publication
postgres-#         FROM editions
postgres-#         ORDER BY publication ASC;
    isbn    | edition | publication
------------+---------+-------------
 0694003611 |       1947-03-04
 0394800753 |       1949-03-01
 039480001X |       1957-03-01
 0451160916 |       1981-08-01
 0590445065 |       1987-03-01
 0596000855 |       2001-03-01
(rows)

postgres=#
postgres=#
postgres=#
postgres=# drop table editions;
DROP TABLE
postgres=#
postgres=#
postgres=#
           
       
Related examples in the same category
1. Order by in ascending order
2. Using ORDER BY with multiple expressions
3. Using DISTINCT with ORDER BY
4. Using DISTINCT and ORDER BY together
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.