【mongoDB】学习(二)robot 3T 学习简单的CRUD

本文介绍了MongoDB的CRUD操作,包括创建、读取、更新和删除数据的基本步骤,帮助读者掌握MongoDB数据库的基本使用。
摘要由CSDN通过智能技术生成

(二)robot 3T 学习简单的CRUD

1、create

//插入一条
db.getCollection('auth_users').insert(
{
    "userName" : "test007",
    "phone" : "13800001237",
    "password" : "123456"
})
//插入多条数据(初始化插入数据,为后面的查询做准备)
db.getCollection('auth_users').insertMany([
{
    "userName" : "test015",
    "phone" : "13800001230",
    "password" : "123456",
    "age" : 20,
    "isLive" : 0
},
{
    "userName" : "test014",
    "phone" : "13800001231",
    "password" : "123456",
    "age" : 28,
    "isLive" : 1,
    "class" : [ 
        "语文", 
        "英语"
    ]
},
{
    "userName" : "test013",
    "phone" : "13800001232",
    "password" : "123456",
    "age" : 33,
    "class" : [ 
        "语文", 
        "英语", 
        "数学"
    ]
},
{
    "userName" : "test012",
    "phone" : "13800001233",
    "password" : "123456",
    "age"
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值