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

From ZCubes Wiki
Revision as of 22:51, 4 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="sql" line start="1" enclose="div"> REM REM q08.sql REM REM Find all clients of banker 'Johnson', as well as the cities REM in which these clients live. ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
 1REM
 2REM q08.sql
 3REM
 4REM Find all clients of banker 'Johnson', as well as the cities
 5REM in which these clients live.
 6REM
 7
 8SELECT Customer.customername, customercity
 9FROM Client, Customer
10WHERE Client.customername = Customer.customername
11  AND bankername = 'Johnson';