|
Syntax:
INSERT INTO relationName VALUES ( .... ) or INSERT INTO relationName(attributeList) VALUES ( .... ) |
You can omit the list of attributes.
Example:
INSERT INTO employee VALUES
('Richard', 'K', 'Marini', '222669999', '30-Dec-52',
'98 Oak Street, Katy, TX', 'M', 37000, '987654321', 4);
|
You must provide a list of attributes.
INSERT INTO employee(fname, lname, ssn) VALUES
('Richard', 'Marini', '222669999');
|