Yurttas/PL/DBL/postgres/F/01/Bank/q02.sql
Jump to navigation
Jump to search
1/*
2REM
3REM q02.sql
4REM
5REM Find all tuples in which the amount
6REM borrowed is more than $1200.
7REM
8*/
9
10SELECT current_schema();
11SET search_path to "bank";
12
13SELECT *
14FROM Borrower
15WHERE amount>1200;