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 (
    434266, 409362, 423031, 440861, 450242, 
    453386, 443925, 460758, 427198, 403635, 
    403069, 448973
  ) 
  AND cscart_product_descriptions.lang_code = 'ar'

Query time 0.00044

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 (434266,409362,423031,440861,450242,453386,443925,460758,427198,403635,403069,448973) and cscart_product_descriptions.lang_code = 'ar'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
403069 Eco Router 986 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
403635 Eco Router 914 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
409362 Eco Router 454 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
423031 Eco Router 459 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
427198 Eco Router 903 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
434266 Eco Router 443 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
440861 Eco Router 476 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
443925 Eco Router 856 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
448973 Eco Shirt 123 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
450242 Eco Router 712 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
453386 Eco Router 772 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
460758 Eco Router 864 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.