@title: and @desc "AND"符号
(String expr)
| 102 | * @desc "AND"符号 |
| 103 | */ |
| 104 | public Update and(String expr) { |
| 105 | SQLExpr expression = ExpressionBuilder.parse(expr); |
| 106 | and(expression); |
| 107 | return this; |
| 108 | } |
| 109 | |
| 110 | public Update and(SQLExpr where) { |
| 111 | SQLExpr oldWhere = update.getWhere(); |