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 (
    406336, 455410, 458998, 417702, 434266, 
    402632, 403587, 450242, 427198, 448492, 
    425648, 452408
  ) 
  AND cscart_product_descriptions.lang_code = 'ja'

Query time 0.00057

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 (406336,455410,458998,417702,434266,402632,403587,450242,427198,448492,425648,452408) and cscart_product_descriptions.lang_code = 'ja'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
402632 Eco Router 470 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
403587 Eco Router 490 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
406336 Eco Phone 552 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
417702 Eco Router 423 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
425648 Eco Shirt 258 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
427198 Eco Router 903 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
434266 Eco Router 443 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
448492 Eco Shirt 212 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
450242 Eco Router 712 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
452408 Eco Shirt 628 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
455410 Eco Phone 878 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
458998 Eco Router 223 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.