एक तरीका यह है कि कैटलॉग_प्रोडक्ट_एंटी_टेक्स्ट में दो बार बाएं शामिल हों। एक बार आईडी 0 के लिए और दूसरा आईडी 3 के लिए और फिर अपने चयन में एक COALESCE करें
SELECT
..
COALESCE(`short_description_id`.`value` , `short_description_id_DEFAULT`.`value`) AS `short_description`
..
FROM
...
LEFT JOIN `catalog_product_entity_text` AS `short_description_id`
ON p2c.product_id = short_description_id.entity_id
AND short_description_id.attribute_id = 62
AND (short_description_id.store_id = 3)
LEFT JOIN `catalog_product_entity_text` AS `short_description_id_DEFAULT`
ON p2c.product_id = short_description_id.entity_id
AND short_description_id.attribute_id = 62
AND (short_description_id.store_id = 0)