샘플 보급품 상점 데이터 세트
sample_supplies
데이터베이스에는 모의 사무용품 회사의 데이터가 포함되어 있습니다. 이 회사는 고객 정보와 판매 데이터를 추적하며 전 세계에 여러 매장을 두고 있습니다.
Atlas 에서 제공하는 샘플 데이터를 클러스터 에 로드하는 방법을 학습 보려면 샘플 데이터 로드를 참조하세요.
컬렉션
이 데이터베이스에는 sales
라는 단일 컬렉션이 포함되어 있습니다.
sample_supplies.sales
컬렉션의 각 문서는 사무용품 회사에서 운영하는 매장의 단일 판매를 나타냅니다. 각 문서에는 구매한 품목, 구매한 고객에 대한 정보 및 판매와 관련된 기타 여러 세부정보가 포함되어 있습니다.
Indexes
이 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" }