close

MongoDB 和 SQL 術語對照

MongoDB SQL
database database
collection table
document row

 

# 進入 mongo shell
centos:~ # mongo

> help                         // 顯示 help
> show dbs                 // 顯示 database
> use <database>        // 使用 database
> db                           // 顯示正在使用的 database
> show collections       // 顯示 collection

> db.help()
> db.stats()

// 查詢 document
> db.<collection>.findOne()
> db.<collection>.find().limit(1).pretty()

arrow
arrow
    文章標籤
    CentOS MongoDB
    全站熱搜

    wsunccake 發表在 痞客邦 留言(0) 人氣()