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 (
    440401, 442346, 442410, 411995, 448121, 
    446606, 410648, 459676, 447385, 428816, 
    406245, 426043
  ) 
  AND cscart_product_descriptions.lang_code = 'ar'

Query time 0.00057

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 (440401,442346,442410,411995,448121,446606,410648,459676,447385,428816,406245,426043) and cscart_product_descriptions.lang_code = 'ar'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
406245 Ultra Laptop 694 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
410648 Ultra Grinder 800 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
411995 Ultra Drone 864 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
426043 Ultra Laptop 714 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
428816 Ultra Laptop 101 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
440401 Ultra Drone 313 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
442346 Ultra Drone 693 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
442410 Ultra Drone 818 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
446606 Ultra Grinder 706 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
447385 Ultra Headphones 407 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
448121 Ultra Grinder 642 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
459676 Ultra Grinder 898 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.