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 (
    427308, 452175, 444603, 434992, 435134, 
    446266, 428321, 423625, 436076, 428627, 
    446847, 439096
  ) 
  AND cscart_product_descriptions.lang_code = 'ja'

Query time 0.00068

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 (427308,452175,444603,434992,435134,446266,428321,423625,436076,428627,446847,439096) and cscart_product_descriptions.lang_code = 'ja'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
423625 Pro Mixer 810 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
427308 Pro Laptop 937 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
428321 Pro Mixer 698 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
428627 Pro Phone 397 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
434992 Pro Mixer 335 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
435134 Pro Mixer 463 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
436076 Pro Mixer 964 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
439096 Pro Phone 544 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
444603 Pro Laptop 973 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
446266 Pro Mixer 562 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
446847 Pro Phone 476 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
452175 Pro Laptop 972 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.