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 (
    454777, 444113, 417555, 428819, 454049, 
    459252, 405167, 401806, 425534, 458860, 
    447690, 422606
  ) 
  AND cscart_product_descriptions.lang_code = 'ja'

Query time 0.00050

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 (454777,444113,417555,428819,454049,459252,405167,401806,425534,458860,447690,422606) and cscart_product_descriptions.lang_code = 'ja'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
401806 Prime Shirt 347 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
405167 Prime Shirt 337 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
417555 Prime Router 204 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
422606 Prime Shirt 586 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
425534 Prime Shirt 357 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
428819 Prime Router 886 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
444113 Prime Router 164 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
447690 Prime Shirt 499 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
454049 Prime Shirt 202 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
454777 Prime Phone 925 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
458860 Prime Shirt 454 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
459252 Prime Shirt 303 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.