Adding Data using INSERT statement |
||||
|
You have to use the INSERT statement to add rows to a table Syntax INSERT INTO [table] (column1, column2, ...) VALUES (value1, value2, ...) Example INSERT INTO DEPARTMENTS (DEPARTMENT_ID, DEPARTMENT_NAME, MANAGER_ID, LOCATION_ID) VALUES (50, ’PRODUCTION’, 103, 1400); |
||||