⟩ Tell me how to retrieve records from a table in MongoDB database?
SELECT statement is used to retrieve records from a table in MongoDB database. You can choose, single, multiple or all records from a table by using different keywords.
Syntax:
SELECT expressions
FROM tables
[WHERE conditions];