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 (
    408376, 428738, 437947, 424967, 428526, 
    419226, 429122, 448827, 451935, 424697, 
    405944, 430377
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00050

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 (408376,428738,437947,424967,428526,419226,429122,448827,451935,424697,405944,430377) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
405944 Lite Sneakers 461 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
408376 Lite Shirt 973 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
419226 Lite Sneakers 303 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
424697 Lite Sneakers 398 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
424967 Lite Sneakers 241 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
428526 Lite Sneakers 279 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
428738 Lite Sneakers 103 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
429122 Lite Sneakers 325 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
430377 Lite Sneakers 549 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
437947 Lite Sneakers 188 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
448827 Lite Sneakers 352 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
451935 Lite Sneakers 387 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.