PHPIN.NET

 找回密码
 立即注册
查看: 6935|回复: 0

[技巧手记] yii2判断数据库字段is null

[复制链接]

469

主题

31

回帖

5569

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
5569
发表于 2016-1-14 20:59:16 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?立即注册

x
yii2判断数据库字段is null
  1. $query = new Query;              
  2. $query->select('ID, City,State,StudentName')
  3.       ->from('student')                                
  4.       ->where(['IsActive' => 1])
  5.       ->andWhere(['not', ['City' => null]])
  6.       ->andWhere(['not', ['State' => null]])
  7.       ->orderBy(['rand()' => SORT_DESC])
  8.       ->limit(10);
复制代码
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|小黑屋|PHPIN.NET ( 冀ICP备12000898号-14 )|网站地图

GMT+8, 2024-11-21 17:43

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表