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 (
    405306, 457702, 445416, 438653, 459017, 
    407090, 456306, 431395, 405502, 415531, 
    435646, 434967
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00075

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 (405306,457702,445416,438653,459017,407090,456306,431395,405502,415531,435646,434967) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
405306 Eco Shirt 672 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
405502 Eco Sneakers 470 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
407090 Eco Sneakers 239 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
415531 Eco Sneakers 483 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
431395 Eco Sneakers 460 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
434967 Eco Sofa 204 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
435646 Eco Sneakers 588 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
438653 Eco Sneakers 116 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
445416 Eco Shirt 822 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
456306 Eco Sneakers 340 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
457702 Eco Shirt 808 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
459017 Eco Sneakers 144 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.