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 (
    457730, 405506, 403093, 403487, 422455, 
    444903, 415211, 424718, 442558, 432101, 
    447573, 408162
  ) 
  AND cscart_product_descriptions.lang_code = 'ja'

Query time 0.00127

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 (457730,405506,403093,403487,422455,444903,415211,424718,442558,432101,447573,408162) and cscart_product_descriptions.lang_code = 'ja'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
403093 Ultra Bottle 312 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
403487 Ultra Bottle 440 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
405506 Ultra Bottle 282 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
408162 Ultra Chair 993 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
415211 Ultra Bottle 706 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
422455 Ultra Bottle 608 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
424718 Ultra Chair 817 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
432101 Ultra Chair 966 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
442558 Ultra Chair 961 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
444903 Ultra Bottle 640 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
447573 Ultra Chair 977 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
457730 Ultra Book 986 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.