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 (
    403213, 403380, 410298, 412099, 417504, 
    408359, 457224, 456672, 427115, 420402, 
    460004, 409393
  ) 
  AND cscart_product_descriptions.lang_code = 'ja'

Query time 0.00048

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 (403213,403380,410298,412099,417504,408359,457224,456672,427115,420402,460004,409393) and cscart_product_descriptions.lang_code = 'ja'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
403213 Lite Sneakers 896 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
403380 Lite Sofa 200 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
408359 Lite Sofa 519 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
409393 Lite Sofa 808 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
410298 Lite Sofa 285 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
412099 Lite Sofa 408 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
417504 Lite Sofa 409 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
420402 Lite Sofa 703 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
427115 Lite Sofa 635 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
456672 Lite Sofa 596 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
457224 Lite Sofa 533 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
460004 Lite Sofa 712 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.