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 (
    409338, 403991, 456256, 420163, 453916, 
    414087, 424432, 428079, 401029, 456055, 
    445068, 418346
  ) 
  AND cscart_product_descriptions.lang_code = 'zh'

Query time 0.00092

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 (409338,403991,456256,420163,453916,414087,424432,428079,401029,456055,445068,418346) and cscart_product_descriptions.lang_code = 'zh'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
401029 Pro Chair 472 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
403991 Pro Camera 555 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
409338 Pro Camera 479 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
414087 Pro Camera 846 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
418346 Pro Chair 893 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
420163 Pro Camera 580 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
424432 Pro Camera 935 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
428079 Pro Chair 235 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
445068 Pro Chair 736 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
453916 Pro Camera 813 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
456055 Pro Chair 608 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
456256 Pro Camera 558 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.