Yurttas/PL/DBL/oracle/F/01/Bank/q05.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 q05.sql REM REM Find all those customers who have the same name as their REM personal banker. REM SELECT cus...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
 1REM
 2REM q05.sql
 3REM
 4REM Find all those customers who have the same name as their
 5REM personal banker.
 6REM
 7
 8SELECT customername
 9FROM Client
10WHERE customername = bankername;