postgresql 插入多行

示例

您可以同时在数据库中插入多行:

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