MongoDB查询语句 --查询近三个月的客户使用量  aggregate:使用聚合  match:过滤  group分组   -- mysql中select org_code as 近三个月使用商户 from pomelo_backend_production.landi_configurations where created_at between '2018-03-22 00:00:00' and '2018-06-22 00:00:00'GROUP BY org_code; --mong…
T-SQL简单查询语句 简单查询: 1.最简单查询(查所有数据) select * from 表名: 注:* 代表所有列 select * from info 2.查询指定列 select code,name from info 3.修改结果集的列名 select code as '代号',name as '姓名' from info 4.条件查询 select * from info where code='p003' 5.多条件查询 查询info表中code为p003或者nation为n00…
看了些资料,对应只需要知道怎么查询和使用mongodb的我来说,这些足够啦. 左边是mongodb查询语句,右边是sql语句.对照着用,挺方便. db.users.find() select * from users db.users.find({"age" : 27}) select * from users where age = 27 db.users.find({"username" : "joe", "age" :…
一条简单的查询sql格式如下: SELECT ... FROM .... [WHERE ...] --过滤单行 [GROUP BY ...   [HAVING ...]]--GROUP BY对前面where条件过滤后的结果进行分组,HAVING过滤行组 [ORDER BY ...]--对结果进行排序 eg: 现在有个exchangetime表,表结构如下 名称                                            是否为空? 类型 ----------------…
简单查询: 1.最简单查询(查所有数据)select * from 表名: 注:* 代表所有列select * from info 2.查询指定列select code,name from info 3.修改结果集的列名select code as '代号',name as '姓名' from info 4.条件查询select * from info where code='p003' 5.多条件查询查询info表中code为p003或者nation为n001的所有数据select * fro…
数据查询语法(DQL) DQL就是数据查询语言,数据库执行DQL语句不会对数据进行改变,而是让数据库发送结果集给客户端. 语法: SELECT selection_list /*要查询的列名称*/ FROM table_list /*要查询的表名称*/ WHERE condition /*行条件*/ GROUP BY grouping_columns /*对结果分组*/ HAVING condition /*分组后的行条件*/ ORDER BY sorting_columns /*对结果分组*/…
1. 创建数据库CREATE DATABASE database-name 2. 删除数据库drop database dbname 3.    创建新表create table tabname(col1 type1 [not null] [primary key],col2 type2 [not   null],..) 根据已有的表创建新表: A:create table tab_new like tab_old (使用旧表创建新表) B:create table tab_new as sel…
通配符: “_”: 代表匹配一个字符 “%”: 代表匹配多个字符: []:表示范围,可以包含多个数据 [^] 表示取反 “-“  表示范围 逻辑与 and 逻辑或 or  逻辑非 not 聚会函数 : 聚合函数:sum()/max()/min()/avg()/count() where /group by /having -----------删除数据------------------------------ delete:有选择性的删除 删除的信息不能被子表所有使用 truncate:删除整…
前段时间做业务监控,用到了MongoDB,有一个查询是把一个含array的list里面查询array中是否存在某一对unique值,不存在的情况下插入一条记录. 类似这样一个表: Biao{ id, field1, field2, List<string> Places, List<People> Peoples } People{FistName, LastName, Age, xxx} 需要查询field1=xxx, (array)Places 包含ppp,(array)Peo…
--以scott用户下的dept和emp表为例 --注意:如果scott用户不能使用,请使用system用户登录--解锁scott用户ALTER USER SCOTT ACCOUNT UNLOCK;--重新设置密码 (identified 被识别的)alter user scott identified by tiger; --选择 所有字段 scott用户部门表SELECT * FROM scott.dept;--员工表SELECT * FROM scott.emp; --SELECT{*,…