Mongodb May 16th, 2017 1:28 pm « Go back to Cheatsheets Access Database Empty Table Access Database 1 2 3 4 5 6 7 8 9 10 11 12 13 14 # activate mongo mongo # returns a list of available show dbs # activate the db you want to view use <db-name> # view tables show collections # view table content db.tablename.find() Empty Table 1 2 # remove table contents db.stickynotes.remove({}) More details - https://www.tutorialspoint.com/mongodb/index.htm