在MySQL中,是否只能选择存在某些内容的列?
例如,我有以下查询:
select phone, phone2 from jewishyellow.users where phone like '813%' and phone2
我试图仅选择电话以813开头并且phone2中包含某些内容的行。
比较phone2空字符串的值:
phone2
select phone, phone2 from jewishyellow.users where phone like '813%' and phone2<>''
请注意,NULL值解释为false。
NULL
false