Yurttas/PL/DBL/oracle/F/01/Bank/o01.sql

From ZCubes Wiki
Revision as of 22:51, 4 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="sql" line start="1" enclose="div"> REM REM o01.sql REM REM List in alphabetical order, all customers having a loan at the REM `Perryridge' branch. REM ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
 1REM
 2REM o01.sql
 3REM
 4REM List in alphabetical order, all customers having a loan at the
 5REM `Perryridge' branch.
 6REM
 7
 8SELECT DISTINCT customername
 9FROM Borrower
10WHERE branchname = 'Perryridge'
11ORDER BY customername;