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 (
    446929, 406357, 435303, 435650, 455895, 
    409755, 444595, 456183, 430020, 405721, 
    408755, 406722
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00061

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 (446929,406357,435303,435650,455895,409755,444595,456183,430020,405721,408755,406722) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
405721 Smart Backpack 936 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
406357 Pro Watch 276 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
406722 Smart Book 279 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
408755 Smart Backpack 968 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
409755 Smart Backpack 196 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
430020 Smart Backpack 708 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
435303 Pro Watch 436 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
435650 Pro Watch 764 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
444595 Smart Backpack 457 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
446929 Pro Sofa 967 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
455895 Smart Backpack 114 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
456183 Smart Backpack 568 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.