joebananas
New Member
I can't believe this hasn't been asked before but I've searched and haven't found anything on this topic.
I'm just starting with OpenEdge 10.0B03 and I'd like to insert multiple records with a single insert statement like I do in MySQL
In MySQL I can do the following,
Insert Into Tablename (RecID, Data1, Data2) Values
(1, "abc", "1a2"),
(2, "bcd", "1b3"),
(3, "cde", "1c4"),
(4, "def", "1d5");
Is there any way to do the something equivalent in Progress?
I'm just starting with OpenEdge 10.0B03 and I'd like to insert multiple records with a single insert statement like I do in MySQL
In MySQL I can do the following,
Insert Into Tablename (RecID, Data1, Data2) Values
(1, "abc", "1a2"),
(2, "bcd", "1b3"),
(3, "cde", "1c4"),
(4, "def", "1d5");
Is there any way to do the something equivalent in Progress?