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 (
    417977, 418226, 423333, 449562, 401443, 
    449507, 433832, 409821, 434815, 418429, 
    428304, 454998
  ) 
  AND cscart_product_descriptions.lang_code = 'ar'

Query time 0.00050

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 (417977,418226,423333,449562,401443,449507,433832,409821,434815,418429,428304,454998) and cscart_product_descriptions.lang_code = 'ar'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
401443 Pro Grinder 430 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
409821 Pro Headphones 136 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
417977 Pro Drone 799 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
418226 Pro Drone 919 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
418429 Pro Headphones 568 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
423333 Pro Grinder 298 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
428304 Pro Headphones 631 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
433832 Pro Grinder 937 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
434815 Pro Headphones 151 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
449507 Pro Grinder 930 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
449562 Pro Grinder 305 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
454998 Pro Headphones 690 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.