UNPKG

@sqb/builder

Version:

Extensible multi-dialect SQL query builder written with TypeScript

10 lines (9 loc) 257 B
import { OperatorType } from '../../enums.js'; import { OpIn } from './op-in.js'; export class OpNotIn extends OpIn { constructor() { super(...arguments); this._operatorType = OperatorType.notIn; this._symbol = 'not in'; } }