Skip to content

DOCS-7624: Add Note about _id in SQL vs Mongo #2599

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions source/reference/sql-comparison.txt
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,14 @@ Select
The following table presents the various SQL statements related to
reading records from tables and the corresponding MongoDB statements.

.. note::

The :method:`~db.collection.find()` method always includes the ``_id``
field in the returned documents unless specifically excluded through
:ref:`projection<projection>`. Some of the SQL queries below may include an
``_id`` field to reflect this, even if the field is not included in the
corresponding :method:`~db.collection.find()` query.

.. include:: /includes/table/sql-to-mongo-select-examples.rst

For more information, see
Expand Down