UNPKG

@sqb/builder

Version:

Extensible multi-dialect SQL query builder written with TypeScript

10 lines (9 loc) 281 B
import { OperatorType } from '../../enums.js'; import { OpExists } from './op-exists.js'; export class OpNotExists extends OpExists { constructor() { super(...arguments); this._operatorType = OperatorType.notExists; this._symbol = 'not exists'; } }