MCPcopy Create free account
hub / github.com/Openpanel-dev/openpanel / andWhere

Method andWhere

packages/db/src/clickhouse/query-builder.ts:184–188  ·  view source on GitHub ↗
(column: string, operator: Operator, value?: SqlParam)

Source from the content-addressed store, hash-verified

182 }
183
184 andWhere(column: string, operator: Operator, value?: SqlParam): this {
185 const condition = this.buildCondition(column, operator, value);
186 this._where.push({ condition, operator: 'AND' });
187 return this;
188 }
189
190 rawWhere(condition: string): this {
191 if (condition) {

Callers 1

mainFunction · 0.45

Calls 2

buildConditionMethod · 0.95
pushMethod · 0.45

Tested by

no test coverage detected