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 (
    419227, 402104, 458795, 418330, 460097, 
    420158, 452129, 456903, 435373, 459596, 
    425363, 414643
  ) 
  AND cscart_product_descriptions.lang_code = 'zh'

Query time 0.00061

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 (419227,402104,458795,418330,460097,420158,452129,456903,435373,459596,425363,414643) and cscart_product_descriptions.lang_code = 'zh'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
402104 Max Backpack 649 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
414643 Max Book 810 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
418330 Max Backpack 868 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
419227 Max Backpack 622 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
420158 Max Book 127 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
425363 Max Book 609 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
435373 Max Book 519 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
452129 Max Book 394 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
456903 Max Book 469 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
458795 Max Backpack 843 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
459596 Max Book 549 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
460097 Max Backpack 964 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.