Opdater (trykfejl rettet):
SELECT city,state,
CASE
WHEN (city IS NULL OR city='') AND (state IS NULL or state='') THEN ''
ELSE country
END as country_1
FROM `table`
Du kan også bruge IF
i stedet for CASE
:IF ((city IS NULL OR city='') AND (state IS NULL or state=''),'',country) as country_1