SELECT IF(guides.colName IS NULL, 'Yes','No') FROM tableName; -- Or SELECT CASE WHEN colName IS NULL THEN 'Yes' ELSE 'No' END FROM tableName;