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, 
  cscart_product_descriptions.unit_name 
FROM 
  cscart_product_descriptions 
WHERE 
  cscart_product_descriptions.product_id IN (
    403944, 439984, 450413, 418407, 425480, 
    418001, 424476
  ) 
  AND cscart_product_descriptions.lang_code = 'zh'

Query time 0.00040

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.01296265,
    "nested_loop": [
      {
        "table": {
          "table_name": "cscart_product_descriptions",
          "access_type": "range",
          "possible_keys": ["PRIMARY", "product_id"],
          "key": "PRIMARY",
          "key_length": "9",
          "used_key_parts": ["product_id", "lang_code"],
          "loops": 1,
          "rows": 7,
          "cost": 0.01296265,
          "filtered": 100,
          "attached_condition": "cscart_product_descriptions.product_id in (403944,439984,450413,418407,425480,418001,424476) and cscart_product_descriptions.lang_code = 'zh'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
403944 Ultra Sofa 382 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
418001 Ultra Watch 732 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
418407 Ultra Watch 487 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
424476 Ultra Watch 781 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
425480 Ultra Watch 597 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
439984 Ultra Sofa 633 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
450413 Ultra Sofa 914 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.