File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -314,7 +314,7 @@ The following methods return `this` to allow method chaining.
314
314
315
315
Groups conditions. Returns ` this ` for method chaining. There are shorthands for the ` AND ` , ` OR ` , ` ( ` and ` ) ` groupings:
316
316
317
- WHERE (c1 = 10 AND c2 = 20) OR (c3 >= 30 AND c4 <= 40)
317
+ WHERE (c1 = 10 AND c2 = 20) OR (c3 >= 30 AND c4 <= 40)
318
318
319
319
wb
320
320
.push()
@@ -356,13 +356,13 @@ The following methods return `this` to allow method chaining.
356
356
357
357
Method|SQL operator
358
358
:-:|:-:
359
- ` e() ` | ` = `
360
- ` ne() ` | ` != `
361
- ` g() ` | ` > `
362
- ` ge() ` | ` >= `
363
- ` l() ` | ` < `
364
- ` le() ` | ` <= `
365
- ` in() ` | ` IN `
359
+ e()|=
360
+ ne()|!=
361
+ g()|>
362
+ ge()|>=
363
+ l()|<
364
+ le()|<=
365
+ in()|IN
366
366
367
367
#### <a name =" selectBuilder " ></a >[ SelectBuilder<i class =" icon-up " ></i >] ( #cselectBuilder )
368
368
@@ -423,9 +423,9 @@ The following methods return `this` to allow method chaining.
423
423
424
424
Method|JOIN type
425
425
-|-
426
- ` innerJoin() ` | ` INNER JOIN `
427
- ` leftOuterJoin() ` | ` LEFT OUTER JOIN `
428
- ` rightOuterJoin() ` | ` RIGHT OUTER JOIN `
426
+ innerJoin()| INNER JOIN
427
+ leftOuterJoin()| LEFT OUTER JOIN
428
+ rightOuterJoin()| RIGHT OUTER JOIN
429
429
430
430
431
431
SELECT c1, c2 FROM table1 LEFT OUTER JOIN table2 ON table1.rowid = table2.rowid;
You can’t perform that action at this time.
0 commit comments