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 (
    407735, 436615, 428503, 417977, 418226, 
    423333, 449562, 401443, 449507, 433832, 
    409821, 434815
  ) 
  AND cscart_product_descriptions.lang_code = 'ja'

Query time 0.00052

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 (407735,436615,428503,417977,418226,423333,449562,401443,449507,433832,409821,434815) and cscart_product_descriptions.lang_code = 'ja'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
401443 Pro Grinder 430 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
407735 Pro Drone 465 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
409821 Pro Headphones 136 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
417977 Pro Drone 799 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
418226 Pro Drone 919 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
423333 Pro Grinder 298 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
428503 Pro Drone 705 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
433832 Pro Grinder 937 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
434815 Pro Headphones 151 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
436615 Pro Drone 645 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
449507 Pro Grinder 930 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
449562 Pro Grinder 305 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.