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 (
    421856, 453293, 421836, 444708, 429476, 
    413127, 407471, 409966, 403355, 408795, 
    420652, 443583
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00071

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 (421856,453293,421836,444708,429476,413127,407471,409966,403355,408795,420652,443583) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
403355 Smart Sneakers 173 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
407471 Smart Shirt 682 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
408795 Smart Sneakers 251 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
409966 Smart Shirt 959 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
413127 Smart Shirt 514 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
420652 Smart Sneakers 451 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
421836 Smart Router 902 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
421856 Smart Router 637 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
429476 Smart Shirt 489 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
443583 Smart Sneakers 764 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
444708 Smart Shirt 396 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
453293 Smart Router 875 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.