Database.Guide

Skip to content

Beginners

  • What is a Database?
  • Database Tutorial

SQL

  • SQL Tutorial
  • SQL Reference
  • SQL Joins Tutorial
  • SQL Transactions Tutorial
  • Basic SQL Queries

Categories

  • Azure SQL Edge (17)
  • Database Concepts (99)
  • Database Tools (72)
  • DBMS (9)
  • DuckDB (145)
  • MariaDB (424)
  • Microsoft Access (17)
  • MongoDB (265)
  • MySQL (602)
  • NoSQL (8)
  • Oracle (301)
  • PostgreSQL (480)
  • Redis (210)
  • SQL (697)
  • SQL Server (1,170)
  • SQLite (298)

Category: NoSQL

MongoDB cursor.count()

Posted on December 29, 2020December 29, 2020 by Ian

In MongoDB the cursor.count() method counts the number of documents referenced by a cursor..

Note that it doesn’t actually perform the query. It simply counts and returns the number of results that would be returned by the query.

The cursor.count() method is a wrapper for the count command.

Continue reading →
MongoDB methods, what is

MongoDB db.collection.count()

Posted on December 29, 2020December 29, 2020 by Ian

In MongoDB the db.collection.count() method returns the count of documents that would match a find() query for the collection or view.

The collection part is the name of the collection or view to perform the count operation on.

Note that it doesn’t actually perform a find() operation. It simply counts and returns the number of results that match a query.

Continue reading →
MongoDB methods, what is

MongoDB count Command

Posted on December 29, 2020December 29, 2020 by Ian

In MongoDB the count aggregation command counts the number of documents in a collection or a view.

It returns a document that contains the count as well as the command status.

Continue reading →
MongoDB methods, what is

MongoDB find()

Posted on December 28, 2020December 28, 2020 by Ian

In MongoDB the db.collection.find() method selects documents in a collection or view and returns a cursor to the selected documents..

The collection part is the name of the collection or view to search.

You can use it to return all documents, just some, or just one document. You can also specify which fields should be returned.

Continue reading →
MongoDB methods, what is

MongoDB findOne()

Posted on December 28, 2020December 28, 2020 by Ian

In MongoDB the db.collection.findOne() method returns one document that satisfies the specified query criteria on the collection or view.

The collection part is the name of the collection or view to search.

Continue reading →
MongoDB methods, what is

MongoDB findOneAndDelete()

Posted on December 28, 2020December 28, 2020 by Ian

In MongoDB the db.collection.findOneAndDelete() method deletes a single document, and returns the deleted document.

It deletes the first matching document in the collection that matches the filter. The sort parameter can be used to influence which document is deleted.

The collection part is the name of the collection with which to delete the document from.

Continue reading →
MongoDB methods, what is

MongoDB deleteOne()

Posted on December 27, 2020December 27, 2020 by Ian

In MongoDB the db.collection.deleteOne() method removes a single document from a collection. In other words, it deletes it.

The collection part is the name of the collection with which to remove the document from.

Continue reading →
MongoDB methods, what is

MongoDB deleteMany()

Posted on December 27, 2020December 27, 2020 by Ian

In MongoDB the db.collection.deleteMany() method removes all documents that match the filter from a collection. In other words, it deletes them.

The collection part is the name of the collection with which to remove the documents from.

Continue reading →
MongoDB methods, what is

MongoDB remove()

Posted on December 27, 2020December 27, 2020 by Ian

In MongoDB the db.collection.remove() method removes documents from a collection. In other words, it deletes them.

The collection part is the name of the collection with which to remove the documents from.

You can delete all documents, some documents, or a single document as required.

Continue reading →
MongoDB methods, what is

MongoDB bulkWrite()

Posted on December 26, 2020December 26, 2020 by Ian

In MongoDB the db.collection.bulkWrite() method performs multiple write operations with controls for order of execution.

Bulk write operations affect a single collection. The collection part is the name of the collection with which to perform the operations against.

Continue reading →
MongoDB methods, what is
  • «
  • 1
  • …
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • »

About Database.Guide | Privacy Policy