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 (
    427920, 428694, 454298, 452982, 456262, 
    419210, 457460, 402409, 423506, 458274, 
    436405, 403215
  ) 
  AND cscart_product_descriptions.lang_code = 'ja'

Query time 0.00090

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 (427920,428694,454298,452982,456262,419210,457460,402409,423506,458274,436405,403215) and cscart_product_descriptions.lang_code = 'ja'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
402409 Max Chair 168 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
403215 Max Chair 693 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
419210 Max Camera 935 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
423506 Max Chair 267 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
427920 Max Bottle 633 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
428694 Max Camera 210 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
436405 Max Chair 539 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
452982 Max Camera 807 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
454298 Max Camera 738 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
456262 Max Camera 866 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
457460 Max Camera 957 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
458274 Max Chair 501 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.