How to use not equal to inside a Yii2 query

后端 未结 9 1759
無奈伤痛
無奈伤痛 2021-02-01 01:20

I want to use a yii2 query in which I want to check a not equal to condition. I tried like this but it didn\'t give the desired results. How do I do it?



        
9条回答
  •  無奈伤痛
    2021-02-01 01:48

    In case anyone reading this needs to use a REGEXP or similar, this works in Yii2 (2.0.15.1):

    ->andWhere(['NOT REGEXP', 'column','[A-Za-z]'])

提交回复
热议问题