Not
Bu sayfaya erişim yetkilendirme gerektiriyor. Oturum açmayı veya dizinleri değiştirmeyi deneyebilirsiniz.
Bu sayfaya erişim yetkilendirme gerektiriyor. Dizinleri değiştirmeyi deneyebilirsiniz.
Bu işleç, bit maskesinde belirtilen bit konumlarından herhangi birinin net olduğu (yani 0) belgeleri eşleştirmek için kullanılır. İkili verilerle veya tamsayı olarak depolanan bayraklarla belgeleri sorgulamak için kullanışlıdır. Bu işleç, belirli bit desenlerine göre verimli sorgulama sağlar.
Sözdizimi
{
<field>: { $bitsAnyClear: <bitmask> }
}
Parametreler
| Parametre | Description |
|---|---|
field |
Sorgulanacak belgedeki alan. |
<bitmask> |
Her bit konumunun açık olup olmadığını denetlemek için bir konumu temsil ettiği bit maskesi (0). |
Örnekler
Stores koleksiyonundaki bu örnek belgeyi göz önünde bulundurun.
{
"_id": "0fcc0bf0-ed18-4ab8-b558-9848e18058f4",
"name": "First Up Consultants | Beverage Shop - Satterfieldmouth",
"location": {
"lat": -89.2384,
"lon": -46.4012
},
"staff": {
"totalStaff": {
"fullTime": 8,
"partTime": 20
}
},
"sales": {
"totalSales": 75670,
"salesByCategory": [
{
"categoryName": "Wine Accessories",
"totalSales": 34440
},
{
"categoryName": "Bitters",
"totalSales": 39496
},
{
"categoryName": "Rum",
"totalSales": 1734
}
]
},
"promotionEvents": [
{
"eventName": "Unbeatable Bargain Bash",
"promotionalDates": {
"startDate": {
"Year": 2024,
"Month": 6,
"Day": 23
},
"endDate": {
"Year": 2024,
"Month": 7,
"Day": 2
}
},
"discounts": [
{
"categoryName": "Whiskey",
"discountPercentage": 7
},
{
"categoryName": "Bitters",
"discountPercentage": 15
},
{
"categoryName": "Brandy",
"discountPercentage": 8
},
{
"categoryName": "Sports Drinks",
"discountPercentage": 22
},
{
"categoryName": "Vodka",
"discountPercentage": 19
}
]
},
{
"eventName": "Steal of a Deal Days",
"promotionalDates": {
"startDate": {
"Year": 2024,
"Month": 9,
"Day": 21
},
"endDate": {
"Year": 2024,
"Month": 9,
"Day": 29
}
},
"discounts": [
{
"categoryName": "Organic Wine",
"discountPercentage": 19
},
{
"categoryName": "White Wine",
"discountPercentage": 20
},
{
"categoryName": "Sparkling Wine",
"discountPercentage": 19
},
{
"categoryName": "Whiskey",
"discountPercentage": 17
},
{
"categoryName": "Vodka",
"discountPercentage": 23
}
]
}
]
}
Bu storeFeatures alan, çeşitli depolama özelliklerini temsil eden bir bit maskesi tamsayısıdır. Her bit bir özelliğe karşılık gelir:
| Parça | Değer | Özellik |
|---|---|---|
| 0 | 1 | In-Store Teslim Alma |
| 1 | 2 | Otopark |
| 2 | 4 | Tekerlekli Sandalye Erişimi |
| 3 | 8 | 24 Saat Aç |
| 4 | 16 | Pet-Friendly |
| 5 | 32 | Ücretsiz Wi-Fi |
| 6 | 64 | Tuvaletler |
| 7 | 128 | Ev Teslimi |
Örnek 1: Wi-Fi veya mağazada teslim alma olmayan mağazaları bulma
Bu sorgu, Wi-Fi VEYA mağaza içi teslim alma (bit 0 ve 5) olmayan depoları alır
db.stores.find({
storeFeatures: {
$bitsAnyClear: [0, 5]
}
}, {
_id: 1,
name: 1,
storeFeatures: 1
}).limit(5)
Eşdeğer:
db.stores.find({
storeFeatures: {
$bitsAnySet: 33
}
}, // 1 + 32
{
_id: 1,
name: 1,
storeFeatures: 1
}).limit(5)
Bu sorgu tarafından döndürülen ilk beş sonuç şunlardır:
[
{
"_id": "a715ab0f-4c6e-4e9d-a812-f2fab11ce0b6",
"name": "Lakeshore Retail | Holiday Supply Hub - Marvinfort",
"storeFeatures": 38
},
{
"_id": "7e53ca0f-6e24-4177-966c-fe62a11e9af5",
"name": "Contoso, Ltd. | Office Supply Deals - South Shana",
"storeFeatures": 86
},
{
"_id": "44fdb9b9-df83-4492-8f71-b6ef648aa312",
"name": "Fourth Coffee | Storage Solution Gallery - Port Camilla",
"storeFeatures": 222
},
{
"_id": "e6410bb3-843d-4fa6-8c70-7472925f6d0a",
"name": "Relecloud | Toy Collection - North Jaylan",
"storeFeatures": 108
},
{
"_id": "9024d615-eed0-429a-a098-6640207cc2b6",
"name": "Adatum Corporation | Paper Product Mart - Lake Coralie",
"storeFeatures": 204
}
]
İlgili içerik
- MongoDB'den Azure DocumentDB'ye geçiş seçeneklerini gözden geçirin.
- MongoDB ile özellik uyumluluğu hakkında daha fazla bilgi edinin.