企业AI知识库

轻易云AI知识库是一个为企业量身打造的智能解决方案,它能够进行机器人角色设定、知识库训练、发布/分享机器人,同时还带有AI智能对话功能,可以设定多种AI行业场景。适用于企业智能客服、企业智能文档、专家顾问助理等多种企业级商业场景,具有较大的商业使用价值。

了解更多,请访问轻企AI知识库官网

AI智能体

AI智能体是轻易云知识库的核心组成部分,它通过录入文档或问答来创建知识库,让机器人学习。根据机器人训练情况,企业可以实时删除或替换文档,以保持知识库的更新和准确性。AI智能体支持多种角色设定,如客服、销售、培训师、营销人员、行业专家等,以满足不同业务需求。

了解更多,请访问轻易云知识库体验中心

MongoDB写法介绍

简单介绍

MongoDB是一个基于分布式文件存储的数据库
由C++语言编写,旨在为WEB应用提供可扩展的高性能数据存储解决方案。
MongoDB是一个介于关系数据库和非关系数据库之间的产品,是非关系数据库当中功能最丰富,最像关系数据库的。
它支持的数据结构非常松散,是类似json的bson格式,因此可以存储比较复杂的数据类型。
Mongo最大的特点是它支持的查询语言非常强大,其语法有点类似于面向对象的查询语言,几乎可以实现类似关系数据库单表查询的绝大部分功能,而且还支持对数据建立索引

查询方法

查询所有

MongoDB	db.getCollection('user').find({});	 
MySQL	select * from user;	 

查询条件:=

MongoDB	db.getCollection('user').find({"uclass":"A"});	 
MySQL	select * from user where uclass = 'A';	
``` 
查询条件:like	
```json
MongoDB	db.getCollection('user').find({"name":/Ba/});	 
MySQL	select * from user where name like '%Ba%';	 

查询条件:distinct

MongoDB	db.getCollection('user').distinct("name");	 
MySQL	select distinct uclass from user u;	 

查询条件:$gt

MongoDB	db.getCollection('user').find({"age":{$gt:16}});	greater than  >
MySQL	select * from user where age >16;	 

查询条件:$gte

MongoDB	db.getCollection('user').find({"age":{$gte:16}});	gt equal  >=
MySQL	select * from user where age >= 16;	
``` 
查询条件:$lt	
```josn
MongoDB	db.getCollection('user').find({"age":{$lt:16}});	less than  <
MySQL	select * from user where age < 16;	 

查询条件:$lte

MongoDB	db.getCollection('user').find({"age":{$lte:16}});	lt equal  <=
MySQL	select * from user where age <= 16;	 

查询条件:$ne

MongoDB	db.getCollection('user').find({"age":{$ne:16}});	not equal  !=
MySQL	select * from user where age != 16;	
``` 
查询条件:$eq	
```josn
MongoDB	db.getCollection('user').find({"age":{$eq:16}});等效于:db.getCollection('user').find({"age":16});	
MySQL	select * from user where age = 16;	 

查询条件:in

MongoDB	db.getCollection('user').find({"uclass":{$in:['A', 'B']}});	 
MySQL	select * from user where uclass in ('A', 'B');	
``` 
查询条件:and	
```josn
MongoDB	db.getCollection('user').find({"uclass":"B", "age":{$gt:16}});	 
MySQL	select * from user where uclass = 'B' and age > 16;
```	 
查询条件:or	
```josn
MongoDB	db.getCollection('user').find({$or:[{"uclass":"A"},{"class":"B"}]});	 
MySQL	select * from user where uclass = 'A' or  uclass = 'B';	 

查询条件:时间

MongoDB	db.getCollection('user').find({"birthday":{$gt: new Date("2008-08-14T06:24:40.110Z"), $lt: new Date("2015-08-14T06:14:40.089Z")}});	 
MySQL	select * from user where birthday > '2008-08-14 06:24:40' and birthday < '2015-08-14 06:14:40';
```	 
查询条数:count	
```josn
MongoDB	db.getCollection('user').find({"uclass":"A"}).count();	 
MySQL	select count(1) from user where uclass = 'A';	 

查询条件:sort升序

MongoDB	db.getCollection('user').find({}).sort({"age":1});	 
MySQL	select * from user order by age asc;	 

查询条件:sort降序

MongoDB	db.getCollection('user').find({}).sort({"age":-1});	 
MySQL	select * from user order by age desc;	 

聚合查询:count单列

MongoDB	db.getCollection('user').aggregate([{$group:{_id:"$uclass",num:{$sum:1}}}]);	 
MySQL	select uclass, count(1) as num from user group by uclass;	 

聚合查询:count多列

MongoDB	db.getCollection('user').aggregate([{$group:{_id:{uclass:"$uclass", age:"$age"},num:{$sum:1}}}]);	 
MySQL	select uclass, age, count(1) as num from user group by uclass, age;
```	 
分页查询:limit n	
```josn
MongoDB	db.getCollection('user').find({}).limit(5);	查询前n条
MySQL	select * from user limit 5;	 

分页查询:limit m,n

MongoDB	db.getCollection('user').find({}).limit(5).skip(5);	查询n条,从第m条开始
MySQL	select * from user limit 5,5;	 

查询指定字段

MongoDB	db.getCollection('user').find({}, {userId:1, name:1});	第一个{}为查询条件
MySQL	select userId, name from user;
```	 
排查指定字段	
```josn
MongoDB	db.getCollection('user').find({}, {dataStatus:0, _id:0});	第一个{}为查询条件
MySQL	无

还没写完

热门文章

实现实时监控和告警系统,保障数据集成无缝对接

2024-11-04 21:42:22

高效分销业务管理:吉客云与金蝶云星空的数据同步方案

2024-12-25 18:45:00

调用金蝶云星空接口executeBillQuery实现数据对接

2021-12-30 21:13:10

利用接口优化:金蝶与管易云的数据互通策略

2025-05-27 22:14:42

数据高效流通:管易云至金蝶云星空集成案例

2025-01-04 11:28:13

如何利用轻易云平台优化供应链采购订单处理

2024-12-09 07:38:43

金蝶云星空数据高效上传至药监局的技术方案

2025-02-15 11:27:13

调用领星ERP接口实现调整单数据的无缝对接

2021-11-28 21:15:02

通过轻易云调用旺店通接口获取调拨单数据的详细流程

2022-12-03 21:42:45

解决小满CRM与金蝶云数据对接难题的高效方案

2024-12-25 12:17:29

调用旺店通·企业奇门接口获取客户退款数据及其处理方法

2022-03-28 11:50:41

技术解密:利用API实现旺店通订单数据高速处理

2023-03-01 17:03:03

金蝶云星空与MySQL数据对接实例:解决方案与技术细节

2024-12-24 02:41:48

调用金蝶云星辰V2接口获取授权信息及数据加工

2023-01-12 18:30:01

轻易云助力企业数据集成:吉客云对接金蝶云星空

2024-12-22 02:17:46

利用轻易云实现钉钉与金蝶云星空之间的数据流转

2022-02-04 17:38:12

轻易云平台助力领星ERP与金蝶云星空数据对接

2025-02-10 11:28:04

实现旺店通销售出库单与金蝶云星空的数据同步

2024-12-06 02:26:21

使用轻易云实现金蝶云星空数据对接:技术挑战与解决方案

2023-09-25 11:36:06

调用金蝶云星空接口获取并加工库存数据的详细指南

2024-10-17 11:17:05

金蝶云星空对接外部吉客云·奇门系统

2023-01-26 10:05:58

轻易云集成平台和金蝶云星空单据接口集成

2023-01-26 10:05:57

从旺店通·旗舰奇门到金蝶云星空通过接口集成数据

2023-01-26 10:05:56

金蝶云星空对接外部有赞云系统

2023-01-26 10:05:55

旺店通·企业奇门接口与金蝶云星空接口实现互通

2023-01-26 10:05:55