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 (
    401192, 420138, 420200, 411483, 433250, 
    448259, 456498, 453797, 440607, 427308, 
    452175, 444603
  ) 
  AND cscart_product_descriptions.lang_code = 'ar'

Query time 0.00106

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 (401192,420138,420200,411483,433250,448259,456498,453797,440607,427308,452175,444603) and cscart_product_descriptions.lang_code = 'ar'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
401192 Pro Headphones 712 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
411483 Pro Headphones 809 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
420138 Pro Headphones 783 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
420200 Pro Headphones 805 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
427308 Pro Laptop 937 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
433250 Pro Headphones 891 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
440607 Pro Laptop 762 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
444603 Pro Laptop 973 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
448259 Pro Laptop 100 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
452175 Pro Laptop 972 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
453797 Pro Laptop 434 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
456498 Pro Laptop 373 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.