mongodb 显示 show tables 找不到

`> use chem
switched to db chem

show collection
Sun Dec 8 11:28:42 uncaught exception: don't know how to show [collection]
show tables
db.createCollection("runoob")
{ "ok" : 1 }
show tables
show dbs
chem 0.000030517578125GB
local 0.00006103515625GB
test 0.00000762939453125GB
use TT
switched to db TT
show db.createCollection("ss")
Sun Dec 8 11:32:06 SyntaxError: missing ) after argument list (shellhelp2):1
db.createCollection("ss")
{ "ok" : 1 }
db.ss.insert({"sss":"qweqweq"})
show tables
show dbs
TT 0.00000762939453125GB
chem 0.000030517578125GB
local 0.00006103515625GB
test 0.00000762939453125GB
use TT
switched to db TT
show tables
show collections
show collectio`

image.png

阅读 4.7k
2 个回答

先确定是否有这个库show dbs,再用use库查表,不能列出的库,意味着要么没创建,要么是空库(即内无表的情况)。
你给出的TT明显是一个空库。

image.png

注意意观察abc库是不存在的, 在该库内show tables必定无表,和你的TT库一样的道理。

show collections哦,少个 's'

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏