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 (
    428274, 411586, 428067, 405254, 442920, 
    416803, 433221, 427872, 419871, 439094, 
    415819, 415673
  ) 
  AND cscart_product_descriptions.lang_code = 'ja'

Query time 0.00060

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 (428274,411586,428067,405254,442920,416803,433221,427872,419871,439094,415819,415673) and cscart_product_descriptions.lang_code = 'ja'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
405254 Classic Grinder 938 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
411586 Classic Grinder 890 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
415673 Classic Headphones 432 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
415819 Classic Headphones 298 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
416803 Classic Grinder 963 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
419871 Classic Headphones 195 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
427872 Classic Headphones 136 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
428067 Classic Grinder 901 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
428274 Classic Grinder 847 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
433221 Classic Headphones 113 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
439094 Classic Headphones 220 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
442920 Classic Grinder 938 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.