基础篇

//查询时间,友好提示

$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;

//统计每天的每小时用户签到情况

select

h,

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

date_format(create_time,'%Y-%m-%d') create_time,

hour(create_time) h,

count(*) c

from test_sign_history

group by

date_format(create_time,'%Y-%m-%d'),

hour(create_time)

) a

group by h with rollup;

//统计每天的每小时用户签到情况(当某个小时没有数据时,显示0)

select

h ,

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

) b

left join

(

select

date_format(create_time,'%Y-%m-%d') create_time,

hour(create_time) h,

count(*) c

from test_sign_history

group by

date_format(create_time,'%Y-%m-%d'),

hour(create_time)

) c on (b.h=c.h)

) a

group by h with rollup;

//统计每天的用户签到数据和每天的增量数据

select

type,

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

(

select

date_format(create_time,'%Y-%m-%d') create_time,

count(*) c

from test_sign_history

group by

date_format(create_time,'%Y-%m-%d')

) b

left join

(

select

date_format(create_time,'%Y-%m-%d') create_time,

count(*) c

from test_sign_history

group by

date_format(create_time,'%Y-%m-%d')

) c on(b.create_time=c.create_time+ interval 1 day)

union all

select

date_format(create_time,'%Y-%m-%d') create_time,

count(*) c,

'Current'

from test_sign_history

group by

date_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;

//统计签到天数相同的用户数量

select

sum(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(*) cn

from

(

select uid,count(*) c from test_sign_history group by uid

) a

group by c

) b;

//统计每个用户的连续签到时间

select * from (

select d.*,

@ggid := @cggid,

@cggid := d.uid,

if(@ggid = @cggid, @grank := @grank + 1, @grank := 1) grank

from

(

select uid,min(c.create_time) begin_date ,max(c.create_time) end_date,count(*) count from

(

select

b.*,

@gid := @cgid,

@cgid := b.uid,

if(@gid = @cgid, @rank := @rank + 1, @rank := 1) rank,

b.diff-@rank flag from (

select

distinct

uid,

date_format(create_time,'%Y-%m-%d') create_time,

datediff(create_time,now()) diff

from test_sign_history order by uid,create_time

) b, (SELECT @gid := 1, @cgid := 1, @rank := 1) as a

) c group by uid,flag

order by uid,count(*) desc

) d,(SELECT @ggid := 1, @cggid := 1, @grank := 1) as e

)f

where grank=1;

mysql通常使用语句_Mysql 常用SQL语句集锦相关推荐

  1. mysql常用的yu语句_mysql常用sql语句

    1.清空用户下的所有表里面的数据 select concat('truncate table ',table_name,';') from information_schema.TABLES wher ...

  2. 建立学生选课表 mysql 语句_MySQL常用SQL语句(Python实现学生、课程、选课表增删改查)...

    以基本的学生选课为例,建立选课数据库,学生.班级.选课信息三张表,并分别对表进行插删改操作: import MySQLdb try: conn = MySQLdb.connect(host = 'lo ...

  3. mysql curd语句_MySQL常用SQL语句(CURD,建表,加字段,查改参数)

    查询: FROM_UNIXTIME():时间戳转日期 sum:合计 SELECT *, FROM_UNIXTIME(a.add_time) AS add_time2, SUM(b.goods_numb ...

  4. 13.4 mysql用户管理 13.5 常用sql语句 13.6 mysql数据库备份恢复

    mysql用户管理 1.创建一个普通用户并授权 [root@gary-tao ~]# mysql -uroot -p'szyino-123' Warning: Using a password on ...

  5. MySQL(用户管理,常用sql语句,数据库备份恢复,MySQL调优,恢复误操作数据)...

    一.MySQL用户管理. 一个MySQL数据库里可以跑多个库,总不能给所有人的程序员root用户,则可以给他们单独的用户访问数据库. 创建用户:(grant all on *.* to 'user1' ...

  6. mysql事务控制(xa分布式事务)和锁定语句_MySQL的SQL语句 -事务性语句和锁定语句(7)- XA 事务...

    XA 事务 InnoDB 存储引擎支持 XA 事务.MySQL XA 的实现基于 X/Open CAE 文档 Distributed Transaction Processing: The XA Sp ...

  7. mysql数据库求和语句_MYSQL数据库SQL语句集锦

    *特别说明:FILED代表数据表字段,CONDITIONS代表where之后的条件,TABLENAME代表数据表名   []中括号内的内容代表 可有可无. 创建数据库 create  database ...

  8. mysql 子表 关联查询语句_MySQL基本SQL语句之单表查询、多表查询和子查询

    一.简单查询: 基本语法:SELECT * FROM tb_name;查询全部 SELECT field1,field2 FROM tb_name; 投影 SELECT [DISTINCT] * FR ...

  9. mysql show语句_mysql常用show语句

    1. show character set [like 'pattern'] 显示所有可利用的字符集 mysql> show character set like 'gbk' -> ; + ...

最新文章

  1. 哪些书你看之前以为很枯燥,结果一看却欲罢不能的?
  2. Java的知识点30——线程的优先级、终止线程的典型方式、获取线程基本信息的方法
  3. SpringBoot 中 @RequestBody的正确使用方法
  4. ubantu 重启mysql
  5. STM32F407控制AD7606 采用HAL库的TIM和SPI
  6. 给孩子一束安全的光 明基WiT MindDuo亲子共读灯首发评测
  7. php编写一个投票程序,实例学习PHP之投票程序篇(一)
  8. SVN学习2020.8.9
  9. 比较连续分配、分页和分段三种存储分配机制的优缺点_第十九期-处理器存储模型概述(1)...
  10. Tomcat服务器时间不正确
  11. 良冶之子,必学为裘;良弓之子,必学为箕
  12. matlab畸变程度计算,matlab 畸变校正代码
  13. ctf本地包括_GitHub - SewellDinG/LFIboomCTF: 本地文件包含漏洞实践源码及相应协议利用指南...
  14. 航空系统c语言课程设计报告,c语言课程设计报告_航空订票系统西安郵電學院.doc...
  15. 写了一个wwwscan的路径生成工具
  16. 读书笔记 大前研一《专业主义》
  17. 智商情商哪个重要_智商和情商哪个更重要 一辩辩词
  18. 2020年最烂密码出炉!一秒钟就破解!
  19. Vue.js 写一个echarts的水滴图
  20. 主流搜索引擎蜘蛛的IP地址网段整理

热门文章

  1. 安卓牛客专项练习2020.12.31
  2. 专访联想谢政维:功耗和价格是天蝎项目最大障碍!
  3. Linux下编译FFMpeg
  4. 解决 : Shell 脚本 $‘\r‘: command not found 问题
  5. 解决:-bash: telnet: command not found
  6. MYSQL安装报错 -- 出现Failed to find valid data directory.
  7. UGUI滚动列表ScrollView使用注意点
  8. 能力=知识+技能+经验
  9. gluPickMatrix和glReadPixels
  10. 学习:深入浅出之正则表达式(转)