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 (
    440956, 412641, 412546, 429866, 429210, 
    458201, 402063, 434025, 447605, 453641, 
    414955, 445305
  ) 
  AND cscart_product_descriptions.lang_code = 'zh'

Query time 0.00042

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 (440956,412641,412546,429866,429210,458201,402063,434025,447605,453641,414955,445305) and cscart_product_descriptions.lang_code = 'zh'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
402063 Classic Shirt 474 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
412546 Classic Shirt 120 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
412641 Classic Router 909 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
414955 Classic Shirt 553 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
429210 Classic Shirt 375 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
429866 Classic Shirt 128 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
434025 Classic Shirt 482 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
440956 Classic Router 833 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
445305 Classic Shirt 554 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
447605 Classic Shirt 513 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
453641 Classic Shirt 544 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
458201 Classic Shirt 425 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.