default Join |
BeforeJoin.crossJoin(Table table) |
Continue query with CROSS JOIN
|
default Delete |
BeforeDelete.delete(Table table) |
Continue query with DELETE
|
static Delete |
SQLBuilder.Delete(Table table) |
Start with an DELETE statement
|
default From |
BeforeFrom.from(Table... tables) |
Continue query with FROM
|
default Join |
BeforeJoin.fullOuterJoin(Table table) |
Continue query with FULL OUTER JOIN
|
default Join |
BeforeJoin.innerJoin(Table table) |
Continue query with INNER JOIN
|
default Join |
BeforeJoin.innerJoinOnColsEq(Table table,
java.lang.String col1,
java.lang.String col2) |
Continue query with INNER JOIN and use two columns as condition with col1 =
col2
|
default Insert |
BeforeInsert.insert(Table table) |
Continue query with INSERT
|
static Insert |
SQLBuilder.Insert(Table table) |
Start with an INSERT statement
|
default Join |
BeforeJoin.join(Table table) |
Continue query with JOIN
|
default Join |
BeforeJoin.leftJoin(Table table) |
Continue query with LEFT JOIN
|
default Join |
BeforeJoin.leftOuterJoin(Table table) |
Continue query with LEFT OUTER JOIN
|
default Join |
BeforeJoin.outerJoin(Table table) |
Continue query with OUTER JOIN
|
default Join |
BeforeJoin.rightJoin(Table table) |
Continue query with RIGHT JOIN
|
default Join |
BeforeJoin.rightOuterJoin(Table table) |
Continue query with RIGHT OUTER JOIN
|
From |
From.table(Table table) |
Specify the target table by Table representation
|
From |
From.tables(Table... tables) |
Specify the target table by Table representations
|
default Update |
BeforeUpdate.update(Table table) |
Continue query with UPDATE
|
static Update |
SQLBuilder.Update(Table table) |
Start with an UPDATE statement
|