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 (
    400943, 439400, 443680, 427742, 455495, 
    457174, 416538, 434799, 443084, 417214, 
    449549, 421275
  ) 
  AND cscart_product_descriptions.lang_code = 'ja'

Query time 0.00117

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 (400943,439400,443680,427742,455495,457174,416538,434799,443084,417214,449549,421275) and cscart_product_descriptions.lang_code = 'ja'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
400943 Lite Mixer 840 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
416538 Lite Phone 484 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
417214 Lite Phone 752 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
421275 Lite Router 956 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
427742 Lite Phone 249 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
434799 Lite Phone 568 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
439400 Lite Phone 125 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
443084 Lite Phone 579 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
443680 Lite Phone 156 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
449549 Lite Router 102 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
455495 Lite Phone 426 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
457174 Lite Phone 476 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.