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 (
    427619, 444547, 432847, 403496, 431636, 
    455406, 435103, 415659, 443503, 401160, 
    406539, 408349
  ) 
  AND cscart_product_descriptions.lang_code = 'zh'

Query time 0.00073

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 (427619,444547,432847,403496,431636,455406,435103,415659,443503,401160,406539,408349) and cscart_product_descriptions.lang_code = 'zh'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
401160 Smart Laptop 936 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
403496 Smart Laptop 122 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
406539 Smart Laptop 942 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
408349 Smart Mixer 707 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
415659 Smart Laptop 803 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
427619 Smart Headphones 568 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
431636 Smart Laptop 715 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
432847 Smart Headphones 893 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
435103 Smart Laptop 767 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
443503 Smart Laptop 823 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
444547 Smart Headphones 882 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
455406 Smart Laptop 753 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.