Skip to content

NULL查询


whereIsNull()

可通过链式调用的方式来指定多条件的查询

  • @param field 字段名

whereIsNull()

Db('user').where('age', 10).whereIsNull('score').select()
Db('user').where('age', 10).whereIsNull('score').select()

最终的SQL语句为:

SELECT * FROM user WHERE age = 10 AND score IS NULL
SELECT * FROM user WHERE age = 10 AND score IS NULL

备案号:冀ICP备20015584号-2