SELECT 
  cscart_product_descriptions.product_id, 
  cscart_product_descriptions.short_description, 
  IF(
    cscart_product_descriptions.short_description = '' 
    OR cscart_product_descriptions.short_description IS NULL, 
    cscart_product_descriptions.full_description, 
    ''
  ) AS full_description 
FROM 
  cscart_product_descriptions 
WHERE 
  cscart_product_descriptions.product_id IN (200) 
  AND cscart_product_descriptions.lang_code = 'ja'

Query time 0.00031

JSON explain

{
  "query_block": {
    "select_id": 1,
    "table": {
      "table_name": "cscart_product_descriptions",
      "access_type": "const",
      "possible_keys": ["PRIMARY", "product_id"],
      "key": "PRIMARY",
      "key_length": "9",
      "used_key_parts": ["product_id", "lang_code"],
      "ref": ["const", "const"],
      "rows": 1,
      "filtered": 100
    }
  }
}

Result

product_id short_description full_description
200 <p> 印象的でポップな旋律によって、各国のアマチュア合唱団の間で絶大な人気を誇るジョン・ラターのクリスマスアルバム、</p> <p> 収録内容</p> <p> 1. Ding Dong! Merrily on High&nbsp;</p> <p> 2. The Colours of Christmas&nbsp;</p> <p> 3. In Dulci Jubilo&nbsp;</p> <p> 4. What is this lovely fragrance?&nbsp;</p> <p> 5. Away in a Manger&nbsp;</p> <p> 6. Hodie Christus natus est&nbsp;</p> <p> 7. Riu riu chiu&nbsp;</p> <p> 8. I wonder as I wander&nbsp;</p> <p> 9. Star Carol&nbsp;</p> <p> 10. Once in Royal David&#39;s City&nbsp;</p> <p> 11. Silent Night&nbsp;</p> <p> 12. In the bleak midwinter&nbsp;</p> <p> 13. Gabriel&#39;s Message&nbsp;</p> <p> 14. Fanfare - O come, all ye faithful&nbsp;</p> <p> 15. O Holy Night&nbsp;</p> <p> 16. A New Year Carol&nbsp;</p> <p> 17. Joy to the World&nbsp;</p> <p> 18. Sleigh Ride&nbsp;</p> <p> 19. Deck the Hall&nbsp;</p> <p> 20. The Christmas Song&nbsp;</p> <p> 21. The Twelve Days Of Christmas&nbsp;</p> <p> 22. Have yourself a merry little Christmas&nbsp;</p> <p> 23. Fanfare - Hark! the herald angels sing</p>