Yurttas/PL/DBL/oracle/F/02/SPJ/Suppliers-ins.sp

From ZCubes Wiki
Revision as of 23:32, 4 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="text" line start="1" enclose="div">DECLARE BEGIN INSERT INTO Suppliers VALUES ('S01', 'E.Long', 1, 'Houston'); INSERT INTO Suppliers VALUES ('S02...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
 1DECLARE
 2
 3BEGIN
 4
 5INSERT INTO Suppliers
 6  VALUES ('S01', 'E.Long', 1, 'Houston');
 7
 8INSERT INTO Suppliers
 9  VALUES ('S02', 'M.Brown', 2, 'Dallas');
10
11INSERT INTO Suppliers
12  VALUES ('S03', 'A.Little', 3, 'San Antonio');
13
14END;
15/