Docs Menu
Docs Home
/
MongoDB Atlas
/ /

日用店サンプル データセット

項目一覧

  • コレクション
  • Indexes
  • サンプルドキュメント

sample_suppliesデータベースには架空の事務用品会社のデータが含まれています。 会社は顧客情報と販売データを追跡しており、世界全体に複数の店舗を展開しています。

Atlas が提供するサンプルデータをクラスターにロードする方法について学ぶには、サンプルデータのロード」を参照してください。

このデータベースには、sales という単一のコレクションが含まれています。

sample_supplies.salesコレクション内の各ドキュメントは、日用品会社が管理する店舗からの 1 つの販売を表します。 各ドキュメントには、購入された商品、購入した顧客に関する情報、販売に関するその他の詳細が含まれています。

sample_supplies.sales コレクションには、以下のインデックスが含まれます。

名前
Index
説明
_id_
{ "_id": 1 }
_idフィールドのプライマリキー インデックス。
{
"_id": {
"$oid": "5bd761dcae323e45a93ccfe8"
},
"saleDate": {
"$date": {
"$numberLong": "1427144809506"
}
},
"items": [
{
"name": "notepad",
"tags": [
"office",
"writing",
"school"
],
"price": {
"$numberDecimal": "35.29"
},
"quantity": {
"$numberInt": "2"
}
},
{
"name": "pens",
"tags": [
"writing",
"office",
"school",
"stationary"
],
"price": {
"$numberDecimal": "56.12"
},
"quantity": {
"$numberInt": "5"
}
},
{
"name": "envelopes",
"tags": [
"stationary",
"office",
"general"
],
"price": {
"$numberDecimal": "19.95"
},
"quantity": {
"$numberInt": "8"
}
},
{
"name": "binder",
"tags": [
"school",
"general",
"organization"
],
"price": {
"$numberDecimal": "14.16"
},
"quantity": {
"$numberInt": "3"
}
}
],
"storeLocation": "Denver",
"customer": {
"gender": "M",
"age": {
"$numberInt": "42"
},
"email": "cauho@witwuta.sv",
"satisfaction": {
"$numberInt": "4"
}
},
"couponUsed": true,
"purchaseMethod": "Online"
}

戻る

レストラン