show collections好像不能用这样。但是你可以通过 db.getCollectionNames获得个数组,以后用javascript的filter选择collections: db.getCollectionNames().filter(function(el) {return el.indexOf('xxx') !== -1})有用1 回复 查看全部 3 个回答 推荐问题 php用这种方法做json接口合适不? 一个php文件做前端的接口,...
db.adminCommand(nameOrDocument)-switchesto'admin'db,andruns command[just calls db.runCommand(...)]db.aggregate([pipeline], {options})-performs a collectionless aggregationonthisdatabase;returnsacursordb.auth(username, password) db.cloneDatabase(fromhost)-deprecated db.commandHelp(name)returnsthe hel...
db.resetError() db.runCommand(cmdObj) run a database command. if cmdObj is a string, turns it into { cmdObj : 1 } db.setProfilingLevel(level) 0=off 1=slow 2=all db.shutdownServer() db.version() current version of the server --- 如果想知道当前数据库下的表或者表collection支持哪些...
show collections好像不能用这样。但是你可以通过 db.getCollectionNames获得个数组,以后用javascript的filter选择collections: db.getCollectionNames().filter(function(el) {return el.indexOf('xxx') !== -1}) 反对 回复 2018-08-26 Qyouu TA贡献1786条经验 获得超11个赞 除了以上方法外,还可以用db.getCo...
这些是 MongoShell 支持的命令和对应释义。例如 show dbs 命令可以列出所有数据库的名称,show collections 命令可以列出当前数据库中的集合。更多快捷键可查阅官方文档 Command Helpers。 3.2.4 退出 MongoShell ...
show collections : 显示当前数据库中的集合 show users :显示用户 use db_name : 切换数据库,和mysql中的切换数据库是一样 db.help() :里面有很多命令,可以好好研究研究 数据库相关 1.help db.help() db.集合名.help() db.集合名.find().help(); ...
show collections是命令,而不是函数。函数有返回值,命令没有。
To help improve our products, anonymous usage data is collected and sent to MongoDB periodically (https://www.mongodb.com/legal/privacy-policy). You can opt-out by running the disableTelemetry() command. --- The server generated these startup warnings when booting 2023-...
db.commandHelp(name)returns the helpforthe command db.copyDatabase(fromdb,todb,fromhost)复制数据库 db.createCollection(name,{size:...,capped:...,max:...})创建表 db.currentOp()displays the current operationinthe db db.dropDatabase()删除当前数据库 ...
你需要先use到那个库 use weibo show collections db.users.find();...