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

Method and

src/main/java/com/sql/parse/statement/impl/druid/Delete.java:83–87  ·  view source on GitHub ↗

@title: and @desc "AND"符号

(String expr)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

errorCodeMethod · 0.95
getWhereMethod · 0.80

Tested by

no test coverage detected