@title: and @desc "AND"符号
(String expr)
| 81 | * @desc "AND"符号 |
| 82 | */ |
| 83 | public Delete and(String expr) { |
| 84 | SQLExpr expression = new SQLExprParser(expr).expr(); |
| 85 | and(expression); |
| 86 | return this; |
| 87 | } |
| 88 | |
| 89 | public Delete and(SQLExpr where) { |
| 90 | SQLExpr oldWhere = delete.getWhere(); |