
Shervin Z. answered 03/21/19
Full Stack Developer by Day Tutor and programming mentor by night
Depending on your DBMS and SQL language SQL server from the 2008 version gives you the ability to add a set of values just by separating comma between the values parenthesis.
INSERT INTO MyTable VALUES
("John", 123, "Lloyds Office"),
("Jane", 124, "Lloyds Office"),
("Billy", 125, "London Office"),
("Miranda", 126, "Bristol Office");
If you're not using SQL Server you can use the SELECT and UNION ALL clauses:
NSERT INTO MyTable
SELECT 'John', 123, 'Lloyds Office'
UNION ALL
SELECT 'Jane', 124, 'LloydsOffice'
...
Good Luck
--Shervin