MySQL选择列不为空

在MySQL中,是否只能选择存在某些内容的列?

例如,我有以下查询:

select phone, phone2

from jewishyellow.users

where phone like '813%'

and phone2

我试图仅选择电话以813开头并且phone2中包含某些内容的行。

回答:

比较phone2空字符串的值:

select phone, phone2 

from jewishyellow.users

where phone like '813%' and phone2<>''

请注意,NULL值解释为false

以上是 MySQL选择列不为空 的全部内容, 来源链接: utcz.com/qa/408549.html

回到顶部