|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?立即注册
x
yii2判断数据库字段is null
- $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);
复制代码 |
|