Yurttas/PL/DBL/oracle/F/01/Bank/q02.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 q02.sql REM REM Find all tuples in which the amount borrowed is more than $1200. REM SELECT * FROM Borrower ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
1REM
2REM q02.sql
3REM
4REM Find all tuples in which the amount borrowed is more than $1200.
5REM
6
7SELECT *
8FROM Borrower
9WHERE amount>1200;