-- Example: Insert a new employee into the 'Employees' table. -- Syntax: INSERT INTO table_name (column1, column2, ...) VALUES (value1, value2, ...); INSERT INTO ...
insert into course values ('BIO-101', 'Intro. to Biology', 'Biology', '4'); insert into course values ('BIO-301', 'Genetics', 'Biology', '4'); insert into course ...