isNull
isNull(column: string)
import { OP, Param } from 'mysql2-orm';
/**
* { condition: '`preferences` IS NULL', params: [] }
*/
OP.isNull('preferences');
/**
* { condition: '`updatedAt` IS NULL', params: [] }
*/
OP.isNull('updatedAt');
isNull(column: string)
import { OP, Param } from 'mysql2-orm';
/**
* { condition: '`preferences` IS NULL', params: [] }
*/
OP.isNull('preferences');
/**
* { condition: '`updatedAt` IS NULL', params: [] }
*/
OP.isNull('updatedAt');