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 (
    451713, 405280, 458098, 422838, 435233, 
    411645, 422883, 427836, 459826, 446751, 
    417009, 400995
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00188

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 (451713,405280,458098,422838,435233,411645,422883,427836,459826,446751,417009,400995) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
400995 Classic Headphones 764 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
405280 Classic Headphones 408 — 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.
417009 Classic Headphones 757 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
422838 Classic Headphones 498 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
422883 Classic Headphones 560 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
427836 Classic Headphones 600 — 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.
446751 Classic Headphones 740 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
451713 Classic Headphones 379 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
458098 Classic Headphones 421 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
459826 Classic Headphones 650 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.