MCPcopy Create free account
hub / github.com/Nemo1870/sql-parse / or

Method or

src/main/java/com/sql/parse/statement/impl/druid/Update.java:124–128  ·  view source on GitHub ↗

@title: or @desc "OR"符号

(String expr)

Source from the content-addressed store, hash-verified

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();

Callers

nothing calls this directly

Calls 4

parseMethod · 0.95
errorCodeMethod · 0.95
orMethod · 0.95
getWhereMethod · 0.80

Tested by

no test coverage detected