Skip to content
Advertisement

how to use not null condition in YII2

Hi i want to use not null condition in my yii2 query how should i use that. i don’t want city and state null.

My query is

JavaScript

Advertisement

Answer

You can use the not operator combined with the fields that should not be null to generate a IS NOT NULL SQL statement. Like this:

JavaScript

Also check the examples in the documentation.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement