Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

Insert Multiple Rows at Once in SQL

INSERT INTO Customers(first_name, last_name, age, country)
VALUES
('Harry', 'Potter', 31, 'USA'),
('Chris', 'Hemsworth', 43, 'USA'),
('Tom', 'Holland', 26, 'UK');
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #Insert #Multiple #Rows #Once #SQL
ADD COMMENT
Topic
Name
5+5 =