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 (
    422250, 455802, 409880, 440645, 405789, 
    446310, 450867, 406164, 426321, 427080, 
    406770, 408843
  ) 
  AND cscart_product_descriptions.lang_code = 'ar'

Query time 0.00037

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 (422250,455802,409880,440645,405789,446310,450867,406164,426321,427080,406770,408843) and cscart_product_descriptions.lang_code = 'ar'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
405789 Lite Drone 456 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
406164 Lite Drone 568 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
406770 Lite Drone 646 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
408843 Lite Drone 881 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
409880 Lite Drone 175 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
422250 Lite Drone 102 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
426321 Lite Drone 612 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
427080 Lite Drone 617 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
440645 Lite Drone 342 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
446310 Lite Drone 507 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
450867 Lite Drone 516 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
455802 Lite Drone 142 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.