I get errors when pasting this data into a table.
INSERT INTO Course (Course_ID,Course_Name) VALUES ('2019','CS'); VALUES ('1033','science'); VALUES ('1055','history'); VALUES ('3001','French');
Here are the details of creating the table. Course:
CREATE TABLE ( Course_ID INT NOT NULL, Course_Name VARCHAR(30) NOT NULL, PRIMARY KEY (Course_ID) );
source share