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 (
    450261, 416995, 446789, 426059, 409013, 
    414886, 444321, 406390, 408586, 425085, 
    413163, 415231
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00044

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 (450261,416995,446789,426059,409013,414886,444321,406390,408586,425085,413163,415231) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
406390 Classic Mixer 153 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
408586 Classic Mixer 182 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
409013 Classic Laptop 853 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
413163 Classic Mixer 344 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
414886 Classic Laptop 886 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
415231 Classic Mixer 415 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
416995 Classic Laptop 680 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
425085 Classic Mixer 332 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
426059 Classic Laptop 834 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
444321 Classic Laptop 889 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
446789 Classic Laptop 753 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
450261 Classic Laptop 421 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.