# start mongo db
>mongo
# list data base
>show dbs
# use db
>use adv_pms_development
# show all collections(tables) in current db.
>show collections
# list all elements in 'projects' table
>db.projects.find()
# find the specified element.
>db.projects.find({key: value})
# show the help cmd.
>db.projects.help()
# remove the element which with {key: value}
>db.projects.remove({name: ‘sss’})
# update the value
>db.tasks.update({project: 'sbx Bonus 4.4'}, {$set: {project: ''}})
# exit mongo db.
>exit