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 (
    460888, 433987, 409759, 406480, 437686, 
    423559, 424334, 460558, 456062, 432907, 
    404813, 447269
  ) 
  AND cscart_product_descriptions.lang_code = 'ja'

Query time 0.00039

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 (460888,433987,409759,406480,437686,423559,424334,460558,456062,432907,404813,447269) and cscart_product_descriptions.lang_code = 'ja'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
404813 Pro Bottle 991 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
406480 Pro Bottle 103 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
409759 Pro Book 720 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
423559 Pro Bottle 279 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
424334 Pro Bottle 374 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
432907 Pro Bottle 870 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
433987 Pro Book 344 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
437686 Pro Bottle 125 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
447269 Pro Camera 278 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
456062 Pro Bottle 758 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
460558 Pro Bottle 704 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
460888 Pro Book 200 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.