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 (
    438117, 439044, 406083, 415033, 460158, 
    422354, 409660, 453640, 424754, 410340, 
    417422, 422439
  ) 
  AND cscart_product_descriptions.lang_code = 'ar'

Query time 0.00076

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 (438117,439044,406083,415033,460158,422354,409660,453640,424754,410340,417422,422439) and cscart_product_descriptions.lang_code = 'ar'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
406083 Prime Grinder 366 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
409660 Prime Grinder 771 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
410340 Prime Headphones 375 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
415033 Prime Grinder 451 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
417422 Prime Headphones 463 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
422354 Prime Grinder 753 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
422439 Prime Headphones 746 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
424754 Prime Headphones 264 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
438117 Prime Drone 851 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
439044 Prime Drone 976 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
453640 Prime Headphones 215 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
460158 Prime Grinder 748 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.