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 (
    415871, 421404, 425226, 417016, 412387, 
    428451, 444033, 439697, 401303, 431619, 
    441208, 426071
  ) 
  AND cscart_product_descriptions.lang_code = 'ar'

Query time 0.00058

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 (415871,421404,425226,417016,412387,428451,444033,439697,401303,431619,441208,426071) and cscart_product_descriptions.lang_code = 'ar'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
401303 Ultra Router 574 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
412387 Ultra Router 126 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
415871 Ultra Phone 472 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
417016 Ultra Phone 962 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
421404 Ultra Phone 589 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
425226 Ultra Phone 809 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
426071 Ultra Router 757 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
428451 Ultra Router 154 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
431619 Ultra Router 618 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
439697 Ultra Router 321 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
441208 Ultra Router 644 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
444033 Ultra Router 200 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.