collection.find(eq("item", null));
دستور فوق در mongodb دو عملیات پوشش میده:
۱- فیلد "item" وجود داشته باشه و مقدارش null باشه.
۲- فیلد "item" وجود نداشته باشه
Query for Null or Missing Fields
collection.find(eq("item", null));
دستور فوق در mongodb دو عملیات پوشش میده:
۱- فیلد "item" وجود داشته باشه و مقدارش null باشه.
۲- فیلد "item" وجود نداشته باشه
Query for Null or Missing Fields
Collections in MongoDB is equivalent to the tables in RDBMS.
Documents in MongoDB is equivalent to the rows in RDBMS.
Fields in MongoDB is equivalent to the columns in RDBMS.