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

Method and

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

@title: and @desc "AND"符号

(String expr)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 4

parseMethod · 0.95
errorCodeMethod · 0.95
andMethod · 0.95
getWhereMethod · 0.80

Tested by

no test coverage detected