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 (
    457743, 457753, 457758, 457766, 457790, 
    457596, 457603, 457625, 457657, 457660, 
    457678, 457686
  ) 
  AND cscart_product_descriptions.lang_code = 'zh'

Query time 0.00045

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 (457743,457753,457758,457766,457790,457596,457603,457625,457657,457660,457678,457686) and cscart_product_descriptions.lang_code = 'zh'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
457596 Eco Headphones 167 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
457603 Pro Bottle 388 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
457625 Ultra Watch 859 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
457657 Lite Headphones 430 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
457660 Pro Grinder 249 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
457678 Prime Drone 741 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
457686 Prime Watch 390 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
457743 Lite Chair 259 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
457753 Lite Camera 540 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
457758 Mini Camera 426 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
457766 Mini Camera 724 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
457790 Ultra Headphones 306 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.