We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e210af8 commit 200ff21Copy full SHA for 200ff21
content/docs/guides/table.md
@@ -27,6 +27,15 @@ movieStore
27
We need to insert multiple records to the table.
28
29
```
30
+/**
31
+INSERT INTO movie (title, directed_by) VALUES
32
+ ('Pulp Fiction', 'Quentin Tarantino'),
33
+ ('The Matrix', 'Lana Wachowski'),
34
+ ('Dunkirk', 'Christopher Nolan'),
35
+ ('Fight Club', 'David Fincher'),
36
+ ('Interstellar', 'Christopher Nolan'),
37
+ ('The Social Network', 'David Fincher');
38
+*/
39
movieStore
40
.insert()
41
.values(new Movie(null, "Pulp Fiction", "Quentin Tarantino"))
0 commit comments