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 (
    415021, 414349, 430686, 451899, 423535, 
    431133, 406624, 460023, 459938, 403250, 
    403839, 442555
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00079

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 (415021,414349,430686,451899,423535,431133,406624,460023,459938,403250,403839,442555) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
403250 Ultra Book 419 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
403839 Ultra Book 845 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
406624 Ultra Book 264 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
414349 Smart Watch 281 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
415021 Smart Watch 165 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
423535 Smart Watch 886 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
430686 Smart Watch 777 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
431133 Ultra Backpack 168 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
442555 Ultra Book 966 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
451899 Smart Watch 810 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
459938 Ultra Book 357 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
460023 Ultra Book 307 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.