目录 1 where 条件查询 between like not in 2 group by 分组 聚合函数:max min sum avg count 3 having 过滤 4 distinct 去重 5 order by 排序 6 limit 限制结果返回数量 7 正则 8 多表查询 子查询 0 准备代码 1 where 条件查询 准备代码在最下面 在使用MySQL select语句时,可以使用 WHERE 子句来指定查询条件,从 FROM 子句的中间结果中选取适当的数据行,达到数据过滤的
order表: order type gmt_create type 取值: 0,1 其中0非常多,1非常少. 当查询条件里 select * from order where type=0 and gmt_create > '2017' limit 20; 由于海量数据,可能搜索1千 w 才能得到1个数据. 所以要得到20个可能就要 mysql 遍历完一个亿的数据. 这时候就要考虑如何用索引,一步步的查询. 一个方案是将原表分表. 根据 type 先分表. 直接分成两张表,而不是多加一个
原文:http://blog.csdn.net/qing_gee/article/details/41646503 当你的查询条件是一个字符串变量时,你该怎么办,比如字符串可能是“0001ME,0002BL”,也可能是“0001ME”,那么如何根据条件得到想要的结果呢,我来告诉你instr方法的厉害之处. 1.开始的时候一直在将字符串str转换为in函数的参数,如下 SELECT * FROM stocks_orderlist s where s.scode in ("0001ME",
一.介绍 本节主题: 多表连接查询 复合条件连接查询 子查询 准备表: #建表 create table department( id int, name ) ); create table employee( id int primary key auto_increment, name ), sex enum('male','female') not null default 'male', age int, dep_id int ); #插入数据 insert into departmen
mysql第四篇--SQL逻辑查询语句执行顺序 一.SQL语句定义顺序 SELECT DISTINCT <select_list> FROM <left_table> <join_type> JOIN <right_table> ON <join_condition> WHERE <where_condition> GROUP BY <group_by_list> HAVING <having_condition&g