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 (
    422373, 409345, 431480, 443084, 413985, 
    435197, 417214, 449549, 411236, 416666, 
    430164, 414763
  ) 
  AND cscart_product_descriptions.lang_code = 'ja'

Query time 0.00369

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 (422373,409345,431480,443084,413985,435197,417214,449549,411236,416666,430164,414763) and cscart_product_descriptions.lang_code = 'ja'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
409345 Lite Phone 564 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
411236 Lite Router 115 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
413985 Lite Phone 620 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
414763 Lite Router 338 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
416666 Lite Router 138 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
417214 Lite Phone 752 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
422373 Lite Phone 554 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
430164 Lite Router 255 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
431480 Lite Phone 565 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
435197 Lite Phone 684 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
443084 Lite Phone 579 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
449549 Lite Router 102 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.