Appearance
whereIsNull()
可通过链式调用的方式来指定多条件的查询
field
Db('user').where('age', 10).whereIsNull('score').select()
最终的SQL语句为:
SELECT * FROM user WHERE age = 10 AND score IS NULL