小编典典

MySQL选择列不为空

mysql

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

例如,我有以下查询:

select phone, phone2
from jewishyellow.users
where phone like '813%'
and phone2

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


阅读 465

收藏
2020-05-17

共1个答案

小编典典

比较phone2空字符串的值:

select phone, phone2 
from jewishyellow.users 
where phone like '813%' and phone2<>''

请注意,NULL值解释为false

2020-05-17