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 (
    436654, 458480, 403102, 432285, 403973, 
    442807, 440814, 407763, 441694, 412081, 
    434268, 426164
  ) 
  AND cscart_product_descriptions.lang_code = 'zh'

Query time 0.00050

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 (436654,458480,403102,432285,403973,442807,440814,407763,441694,412081,434268,426164) and cscart_product_descriptions.lang_code = 'zh'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
403102 Mini Book 435 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
403973 Mini Book 766 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
407763 Mini Bottle 112 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
412081 Mini Bottle 261 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
426164 Mini Bottle 577 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
432285 Mini Book 503 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
434268 Mini Bottle 274 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
436654 Mini Book 362 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
440814 Mini Book 904 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
441694 Mini Bottle 258 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
442807 Mini Book 856 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
458480 Mini Book 432 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.