Yurttas/PL/DBL/postgres/F/01/Bank/o02.sql

From ZCubes Wiki
Revision as of 00:37, 5 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="sql" line start="1" enclose="div">/* REM REM o02.sql REM REM List the entire borrow relation in descending order of amount, REM if several loans have th...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
 1/*
 2REM
 3REM o02.sql
 4REM
 5REM List the entire borrow relation in descending order of amount,
 6REM if several loans have the same amount, order them
 7REM in ascending order by loannumber.
 8REM
 9*/
10
11SELECT current_schema();
12SET search_path to "bank";
13
14SELECT *
15FROM Borrower
16ORDER BY amount DESC,
17	 loannumber ASC;