main
 1INSERT INTO users (
 2  id,
 3  name,
 4  email
 5)
 6VALUES (
 7  1,
 8  'John',
 9  'john@example.com'
10),
11(
12  2,
13  'Jane',
14  'jane@example.com'
15),
16(
17  3,
18  'Bob',
19  'bob@example.com'
20)