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 (
    451454, 436557, 436005, 422676, 427654, 
    406498, 438920, 440047, 403424, 402161, 
    426357, 413770
  ) 
  AND cscart_product_descriptions.lang_code = 'zh'

Query time 0.00044

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 (451454,436557,436005,422676,427654,406498,438920,440047,403424,402161,426357,413770) and cscart_product_descriptions.lang_code = 'zh'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
402161 Smart Phone 940 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
403424 Smart Phone 813 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
406498 Smart Phone 287 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
413770 Smart Router 359 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
422676 Smart Mixer 989 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
426357 Smart Router 211 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
427654 Smart Phone 124 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
436005 Smart Mixer 907 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
436557 Smart Mixer 894 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
438920 Smart Phone 673 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
440047 Smart Phone 744 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
451454 Smart Mixer 716 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.