@title: or @desc "OR"符号
(String expr)
| 122 | * @desc "OR"符号 |
| 123 | */ |
| 124 | public Update or(String expr) { |
| 125 | SQLExpr expression = ExpressionBuilder.parse(expr); |
| 126 | or(expression); |
| 127 | return this; |
| 128 | } |
| 129 | |
| 130 | public Update or(SQLExpr where) { |
| 131 | SQLExpr oldWhere = update.getWhere(); |