From Boldcore's wiki
(Created page with "=MongoDB= ==Nothing useful== Raised on MySQL, I am new to mongo, and I need to get more familiar with the syntax. Just a random pastes from cmdline. <pre> →Insert shit: ...") |
(No difference)
|
Revision as of 08:54, 15 March 2017
MongoDB
Nothing useful
Raised on MySQL, I am new to mongo, and I need to get more familiar with the syntax. Just a random pastes from cmdline.
/* Insert shit */
> db.pers.insert("name":"Peter","age":"7","colour":"red")
/* Retrieve shit */
> db.pers.find({"name":"Peter"}).pretty()
{
"_id" : ObjectId("58c950e7fe9fddf65dd0e8d5"),
"name" : "Peter",
"age" : "7",
"colour" : "red"
}
>