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

From ZCubes Wiki
Jump to navigation Jump to search
 1REM
 2REM q12.sql
 3REM
 4REM Find customer by any(&1) attribute from
 5REM any branch('&2') who has a loan.
 6REM
 7REM &1(attribute) and '&2'(value) are interactive values.
 8REM
 9
10SELECT &1
11FROM Borrower
12WHERE branchname = '&2';