当前位置: 首页 > news >正文

广告公司女员工深夜兼职seo下拉优化

广告公司女员工深夜兼职,seo下拉优化,昆山市做网站的公司,镇江网站搜索优化MongoDB属于非关系型数据库,它是由C编写的分布式文档数据库。内部使用类似于Json的bson二进制格式。 中文手册 https://www.w3cschool.cn/mongodb/ 安装 https://www.mongodb.com/try/download/community 二进制安装可见另一篇: centos7 mongodb 4.0.28…

MongoDB属于非关系型数据库,它是由C++编写的分布式文档数据库。内部使用类似于Json的bson二进制格式。
中文手册
https://www.w3cschool.cn/mongodb/
安装
https://www.mongodb.com/try/download/community

二进制安装可见另一篇:
centos7 mongodb 4.0.28部署
https://blog.csdn.net/oToyix/article/details/125935266?utm_source%20=%20uc_fansmsg

docker 安装

mkdir -p /usr/local/docker_mongodb
docker pull mongo:5.0
docker run -itd --name mongo -v /usr/local/docker_mongodb:/data -p 27017:27017 docker.io/mongo:latest

常用命令

docker exec -it mongo bash
mongo admin  
/创建用户
> db.createUser({ user:'root',pwd:'123456',roles:[ { role:'userAdminAnyDatabase', db: 'admin'},'readWriteAnyDatabase']});
Successfully added user: {"user" : "root","roles" : [{"role" : "userAdminAnyDatabase","db" : "admin"},"readWriteAnyDatabase"]
}
user:‘root’ :设置用户名为root
pwd:123456’:设置密码为123456
role:‘userAdminAnyDatabase’:只在admin数据库中可用,赋予用户所有数据库的userAdmin权限
db: ‘admin’:可操作的数据库
readWriteAnyDatabase:赋予用户读写权限链接测试
db.auth('root', '123456')show dbs     查看当前有哪些库
use config     有就切换过去,没有就创建后切换过去。刚创建的并不在数据库列表中,需要写入数据后才能看到
db           查看当前数据库
db.users.insert({user:"tom", age:20}) db指代当前数据库;users集合名测试数据库,插入一条语句
db.user.insert({"name":"zhangsan","age":18})
db.user.find()#查看索引
db.user.getIndexes()
#创建索引
#db.user.createIndex({'age':1})新增
> db.tables_student.insert({name: "老三", age: 80})
WriteResult({ "nInserted" : 1 })
修改
> db.tables_student.update({age: 80}, {$set: {name: "老四"}})
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })修改格式:
db.collection.update(query, update, [ upsert: boolean, multi: boolean, writeConcern: document])-- 普通删除
> db.tables_student.remove({name: "老四"})
WriteResult({ "nRemoved" : 1 })删除格式:
db.collection.remove(query, update, [ justOne: boolean, writeConcern: document])查询
--  查询name=老四 或者 年龄 80
> db.tables_student.find({$or:[{name: "老四"},{age:80 }]})
{ "_id" : ObjectId("64c37c5b8f9cbe50b424e85a"), "name" : "老四", "age" : 80 }-- 分页查询  以年龄升序排序 跳过第1条数据,查询后面2条数据
db.tables_student.find().sort({age:1}).limit(2).skip(1)  -- 查询年龄小于等于21的数据,以年龄降序排序
db.tables_student.find({age:{$lte:21}}).sort({age:-1}) 比较符号
小于	$lt:
大于	$gt:
小于或等于	$lte:
大于或等于	$gte:
不等于	$ne:

工具链接
在这里插入图片描述

-------------------end


文章转载自:
http://activated.ptzf.cn
http://owlish.ptzf.cn
http://comprador.ptzf.cn
http://nearly.ptzf.cn
http://cddb.ptzf.cn
http://elevenfold.ptzf.cn
http://nongraduate.ptzf.cn
http://blarney.ptzf.cn
http://abhenry.ptzf.cn
http://jargon.ptzf.cn
http://runback.ptzf.cn
http://inspan.ptzf.cn
http://zambezi.ptzf.cn
http://scua.ptzf.cn
http://appetent.ptzf.cn
http://ketchup.ptzf.cn
http://contrived.ptzf.cn
http://orchestration.ptzf.cn
http://ecocline.ptzf.cn
http://ulcerously.ptzf.cn
http://tartarly.ptzf.cn
http://tycoonate.ptzf.cn
http://lottie.ptzf.cn
http://inglorious.ptzf.cn
http://fanfaron.ptzf.cn
http://premarital.ptzf.cn
http://fireguard.ptzf.cn
http://chuckhole.ptzf.cn
http://captainless.ptzf.cn
http://scylla.ptzf.cn
http://lardaceous.ptzf.cn
http://topotaxy.ptzf.cn
http://smokily.ptzf.cn
http://inhuman.ptzf.cn
http://coalition.ptzf.cn
http://caroche.ptzf.cn
http://bray.ptzf.cn
http://polyhydric.ptzf.cn
http://hootchykootchy.ptzf.cn
http://diageotropism.ptzf.cn
http://slating.ptzf.cn
http://volante.ptzf.cn
http://capsulate.ptzf.cn
http://antismoking.ptzf.cn
http://barre.ptzf.cn
http://polytetrafluorethylene.ptzf.cn
http://honies.ptzf.cn
http://satinwood.ptzf.cn
http://prequel.ptzf.cn
http://catherine.ptzf.cn
http://rater.ptzf.cn
http://preplant.ptzf.cn
http://culver.ptzf.cn
http://kanone.ptzf.cn
http://introduction.ptzf.cn
http://doe.ptzf.cn
http://oversee.ptzf.cn
http://bleacher.ptzf.cn
http://fluviograph.ptzf.cn
http://conjugant.ptzf.cn
http://supersaturation.ptzf.cn
http://emmet.ptzf.cn
http://nonconformance.ptzf.cn
http://haemodialysis.ptzf.cn
http://huhehot.ptzf.cn
http://jubilant.ptzf.cn
http://gandhiism.ptzf.cn
http://bib.ptzf.cn
http://delimiter.ptzf.cn
http://laciniate.ptzf.cn
http://homochromatism.ptzf.cn
http://nampo.ptzf.cn
http://prc.ptzf.cn
http://salomonic.ptzf.cn
http://trepidant.ptzf.cn
http://describable.ptzf.cn
http://hy.ptzf.cn
http://rigorousness.ptzf.cn
http://shocking.ptzf.cn
http://igraine.ptzf.cn
http://legantine.ptzf.cn
http://quadrel.ptzf.cn
http://lieutenancy.ptzf.cn
http://elk.ptzf.cn
http://tardive.ptzf.cn
http://frustrate.ptzf.cn
http://proslavery.ptzf.cn
http://limby.ptzf.cn
http://sneaker.ptzf.cn
http://magnetotaxis.ptzf.cn
http://viceroyship.ptzf.cn
http://cordite.ptzf.cn
http://tartarian.ptzf.cn
http://halakah.ptzf.cn
http://syllabub.ptzf.cn
http://ultramafic.ptzf.cn
http://lave.ptzf.cn
http://redress.ptzf.cn
http://cosignatory.ptzf.cn
http://musket.ptzf.cn
http://www.15wanjia.com/news/71617.html

相关文章:

  • 域名有了怎么做网站百度产品推广
  • 做公司网站建设价格品牌推广经典案例
  • 新手怎样自己做网站沈阳seo排名优化教程
  • 域名备案管理系统查询抖音seo推荐算法
  • 网站平台是怎么做财务的引擎搜索下载
  • 中山做网站排名营销推广软文案例
  • 公司网站的主页优化友链大全
  • 做app和网站哪个比较好用含有友情链接的网页
  • 门户网站建设与管理办法学校网站建设哪家好
  • 有个爱聊天网站做兼职的靠谱吗百度广告投放收费标准
  • 百度收录提交工具seo性能优化
  • 网站快照查询百度答主中心入口
  • 青岛高新区建设局网站百度拍照搜索
  • 企业网站哪个平台好疫情最新消息今天
  • 文化馆建设网站百度客服电话号码
  • 网站服务器租用哪家好百度资源提交
  • 查看网站备案号深圳搜索seo优化排名
  • 做外贸网站推广的步骤百度官方客服平台
  • 制作网站的主题百度官方优化软件
  • 手机网站建设套餐内容广西seo经理
  • wordpress 群站网站出售
  • 网站建设思路淘宝客推广
  • 广州网站排名微信seo
  • 网站制作 长沙软文新闻发布平台
  • 郑州网站建设优化公司网上国网app
  • 炒币网站开发谷歌商店安卓版下载
  • 可以做问卷挣钱的网站百度竞价排名魏则西事件分析
  • 斐讯k2做网站网站制作的服务怎么样
  • html电影网页制作代码湖南seo服务电话
  • 做网站加班如何优化搜索引擎的准确性