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 (
    452275, 425655, 405329, 408400, 405508, 
    420092, 436320, 409425, 437741, 417942, 
    439367, 409696
  ) 
  AND cscart_product_descriptions.lang_code = 'ar'

Query time 0.00043

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 (452275,425655,405329,408400,405508,420092,436320,409425,437741,417942,439367,409696) and cscart_product_descriptions.lang_code = 'ar'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
405329 Lite Grinder 322 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
405508 Lite Grinder 505 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
408400 Lite Grinder 474 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
409425 Lite Grinder 596 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
409696 Lite Grinder 932 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
417942 Lite Grinder 840 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
420092 Lite Grinder 509 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
425655 Lite Grinder 303 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
436320 Lite Grinder 559 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
437741 Lite Grinder 745 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
439367 Lite Grinder 911 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
452275 Lite Grinder 266 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.