I Have a table where I am trying to insert multiple rows into a single column... Any easy way of doing this ?
insert into tableA
(name) values(
'A',
'B',
'C',
.,
.,
I have about 400 rows I am getting the names from a excel sheet I tried using import from excel but that didn't work as it was throwing an error saying the format is wrong.
Any kind of ideas appreciated Thanks.