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 (
    408268, 435233, 411645, 446751, 460445, 
    454691, 405290, 432307, 456571, 446699, 
    413014, 450688
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00041

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 (408268,435233,411645,446751,460445,454691,405290,432307,456571,446699,413014,450688) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
405290 Classic Laptop 123 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
408268 Classic Headphones 479 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
411645 Classic Headphones 544 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
413014 Classic Laptop 352 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
432307 Classic Laptop 188 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
435233 Classic Headphones 519 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
446699 Classic Laptop 279 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
446751 Classic Headphones 740 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
450688 Classic Laptop 417 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
454691 Classic Laptop 113 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
456571 Classic Laptop 251 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
460445 Classic Headphones 780 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.