is it possible to insert into a MySQL table with the whole VALUES block of code being a parameter?
Parameter would be:
("(638) 833-5496","enim.curabitur@hotmail.couk","Spain"),
("(293) 742-0229","odio.semper@yahoo.net","Belgium"),
("1-265-156-4304","tincidunt.dui.augue@outlook.net","Ireland"),
("1-833-780-2553","scelerisque.scelerisque@aol.com","France"),
("(619) 691-0656","ac.risus.morbi@icloud.org","Costa Rica");
Insert statement would be
INSERT INTO `myTable` (`phone`,`email`,`country`)
VALUES
{parameter}
Is it possible to do as an Insert statement, stored procedure, or anything?