找到6705 篇关于数据库的文章

如何在 MongoDB 中创建并显示新创建的数据库?

AmitDiwan
更新于 2020 年 5 月 12 日 08:53:29

92 次浏览

要创建一个新数据库,你需要使用以下 USE 命令:-use yourDatabaseName;要显示所有数据库,你需要使用 show 命令。语法如下:-show dbs;让我们实现上述语法以创建数据库:-> use onlinecustomertracker;改为 db onlinecustomertracker要显示新创建的数据库,你需要创建一个集合。以下为查询:-> db.example.insert({Value:10}); WriteResult({ "nInserted" : 1 })使用 find() 方法显示集合中的所有文档:-> db.example.find();这将产生以下输出:-{ "_id" : ObjectId("5e9dafade3c3cd0dcff36a4f"), "Value" : 10 ... 阅读更多

在 MongoDB 中执行嵌套文档值搜索?

AmitDiwan
更新于 2020 年 5 月 12 日 08:50:43

102 次浏览

如需搜索值,请在 MongoDB 中使用 $match。我们来创建一个包含文档的集合 −> db.demo648.insertOne( ...    { ...       StudentInformation: ...       [ ...          { ...             Name:"John", ...             CountryName:"US" ...          }, ...          { ...             Name:"David", ...             CountryName:"AUS" ...          }, ...          { ...             Name:"Chris", ... ... 阅读更多

MongoDB 聚合以合并或整合字段,然后进行计数?

AmitDiwan
更新于 2020 年 5 月 12 日 08:47:14

574 次浏览

如需合并或整合字段,然后执行计数,请使用 $group 以及 $sum 和 $sort。我们来创建一个包含文档的集合 −> db.demo647.insertOne({"Subject":"MySQL"}); {    "acknowledged" : true,    "insertedId" : ObjectId("5e9c86316c954c74be91e6ee") } > db.demo647.insertOne({"Subject":"MongoDB"}); {    "acknowledged" : true,    "insertedId" : ObjectId("5e9c86356c954c74be91e6ef") } > db.demo647.insertOne({"Subject":"MySQL"}); {    "acknowledged" : true,    "insertedId" : ObjectId("5e9c86376c954c74be91e6f0") } > db.demo647.insertOne({"Subject":"SQL Server"}); {    "acknowledged" : true,    "insertedId" : ObjectId("5e9c86406c954c74be91e6f1") } > db.demo647.insertOne({"Subject":"MongoDB"}); {    "acknowledged" : true,    "insertedId" : ObjectId("5e9c86436c954c74be91e6f2") } > db.demo647.insertOne({"Subject":"PL/SQL"}); {    "acknowledged" : true,    "insertedId" : ObjectId("5e9c864b6c954c74be91e6f3") } > db.demo647.insertOne({"Subject":"MongoDB"}); {   ... 阅读更多

将 MongoDB 中的不同元素移至另一个数组?

AmitDiwan
更新于 2020 年 5 月 12 日 08:43:11

245 次浏览

使用 forEach 并检查不同的元素,然后使用 save() 以及某些条件。我们来创建一个包含文档的集合 −> db.demo646.insertOne( ...    { ... ...       "Information": [ ...          { id: 100, Name:"Chris" }, ...          { id: 100, Name:"Chris" }, ...          { id: 101, Name:"David" }, ...          { id: 100, Name:"Chris" } ...       ], ...       "different": [] ...    } ... ) {    "acknowledged" : true,    "insertedId" : ObjectId("5e9c82ec6c954c74be91e6ed") }显示 ... 阅读更多

MongoDB 查询以存储文件名和位置?

AmitDiwan
更新于 2020 年 5 月 12 日 08:37:32

483 次浏览

要进行存储,我们来看看一个示例,使用文档创建一个集合 -> db.demo645.insertOne( ...    { ...       'fileName' : 'MongoDB Program', ...       'fileLocation':'C:/users/workspace/AllMongoDBProgram/MongoDB Program' ...    } ... ); {    "acknowledged" : true,    "insertedId" : ObjectId("5e9c78f36c954c74be91e6e8") } > > db.demo645.insertOne( ...    { ...       'fileName' : 'SumOfTwoNumbers.java', ...       'fileLocation':'E:/eclipseWorkspace/AllJavaPrograms/SumOfTwoNumbers.java' ...    } ... ); {    "acknowledged" : true,    "insertedId" : ObjectId("5e9c78f36c954c74be91e6e9") } > db.demo645.insertOne( ...    { ...       'fileName' : 'Script.sql', ...       'fileLocation':'C:/MySQLQuery/Script.sql' ...    } ... 了解更多

如何更新时间戳,并将其设置为 MongoDB 中的当前日期?

AmitDiwan
更新于 2020 年 5 月 12 日 08:35:35

2K+ 查看

要在 MongoDB 中进行更新,请使用 update()。若要将其设置为当前日期,你需要获取当前日期 -var todayDate = new Date();我们首先使用文档创建一个集合 -> db.demo644.insertOne({"ShippingDate": new ISODate("2018-04-19")}); {    "acknowledged" : true,    "insertedId" : ObjectId("5e9c76896c954c74be91e6e6") } > db.demo644.insertOne({"ShippingDate": new ISODate("2019-01-10")}); {    "acknowledged" : true,    "insertedId" : ObjectId("5e9c76966c954c74be91e6e7") }使用 find() 方法显示集合中的所有文档 -> db.demo644.find();这会产生以下输出 -{ "_id" : ObjectId("5e9c76896c954c74be91e6e6"), "ShippingDate" : ISODate("2018-04-19T00:00:00Z") } { "_id" : ObjectId("5e9c76966c954c74be91e6e7"), "ShippingDate" : ISODate("2019-01-10T00:00:00Z") }以下是用于更新时间戳的查询 -> var todayDate ... 了解更多

在 MongoDB 中更新嵌套嵌入式文档?

AmitDiwan
更新于 2020 年 05 月 12 日 08:31:10

919 查看

要在 MongoDB 中更新嵌套的文档,请使用 UPDATE() 和位置 ($) 运算符。让我们使用文档创建一个集合 -> db.demo643.insertOne({ ...    details : [ ...       { ...          "CountryName":"US", ...          StudentDetails:[{Name:"Chris"}, {SubjectName:"MySQL"}] ...       }, ... ...       { ...          "CountryName":"UK", ...          StudentDetails:[{Name:"Bob"}, {SubjectName:"Java"}] ...       } ...    ] ... } ... ) {    "acknowledged" : true,    "insertedId" : ObjectId("5e9c737f6c954c74be91e6e3") }使用 find() 方法显示集合中的所有文档 ... 了解更多

MongoDB 查询获取文档中特定名称列表,其中字段的值是一个数组

AmitDiwan
更新于 2020 年 5 月 12 日 08:24:42

221 查看

为此,请使用 $all。$all 运算符会选择一个字段值为包含所有指定元素的数组的那些文档。让我们使用文档创建一个集合 -> db.demo642.insertOne( ...    { ...       _id:1, ...       ListOfNames:["Robert", "John"] ...    } ... ); { "acknowledged" : true, "insertedId" : 1 } > db.demo642.insertOne( { _id:2, ListOfNames:["Robert", "Chris"] } ); { "acknowledged" : true, "insertedId" : 2 }使用 find() 方法显示集合中的所有文档 -> db.demo642.find();这会产生以下输出 -{ "_id" : 1, "ListOfNames" ... 了解更多

在 MongoDB 中有没有列出集合的方法?

AmitDiwan
更新于 2020 年 5 月 12 日 08:19:33

134 查看

要列举集合,请在 MongoDB 中使用 getCollectionNames()。以下是语法 - db.getCollectionNames(); 让我们实现以上语法以从 test 数据库中列举所有集合名称 - > db.getCollectionNames(); 这将产生以下输出 - [    "arrayDemo",    "arrayFieldIsNotEmptyDemo",    "characterInFieldsDemo",    "checkFieldExistDemo",    "compareTwoFields",    "comparingTwoFieldsDemo",    "convertTextToDateTypeDemo",    "countGroupByDemo",    "demo407",    "demo408",    "demo409",    "demo410",    "demo411",    "demo412",    "demo413",    "demo414",    "demo415",    "demo416",    "demo417",    "demo418",    "demo419",    "demo543",    "demo544",    "demo545",    "demo546",    "demo547",    "demo548",    "demo549",    "demo550",    "demo551",    "demo552",    "demo553", ... 阅读更多内容

从 MongoDB 中的嵌入数组中获取特定元素?

AmitDiwan
更新于 12-05-2020 08:15:34

359 次浏览

要获取特定元素,请使用点符号与 $match 一起使用。让我们创建一个包含文档的集合 - > db.demo641.insert( ...    { ...       ProductId:101, ...       "ProductInformation": ...      (                            [ ...          { ...             ProductName:"Product-1", ...             "ProductPrice":1000 ...          }, ...          { ...             ProductName:"Product-2", ...             "ProductPrice":500 ... ... 阅读更多内容

广告