yii2判斷資料庫欄位is null,如下:
相關教學推薦:yii框架
範例:
$query = new Query; $query->select('ID, City,State,StudentName') ->from('student') ->where(['IsActive' => 1]) ->andWhere(['not', ['City' => null]]) ->andWhere(['not', ['State' => null]]) ->orderBy(['rand()' => SORT_DESC]) ->limit(10);
更多程式相關內容,請關注php中文網程式設計入門欄位!
以上是yii2判斷資料庫欄位不為空的詳細內容。更多資訊請關注PHP中文網其他相關文章!