In MySQL, can I select columns only where something exists?
For example, I have the following query:
select phone, phone2 from jewishyellow.users wh
Compare value of phone2 with empty string:
phone2
select phone, phone2 from jewishyellow.users where phone like '813%' and phone2<>''
Note that NULL value is interpreted as false.
NULL
false