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 (
    426766, 438143, 427476, 438277, 423983, 
    418826, 451985, 420812, 455665, 404060, 
    455720, 420563
  ) 
  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 (426766,438143,427476,438277,423983,418826,451985,420812,455665,404060,455720,420563) and cscart_product_descriptions.lang_code = 'ar'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
404060 Smart Chair 543 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
418826 Smart Bottle 666 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
420563 Smart Chair 603 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
420812 Smart Chair 165 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
423983 Smart Bottle 451 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
426766 Smart Book 979 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
427476 Smart Bottle 302 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
438143 Smart Bottle 270 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
438277 Smart Bottle 404 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
451985 Smart Camera 214 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
455665 Smart Chair 379 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
455720 Smart Chair 545 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.