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 (
    414680, 433452, 427170, 404004, 456880, 
    452598, 453013, 426987, 402780, 411115, 
    437229, 424420
  ) 
  AND cscart_product_descriptions.lang_code = 'ja'

Query time 0.00134

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 (414680,433452,427170,404004,456880,452598,453013,426987,402780,411115,437229,424420) and cscart_product_descriptions.lang_code = 'ja'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
402780 Max Drone 652 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
404004 Max Drone 183 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
411115 Max Drone 865 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
414680 Max Chair 733 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
424420 Max Grinder 290 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
426987 Max Drone 472 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
427170 Max Chair 905 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
433452 Max Chair 747 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
437229 Max Grinder 208 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
452598 Max Drone 274 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
453013 Max Drone 406 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
456880 Max Drone 189 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.