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 (
    413320, 406238, 453410, 410745, 424242, 
    412618, 454746, 405834, 414522, 453693, 
    446965, 401209
  ) 
  AND cscart_product_descriptions.lang_code = 'ar'

Query time 0.00182

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 (413320,406238,453410,410745,424242,412618,454746,405834,414522,453693,446965,401209) and cscart_product_descriptions.lang_code = 'ar'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
401209 Eco Watch 719 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
405834 Eco Watch 474 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
406238 Eco Sofa 791 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
410745 Eco Watch 235 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
412618 Eco Watch 429 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
413320 Eco Sofa 773 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
414522 Eco Watch 575 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
424242 Eco Watch 349 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
446965 Eco Watch 669 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
453410 Eco Sofa 842 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
453693 Eco Watch 665 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
454746 Eco Watch 447 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.