v0.3.5
Refactored and added 2 methods with 2 WHERE
conditions.
isNull($field)
now you can use the method forIS NULL
conditionisNotNull($field)
now you can use the method forIS NOT NULL
condition- added
notNull($field)
method as a synonym ofisNotNull($field)
- you can use those conditions with
where()
andhaving()
also, usagewhere([['phone', "IS NULL"]])
andwhere([['phone', "IS NOT NULL"]])
- change
?
to the corresponding values ingetSql()
method