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 (
    416876, 429191, 403689, 407343, 433764, 
    454714, 460804, 443041, 436014, 426960, 
    405927, 424846
  ) 
  AND cscart_product_descriptions.lang_code = 'zh'

Query time 0.00054

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 (416876,429191,403689,407343,433764,454714,460804,443041,436014,426960,405927,424846) and cscart_product_descriptions.lang_code = 'zh'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
403689 Lite Grinder 557 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
405927 Lite Headphones 821 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
407343 Lite Grinder 610 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
416876 Lite Grinder 477 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
424846 Lite Headphones 873 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
426960 Lite Headphones 786 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
429191 Lite Grinder 490 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
433764 Lite Grinder 800 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
436014 Lite Headphones 748 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
443041 Lite Headphones 287 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
454714 Lite Grinder 818 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
460804 Lite Headphones 265 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.