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 (
    404060, 455720, 420563, 416787, 428711, 
    460118, 458461, 403343, 405043, 402986, 
    417129, 414508
  ) 
  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 (404060,455720,420563,416787,428711,460118,458461,403343,405043,402986,417129,414508) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
402986 Smart Drone 460 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
403343 Smart Drone 196 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
404060 Smart Chair 543 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
405043 Smart Drone 203 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
414508 Smart Drone 594 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
416787 Smart Chair 662 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
417129 Smart Drone 546 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
420563 Smart Chair 603 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
428711 Smart Chair 670 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
455720 Smart Chair 545 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
458461 Smart Chair 915 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
460118 Smart Chair 902 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.