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 (
    446403, 458757, 442698, 411106, 414487, 
    406252, 429220, 457421, 453056, 444011, 
    425208, 422848
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00064

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 (446403,458757,442698,411106,414487,406252,429220,457421,453056,444011,425208,422848) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
406252 Lite Laptop 698 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
411106 Lite Laptop 450 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
414487 Lite Laptop 694 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
422848 Lite Mixer 720 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
425208 Lite Mixer 557 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
429220 Lite Laptop 979 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
442698 Lite Laptop 417 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
444011 Lite Mixer 395 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
446403 Lite Laptop 120 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
453056 Lite Mixer 367 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
457421 Lite Mixer 217 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
458757 Lite Laptop 237 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.