I am trying to store multiple values into a table with two columns in a single command. Here is my command,
INSERT INTO CATEGORY
VALUES('BUS','BUSINESS'), ('CHN', 'CHILDREN'), ('COK', 'COOKING'), ('COM',
'COMPUTER'), ('FAL', 'FAMILY LIFE'), ('FIT', 'FITNESS'), ('SEH', 'SELF HELP'),
('LIT', 'LITERATURE');
I get a red underline after my first pair of values where I have the comma. What am I doing wrong?