Yurttas/PL/DBL/postgres/F/01/Bank/q010.sql
Revision as of 00:37, 5 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="sql" line start="1" enclose="div">ββREM REM q010.sql REM REM Select the tuples of the Borrower relation where the branch REM is 'Perryridge'. REM: S...")
1/*
2REM
3REM q010.sql
4REM
5REM Select the tuples of the Borrower relation where the branch
6REM is 'Perryridge'.
7REM
8*/
9
10SELECT current_schema();
11SET search_path to "bank";
12
13SELECT *
14FROM Borrower
15WHERE branchname = 'Perryridge';