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 (
    441208, 426071, 432027, 460287, 433546, 
    449711, 409195, 431589, 433762, 420392, 
    452653, 417677
  ) 
  AND cscart_product_descriptions.lang_code = 'zh'

Query time 0.00047

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.0216566,
    "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": 12,
          "cost": 0.0216566,
          "filtered": 100,
          "attached_condition": "cscart_product_descriptions.product_id in (441208,426071,432027,460287,433546,449711,409195,431589,433762,420392,452653,417677) and cscart_product_descriptions.lang_code = 'zh'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
409195 Ultra Shirt 833 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
417677 Ultra Sofa 153 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
420392 Ultra Sneakers 480 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
426071 Ultra Router 757 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
431589 Ultra Shirt 975 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
432027 Ultra Shirt 152 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
433546 Ultra Shirt 591 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
433762 Ultra Sneakers 171 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
441208 Ultra Router 644 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
449711 Ultra Shirt 800 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
452653 Ultra Sneakers 638 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
460287 Ultra Shirt 577 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.