Yurttas/PL/DBL/postgres/F/01/Bank/q05.sql
Revision as of 00:38, 5 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="sql" line start="1" enclose="div">ββREM REM q05.sql REM REM Find all those customers who have the same name as their REM personal banker. REM: SELEC...")
1/*
2REM
3REM q05.sql
4REM
5REM Find all those customers who have the same name as their
6REM personal banker.
7REM
8*/
9
10SELECT current_schema();
11SET search_path to "bank";
12
13SELECT customername
14FROM Client
15WHERE customername = bankername;