Skip to content

Commit 200ff21

Browse files
committed
DDD
1 parent e210af8 commit 200ff21

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

content/docs/guides/table.md

+9
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,15 @@ movieStore
2727
We need to insert multiple records to the table.
2828

2929
```
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+
*/
3039
movieStore
3140
.insert()
3241
.values(new Movie(null, "Pulp Fiction", "Quentin Tarantino"))

0 commit comments

Comments
 (0)