Inserting multiple rows

suggest change

You can insert multiple rows in the database at the same time:

INSERT INTO person (name, age) VALUES 
  ('john doe', 25),
  ('jane doe', 20);

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents