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 (
    408429, 453736, 434843, 452658, 408594, 
    447154, 419276, 421080, 421172, 421221, 
    437947, 405654
  ) 
  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 (408429,453736,434843,452658,408594,447154,419276,421080,421172,421221,437947,405654) and cscart_product_descriptions.lang_code = 'ar'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
405654 Lite Sneakers 191 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
408429 Lite Shirt 313 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
408594 Lite Shirt 544 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
419276 Lite Shirt 716 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
421080 Lite Shirt 717 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
421172 Lite Shirt 817 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
421221 Lite Sneakers 111 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
434843 Lite Shirt 466 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
437947 Lite Sneakers 188 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
447154 Lite Shirt 702 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
452658 Lite Shirt 487 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
453736 Lite Shirt 403 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.