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 (
    416787, 428711, 460118, 458461, 403343, 
    405043, 402986, 417129, 414508, 403905, 
    410883, 408899
  ) 
  AND cscart_product_descriptions.lang_code = 'ar'

Query time 0.00053

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 (416787,428711,460118,458461,403343,405043,402986,417129,414508,403905,410883,408899) and cscart_product_descriptions.lang_code = 'ar'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
402986 Smart Drone 460 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
403343 Smart Drone 196 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
403905 Smart Drone 597 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
405043 Smart Drone 203 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
408899 Smart Drone 903 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
410883 Smart Drone 684 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
414508 Smart Drone 594 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
416787 Smart Chair 662 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
417129 Smart Drone 546 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
428711 Smart Chair 670 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
458461 Smart Chair 915 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
460118 Smart Chair 902 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.