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 (
    440647, 439207, 451256, 460133, 459641, 
    419106, 460861, 423479, 433559, 440573, 
    421300, 443507
  ) 
  AND cscart_product_descriptions.lang_code = 'ja'

Query time 0.00051

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 (440647,439207,451256,460133,459641,419106,460861,423479,433559,440573,421300,443507) and cscart_product_descriptions.lang_code = 'ja'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
419106 Pro Router 661 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
421300 Pro Shirt 866 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
423479 Pro Shirt 206 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
433559 Pro Shirt 425 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
439207 Pro Phone 765 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
440573 Pro Shirt 498 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
440647 Pro Phone 711 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
443507 Pro Shirt 971 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
451256 Pro Phone 909 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
459641 Pro Router 652 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
460133 Pro Router 166 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
460861 Pro Router 734 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.