public interface DeleteFromStep extends DeleteWhereStep
| Modifier and Type | Method and Description |
|---|---|
DeleteFromStep |
innerJoin(TableExpr table,
BooleanExpr<?,?> on)
Creates a INNER JOIN statement for this query.
|
DeleteFromStep |
leftJoin(TableExpr table,
BooleanExpr<?,?> on)
Creates a LEFT JOIN statement for this query.
|
DeleteFromStep |
rightJoin(TableExpr table,
BooleanExpr<?,?> on)
Creates a RIGHT JOIN statement for this query.
|
DeleteWhereStep |
where(BooleanExpr<?,?> condition)
Adds a WHERE statement to the query.
|
orderBylimitDeleteFromStep innerJoin(TableExpr table, BooleanExpr<?,?> on)
table - The table to join.on - The condition to join.DeleteFromStep leftJoin(TableExpr table, BooleanExpr<?,?> on)
table - The table to join.on - The condition to join.DeleteFromStep rightJoin(TableExpr table, BooleanExpr<?,?> on)
table - The table to join.on - The condition to join.DeleteWhereStep where(BooleanExpr<?,?> condition)
condition - The condition for the where statement.Copyright © 2015–2018 Bridje Framework. All rights reserved.