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

1REM
2REM q02.sql
3REM
4REM Find all tuples in which the amount borrowed is more than $1200.
5REM
6
7SELECT *
8FROM Borrower
9WHERE amount>1200;