@@ -17,7 +17,9 @@ From here you can execute SQL Statements against the table as follows
17
17
We need to insert a single record to the table.
18
18
19
19
``` java
20
- // INSERT INTO movie VALUES('Inception', 'Christopher Nolan')
20
+ /* * INSERT INTO movie
21
+ * VALUES('Inception', 'Christopher Nolan')
22
+ * /
21
23
movieStore
22
24
.insert()
23
25
.values(new Movie(null, "Inception", "Christopher Nolan"))
@@ -28,8 +30,8 @@ We need to insert multiple records to the table.
28
30
29
31
```
30
32
/**
31
- INSERT INTO movie (title, directed_by) VALUES
32
- ('Pulp Fiction', 'Quentin Tarantino'),
33
+ INSERT INTO movie (title, directed_by)
34
+ VALUES ('Pulp Fiction', 'Quentin Tarantino'),
33
35
('The Matrix', 'Lana Wachowski'),
34
36
('Dunkirk', 'Christopher Nolan'),
35
37
('Fight Club', 'David Fincher'),
@@ -38,12 +40,12 @@ INSERT INTO movie (title, directed_by) VALUES
38
40
*/
39
41
movieStore
40
42
.insert()
41
- . values(new Movie(null, "Pulp Fiction", "Quentin Tarantino"))
42
- .values( new Movie(null, "The Matrix", "Lana Wachowski") )
43
- .values( new Movie(null, "Dunkirk", "Christopher Nolan"))
44
- .values( new Movie(null, "Fight Club", "David Fincher"))
45
- .values( new Movie(null, "Interstellar", "Christopher Nolan"))
46
- .values( new Movie(null, "The Social Network", "David Fincher"))
43
+ values(new Movie (null , " Pulp Fiction" , " Quentin Tarantino" ),
44
+ new Movie (null , " The Matrix" , " Lana Wachowski" )
45
+ new Movie (null , " Dunkirk" , " Christopher Nolan" ),
46
+ new Movie (null , " Fight Club" , " David Fincher" ),
47
+ new Movie (null , " Interstellar" , " Christopher Nolan" ),
48
+ new Movie (null , " The Social Network" , " David Fincher" ))
47
49
.execute();
48
50
```
49
51
@@ -100,15 +102,16 @@ Update a record with multiple where clause
100
102
// WHERE id=1 AND title='Fight Club'
101
103
movieStore
102
104
.update()
103
- .set(new Movie (null , " Blood Diamond" , " Martyn Scorsese" ))
104
- .where(id(). eq(1 ). and(). title(). eq(" Fight Club" ))
105
+ .set(new Movie (null , " Blood Diamond" , " Martyn Scorsese" ))
106
+ .where(
107
+ id(). eq(1 ). and()
108
+ .title(). eq(" Fight Club" ))
105
109
.execute();
106
110
```
107
111
108
112
Update a record with multiple where clause amd selected columns
109
113
110
114
``` java
111
-
112
115
// UPDATE movie
113
116
// SET directed_by='Martyn Scorsese'
114
117
// WHERE id=1 AND title='Fight Club'
0 commit comments