C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
MongoDB Create CollectionIn MongoDB, db.createCollection(name, options) is used to create collection. But usually you don?t need to create collection. MongoDB creates collection automatically when you insert some documents. It will be explained later. First see how to create collection: Syntax: db.createCollection(name, options) Here, Name: is a string type, specifies the name of the collection to be created. Options: is a document type, specifies the memory size and indexing of the collection. It is an optional parameter. Following is the list of options that can be used.
Let's take an example to create collection. In this example, we are going to create a collection name SSSIT. >use test switched to db test >db.createCollection("SSSIT") { "ok" : 1 } To check the created collection, use the command "show collections". >show collections SSSIT How does MongoDB create collection automaticallyMongoDB creates collections automatically when you insert some documents. For example: Insert a document named seomount into a collection named SSSIT. The operation will create the collection if the collection does not currently exist. >db.SSSIT.insert({"name" : "seomount"}) >show collections SSSIT If you want to see the inserted document, use the find() command. Syntax: db.collection_name.find()
Next TopicMongoDB Drop Collection
|