Difference between revisions of "Insert Command"
Jump to navigation
Jump to search
(Created page with "=Insert = ''' Adds new rows to a table, can include subquery to copy rows from an existing table '''") |
|||
Line 1: | Line 1: | ||
=Insert = | =Insert = | ||
''' Adds new rows to a table, can include subquery to copy rows from an existing table ''' | ''' Adds new rows to a table, can include subquery to copy rows from an existing table ''' | ||
INSERT INTO accountmanager | |||
VALUES ('T500', 'NICK', 'TAYLOR', '05-SEP-09', 4200, 3500, 'NE'); |
Revision as of 00:43, 17 October 2017
Insert
Adds new rows to a table, can include subquery to copy rows from an existing table
INSERT INTO accountmanager VALUES ('T500', 'NICK', 'TAYLOR', '05-SEP-09', 4200, 3500, 'NE');