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

From ZCubes Wiki
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;