申論 4MongoDB 是目前使用愈來愈普遍的NoSQL 資料庫管理系統,NoSQL 的主要特色包括Schemaless, eventual consistency 和horizontal scaling㈠請說明Schemaless, eventual consistency 和horizontal scaling 的意義。(10 分)㈡假設你有一個order(訂單)的collection,包含四個欄位:cust_id(顧客id), product(產品), amount(金額), type(產品型態),以下Mongo 查詢句可用來找出衣服(clothing)類產品總購買金額超過10,000 元的顧客之顧客id 和衣服類產品購買總金額:db.orders.aggregate( [{ $match: {type: “clothing”}}{$group: {_id: “cust_id”,total: { $sum: “amount”}}}{ $match: {total: { $gt: 10000}}}])請仿以上MongoDB 語法,找出購買金額超過1,000 元的訂單中,各類產品的總購買金額。(10 分)