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 (
    452582, 457573, 414316, 418069, 445198, 
    453411, 424234, 443986, 445355, 457110, 
    429614, 422817
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00117

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 (452582,457573,414316,418069,445198,453411,424234,443986,445355,457110,429614,422817) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
414316 Eco Watch 908 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
418069 Lite Backpack 150 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
422817 Lite Backpack 530 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
424234 Lite Backpack 327 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
429614 Lite Backpack 528 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
443986 Lite Backpack 332 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
445198 Lite Backpack 190 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
445355 Lite Backpack 395 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
452582 Eco Watch 784 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
453411 Lite Backpack 261 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
457110 Lite Backpack 512 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
457573 Eco Watch 837 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.