Hello - I am trying to do a bulk insert from a CSV file. The DST function in SQL Studio Express kind of sucks, so I am looking for a way to do this using the INSERT function.
In MySQL its easy:
INSERT INTO
(col1,col2, etc)
VALUES
(val1,val2,etc),
(val1,val2,etc),
(val1,val2,etc),
(val1,val2,etc),
(val1,val2,etc),
(val1,val2,etc)
However, in SQL it does not except multiple lines of values. Is there anyway to accomplish this without using the bulk insert feature? (I'm awaiting permissions to use it, its currently blocked for my use, but now I'm sick of waiting.)
In MySQL its easy:
INSERT INTO
(col1,col2, etc)
VALUES
(val1,val2,etc),
(val1,val2,etc),
(val1,val2,etc),
(val1,val2,etc),
(val1,val2,etc),
(val1,val2,etc)
However, in SQL it does not except multiple lines of values. Is there anyway to accomplish this without using the bulk insert feature? (I'm awaiting permissions to use it, its currently blocked for my use, but now I'm sick of waiting.)
