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 (
    403905, 410883, 408899, 408775, 440269, 
    435840, 444141, 410125, 453374, 429849, 
    427100, 430100
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00059

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 (403905,410883,408899,408775,440269,435840,444141,410125,453374,429849,427100,430100) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
403905 Smart Drone 597 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
408775 Smart Drone 919 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
408899 Smart Drone 903 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
410125 Smart Grinder 376 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
410883 Smart Drone 684 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
427100 Smart Headphones 346 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
429849 Smart Headphones 291 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
430100 Smart Headphones 560 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
435840 Smart Drone 945 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
440269 Smart Drone 920 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
444141 Smart Grinder 278 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
453374 Smart Grinder 744 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.