基础篇

//查询时间,友好提示
$sql = "select date_format(create_time, '%Y-%m-%d') as day from table_name";//int 时间戳类型
$sql = "select from_unixtime(create_time, '%Y-%m-%d') as day from table_name";//一个sql返回多个总数
$sql = "select count(*) all, " ;
$sql .= " count(case when status = 1 then status end) status_1_num, ";
$sql .= " count(case when status = 2 then status end) status_2_num ";
$sql .= " from table_name";//Update Join / Delete Join
$sql = "update table_name_1 ";
$sql .= " inner join table_name_2 on table_name_1.id = table_name_2.uid ";
$sql .= " inner join table_name_3 on table_name_3.id = table_name_1.tid ";
$sql .= " set *** = *** ";
$sql .= " where *** ";//delete join 同上。//替换某字段的内容的语句
$sql = "update table_name set content = REPLACE(content, 'aaa', 'bbb') ";
$sql .= " where (content like '%aaa%')";//获取表中某字段包含某字符串的数据
$sql = "SELECT * FROM `表名` WHERE LOCATE('关键字', 字段名) ";//获取字段中的前4位
$sql = "SELECT SUBSTRING(字段名,1,4) FROM 表名 ";//查找表中多余的重复记录
//单个字段
$sql = "select * from 表名 where 字段名 in ";
$sql .= "(select 字段名 from 表名 group by 字段名 having count(字段名) > 1 )";
//多个字段
$sql = "select * from 表名 别名 where (别名.字段1,别名.字段2) in ";
$sql .= "(select 字段1,字段2 from 表名 group by 字段1,字段2 having count(*) > 1 )";//删除表中多余的重复记录(留id最小)
//单个字段
$sql = "delete from 表名 where 字段名 in ";
$sql .= "(select 字段名 from 表名 group by 字段名 having count(字段名) > 1)  ";
$sql .= "and 主键ID not in ";
$sql .= "(select min(主键ID) from 表名 group by 字段名 having count(字段名 )>1) ";
//多个字段
$sql = "delete from 表名 别名 where (别名.字段1,别名.字段2) in ";
$sql .= "(select 字段1,字段2 from 表名 group by 字段1,字段2 having count(*) > 1) ";
$sql .= "and 主键ID not in ";
$sql .= "(select min(主键ID) from 表名 group by 字段1,字段2 having count(*)>1) ";

业务篇

  • 连续范围问题
//创建测试表
CREATE TABLE `test_number` (`id` int(10) unsigned NOT NULL AUTO_INCREMENT,`number` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '数字',PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8//创建测试数据
insert into test_number values(1,1);
insert into test_number values(2,2);
insert into test_number values(3,3);
insert into test_number values(4,5);
insert into test_number values(5,7);
insert into test_number values(6,8);
insert into test_number values(7,10);
insert into test_number values(8,11);

实验目标:求数字的连续范围。

根据上面的数据,应该得到的范围。

1-3
5-5
7-8
10-11//执行Sql
select min(number) start_range,max(number) end_range
from
(select number,rn,number-rn diff from(select number,@number:=@number+1 rn from test_number,(select @number:=0) as number) b
) c group by diff;

  • 签到问题
//创建参考表(模拟数据需要用到)
CREATE TABLE `test_nums` (`id` int(11) unsigned NOT NULL AUTO_INCREMENT,PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='参考表';
//模拟数据,插入 1-10000 连续数据.//创建测试表
CREATE TABLE `test_sign_history` (`id` int(10) unsigned NOT NULL AUTO_INCREMENT,`uid` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '用户ID',`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '签到时间',PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='签到历史表';//创建测试数据
insert into test_sign_history(uid,create_time)
select ceil(rand()*10000),str_to_date('2016-12-11','%Y-%m-%d')+interval ceil(rand()*10000) minute
from test_nums where id<31;//统计每天的每小时用户签到情况
selecth,sum(case when create_time='2016-12-11' then c else 0 end) 11Sign,sum(case when create_time='2016-12-12' then c else 0 end) 12Sign,sum(case when create_time='2016-12-13' then c else 0 end) 13Sign,sum(case when create_time='2016-12-14' then c else 0 end) 14Sign,sum(case when create_time='2016-12-15' then c else 0 end) 15Sign,sum(case when create_time='2016-12-16' then c else 0 end) 16Sign,sum(case when create_time='2016-12-17' then c else 0 end) 17Sign
from
(selectdate_format(create_time,'%Y-%m-%d') create_time,hour(create_time) h,count(*) cfrom test_sign_historygroup bydate_format(create_time,'%Y-%m-%d'),hour(create_time)
) a
group by h with rollup;

//统计每天的每小时用户签到情况(当某个小时没有数据时,显示0)
selecth ,sum(case when create_time='2016-12-11' then c else 0 end) 11Sign,sum(case when create_time='2016-12-12' then c else 0 end) 12Sign,sum(case when create_time='2016-12-13' then c else 0 end) 13Sign,sum(case when create_time='2016-12-14' then c else 0 end) 14Sign,sum(case when create_time='2016-12-15' then c else 0 end) 15Sign,sum(case when create_time='2016-12-16' then c else 0 end) 16Sign,sum(case when create_time='2016-12-17' then c else 0 end) 17Sign
from
(select b.h h,c.create_time,c.c from(select id-1 h from test_nums where id<=24) bleft join(selectdate_format(create_time,'%Y-%m-%d') create_time,hour(create_time) h,count(*) cfrom test_sign_historygroup bydate_format(create_time,'%Y-%m-%d'),hour(create_time)) c on (b.h=c.h)
) a
group by h with rollup;

//统计每天的用户签到数据和每天的增量数据
selecttype,sum(case when create_time='2016-12-11' then c else 0 end) 11Sign,sum(case when create_time='2016-12-12' then c else 0 end) 12Sign,sum(case when create_time='2016-12-13' then c else 0 end) 13Sign,sum(case when create_time='2016-12-14' then c else 0 end) 14Sign,sum(case when create_time='2016-12-15' then c else 0 end) 15Sign,sum(case when create_time='2016-12-16' then c else 0 end) 16Sign,sum(case when create_time='2016-12-17' then c else 0 end) 17Sign
from
(select b.create_time,ifnull(b.c-c.c,0) c,'Increment' type from(selectdate_format(create_time,'%Y-%m-%d') create_time,count(*) cfrom test_sign_historygroup bydate_format(create_time,'%Y-%m-%d')) bleft join(selectdate_format(create_time,'%Y-%m-%d') create_time,count(*) cfrom test_sign_historygroup bydate_format(create_time,'%Y-%m-%d')) c on(b.create_time=c.create_time+ interval 1 day)union allselectdate_format(create_time,'%Y-%m-%d') create_time,count(*) c,'Current'from test_sign_historygroup bydate_format(create_time,'%Y-%m-%d')
) a
group by type
order by case when type='Current' then 1 else 0 end desc;

//模拟不同的用户签到了不同的天数
insert into test_sign_history(uid,create_time)
select uid,create_time + interval ceil(rand()*10) day from test_sign_history,test_nums
where test_nums.id <10 order by rand() limit 150;//统计签到天数相同的用户数量
selectsum(case when day=1 then cn else 0 end) 1Day,sum(case when day=2 then cn else 0 end) 2Day,sum(case when day=3 then cn else 0 end) 3Day,sum(case when day=4 then cn else 0 end) 4Day,sum(case when day=5 then cn else 0 end) 5Day,sum(case when day=6 then cn else 0 end) 6Day,sum(case when day=7 then cn else 0 end) 7Day,sum(case when day=8 then cn else 0 end) 8Day,sum(case when day=9 then cn else 0 end) 9Day,sum(case when day=10 then cn else 0 end) 10Day
from
(select c day,count(*) cnfrom(select uid,count(*) c from test_sign_history group by uid) agroup by c
) b;

//统计每个用户的连续签到时间
select * from (select d.*,@ggid := @cggid,@cggid := d.uid,if(@ggid = @cggid, @grank := @grank + 1, @grank := 1) grankfrom(select uid,min(c.create_time) begin_date ,max(c.create_time) end_date,count(*) count from(selectb.*,@gid := @cgid,@cgid := b.uid,if(@gid = @cgid, @rank := @rank + 1, @rank := 1) rank,b.diff-@rank flag from (selectdistinctuid,date_format(create_time,'%Y-%m-%d') create_time,datediff(create_time,now()) difffrom test_sign_history order by uid,create_time) b, (SELECT @gid := 1, @cgid := 1, @rank := 1) as a) c group by uid,flagorder by uid,count(*) desc) d,(SELECT @ggid := 1, @cggid := 1, @grank := 1) as e
)f
where grank=1;

shell 提取sql 的字段名表名_Mysql 常用SQL语句集锦(仅学习)相关推荐

  1. MyBatis构建sql时动态传入表名以及字段名

    http://wendy-wxie.iteye.com/blog/1605193 用了mybatis很长一段时间了,但是感觉用的都是比较基本的功能,很多mybatis相对ibatis的新功能都没怎么用 ...

  2. mybatis 动态字段与表中不一样_mybatis创建一个或多个新用户 insert 字段和表名不确定时动态添加问题...

    创建用户: /** * 创建一个或多个新用户 insert 字段和表名不确定时动态添加 */ @Test public void createAccount() { String lineColumn ...

  3. [转】sql修改列名及表名

    sql 修改列名及表名 与之前转的那篇文章不同,因需求变更要改表的列名,平常都是跑到Enterprise manager中选取服务器->数据库->表,然后修改表,这样太麻烦了,查了一下,可 ...

  4. sql server(MsSql)字段命名,表命名,视图命名,SQL语句书写参考

    @[TOC](sql server(MsSql)字段命名,表命名,视图命名,SQL语句书写参考) 对我个人来说,字段命名,表命名,视图命名,SQL语句书写都有一套自己的习惯,可以减少维护成本.减少不必 ...

  5. shell 提取sql 的字段名表名_SQL代码风格规范

    作为新时代SQL Boy,大部分时间都是在写sql,很多时候看到别人写的代码实在是不规范,命名随便写,没有缩进,看起来很没有逻辑性,今天分享下我自己的一些规范,从这里修改而来. --名称:xxx项目 ...

  6. Sql Server查看所有数据库名,表名,字段名(SQL语句)

    1.获取所有数据库名: SELECT Name FROM Master..SysDatabases ORDER BY Name 2.获取所有表名: SELECT Name FROM DatabaseN ...

  7. PowerDesigner 添加字段和表名备注

    文章目录 PowerDesigner 字段添加注释 PowerDesigner 表名添加注释 最近在是用PowerDesigner的时候有一个需求,就是在使用PowerDesigner创建的SQL,需 ...

  8. You have an error in your SQL syntax +改动数据库表名后异常(已解决)【MySQL+SSM】

    出现的问题: 1.改变数据库中的某个表名时,eclipse中报错为连接数据异常的错误: 2.在几经辗转后,虽然解决了连接异常的报错,但是!!又出现数据库相关的错误[心碎~崩溃~想放弃!!]但年轻人嘛, ...

  9. oracle设置表字段小写,将oracle中的字段和表名全部修改为小写

    在创建表和表结构的时候,如果想要小写需要在名称上面添加双引号,如果不添加oracle数据库会默认识别为大写 1.将表名和字段名改为大写 批量将表名变为大写 begin for c in (select ...

最新文章

  1. js通过月份判断前三个月_怀孕前三个月如何判断胎儿发育是否健康,看HCG翻倍情况,快收藏...
  2. Maven配置将war包部署到Tomcat(tomcat7-maven-plugin)
  3. DDD - 如何理解Entity与VO
  4. 在eclipse导入SSH项目
  5. 战棋类中实现的移动范围
  6. myeclipse5.5注册码
  7. php des加密 和java胡同_PHP版本DES加密解(对应.net版与JAVA版)
  8. 【面试笔记系列】排序算法汇总
  9. jquery form java_springmvc利用jquery.form插件异步上传文件示例
  10. 2019福建省c语言知识点,2019最新C语言知识整理(干货)
  11. 【Flink】Flink消费kafka 突然报错 Kafka09PartitionDiscoverer.getAllPartitionsForTopics
  12. windows mysql 自动备份_windows mysql 自动备份的几种方法总结--岁月博客提供
  13. 支付宝报错:missing-signature 未设置签名参数
  14. Windows7 品牌机OEM原版光盘镜像下载大全
  15. jsp java语法_JSP 语法 | 菜鸟教程
  16. win10硬盘速度测试软件,最好的硬盘检测工具
  17. html校园网页设计作品欣赏,26张很棒网页首屏设计作品欣赏
  18. ZCMU-1345: 国际象棋
  19. webservice 缺少根元素_草莓种植,钙、硼元素十分重要,直接关系到草莓的产量和品质!...
  20. email英文计算机求职信,求职信范文_计算机英文求职信范文

热门文章

  1. 被阿里P8面了两个小时,技术、业务有来有回......
  2. 当你拼命挣死工资时,他们已抢占2018年最火爆高科技赚钱项目......
  3. docker建多个mysql_《容器化系列二》利用Docker容器化技术安装多个mysql
  4. Python 时间常用函数及结构
  5. 【转载保存】lucene3.0可以对docId、docField、queryParser设置Boost值来影响排序结果
  6. node.js Express框架入门
  7. 数据结构实验之栈七:出栈序列判定
  8. Mysql写入数据时,adapter 日志报ES连接错误
  9. IT人的年夜饭,也太香了吧
  10. 云原生时代的运维体系进化