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 (
    451189, 419036, 447640, 448015, 405135, 
    412255, 421594, 426721, 439588, 403510, 
    454572, 420094
  ) 
  AND cscart_product_descriptions.lang_code = 'zh'

Query time 0.00048

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 (451189,419036,447640,448015,405135,412255,421594,426721,439588,403510,454572,420094) and cscart_product_descriptions.lang_code = 'zh'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
403510 Mini Backpack 619 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
405135 Mini Backpack 376 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
412255 Mini Backpack 380 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
419036 Max Watch 996 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
420094 Mini Backpack 774 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
421594 Mini Backpack 449 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
426721 Mini Backpack 510 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
439588 Mini Backpack 538 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
447640 Mini Backpack 277 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
448015 Mini Backpack 317 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
451189 Max Watch 626 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
454572 Mini Backpack 771 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.