首页 > 代码库 > 新标记1

新标记1

md c:\boot 新建 cls 清屏 date time设置日期 netstat -a 显示端口 at 23:00 shutdown /s /t 1 设置关机
dxdiag 看到所有设备 msconfig启动项 win+d 显示桌面 ALT+print screen截取当前窗口 f2重命名

批处理文件:自动打开DOS 执行


database 数据库 collection 集合、数据库表 document文档、数据记录行 field 数据字段/域
primary key 主键
集合 就是MongoDB文档组,集合存在于数据库中,
文档 键值对
Collection 聚集集合

创建一个聚集集合 db.createCollection


db.users.save({name:‘zhuangsan‘,age:25,});添加
db.users.update 修改
db.users.remove({age:132}); 删除
db.userInfo.find() 查询所有记录 db.userInfo.distinct() 查询去重后的数据
聚集集合查询
db.userInfo.find()查询指定列

新标记1