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 (
    435351, 456510, 404001, 413818, 442117, 
    433550, 450230, 439049, 414690, 448070, 
    414544, 431904
  ) 
  AND cscart_product_descriptions.lang_code = 'zh'

Query time 0.00050

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 (435351,456510,404001,413818,442117,433550,450230,439049,414690,448070,414544,431904) and cscart_product_descriptions.lang_code = 'zh'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
404001 Prime Book 145 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
413818 Prime Book 263 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
414544 Prime Bottle 483 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
414690 Prime Bottle 329 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
431904 Prime Bottle 508 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
433550 Prime Book 556 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
435351 Prime Backpack 673 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
439049 Prime Bottle 216 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
442117 Prime Book 509 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
448070 Prime Bottle 435 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
450230 Prime Book 899 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
456510 Prime Backpack 685 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.