Tip of the day: CRUD standard vs SQL vs MongoDB

Submitted by Frederic Marand on

Just noticed this little gem on a 10Gen course, about the respective names of the CRUD operations in common practice, versus the equivalent operations in SQL and in MongoDB. Links point to Wikipedia for SQL and the relevant MongoDB documentation page for the MongoDB column.

Theory SQL MongoDB
Create INSERT insert()
Retrieve SELECT find()
Update UPDATE update()
Delete DELETE remove()

By the way, if you are doing (or considering doing) any serious MongoDB work and are not yet an expert on it, you have to do yourself a favor and take advantage of the free courses now provided by 10Gen at https://education.10gen.com on the basis of the edX platform. Courses are available for DBA training, as well as Java, Node.js and Python developers.