I have created a table called "abcd" with 3 attributes, so now I'm trying to insert some values into this table I created.
I found that to insert a value you do something like this
INSERT INTO abcd
VALUES (value1,value2,value3);
So this works fine but what if I have multiple things to enter, is there a way to easily insert multiple entries into a table that does something like the code below?
INSERT INTO abcd
VALUES (value1,value2,value3);
INSERT INTO abcd
VALUES (val1,val2,val3);
INSERT INTO abcd
VALUES (v1,v2,v3);
INSERT INTO abcd
VALUES (1,2,3);
Do I really need to do "insert into abcd" for every single line I need to insert?