mysql sql 片段_Mysql 常用SQL语句集锦

基础篇

//查询时间,友好提示$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-35-57-810-11//执行Sqlselect min(number) start_range,max(number) end_rangefrom(    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) minutefrom 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) 17Signfrom(    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) 17Signfrom(    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;

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

//统计每天的用户签到数据和每天的增量数据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) 17Signfrom(        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) 10Dayfrom(    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;

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

如果大家需要下载上述的相关数据表,进行测试。

可以关注微信公众号,回复 “签到数据表”,即可获取数据表。

Thanks ~

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
### 回答1: MySQL是最常用的关系型数据库管理系统之一,可以使用SQL语言来管理和操作数据库。下面是一些常用MySQL建表SQL语句。 1. 创建数据库: CREATE DATABASE database_name; 2. 使用数据库: USE database_name; 3. 创建表: CREATE TABLE table_name ( column1 datatype constraint, column2 datatype constraint, ... ); 4. 添加主键: ALTER TABLE table_name ADD PRIMARY KEY (column_name); 5. 添加外键: ALTER TABLE table_name ADD CONSTRAINT FK_name FOREIGN KEY (foreign_key_column) REFERENCES parent_table (primary_key_column); 6. 添加索引: CREATE INDEX index_name ON table_name (column_name); 7. 插入数据: INSERT INTO table_name (column1, column2, ...) VALUES (value1, value2, ...); 8. 更新数据: UPDATE table_name SET column1 = new_value1, column2 = new_value2 WHERE condition; 9. 删除数据: DELETE FROM table_name WHERE condition; 10. 查询数据: SELECT column1, column2, ... FROM table_name WHERE condition; 以上仅是MySQL建表和数据操作的基本语句,还有许多其他的高级用法和语法,可以根据具体需求进一步学习和掌握。MySQL提供了强大的数据管理功能,使得对数据的存储和查询变得更加高效和方便。 ### 回答2: MySQL建表是通过使用SQL语句来创建一个新的数据库表。下面是一个简单的例子来说明如何使用SQL语句来创建MySQL表。 首先,我们需要打开MySQL命令行界面或图形界面工具,然后选择要创建表的数据库。假设我们已经选择了名为"mydatabase"的数据库。 接下来,我们可以使用CREATE TABLE语句来创建一个新的表。以下是一个示例的CREATE TABLE语句: CREATE TABLE mytable ( id INT AUTO_INCREMENT PRIMARY KEY, name VARCHAR(50), age INT, email VARCHAR(100) ); 在上面的示例中,我们创建了一个名为"mytable"的表,在该表中包含了四个列。第一列是"id",它是整数类型,并且设置为自动增加。它还被指定为主键,这意味着每个条目都有一个唯一的id值。第二列是"name",它是一个可变长度的字符列,最大长度为50个字符。第三列是"age",它是一个整数类型。第四列是"email",它是一个可变长度的字符列,最大长度为100个字符。 CREATE TABLE语句中的其他选项可以根据需要进行更改和添加。例如,我们可以指定列的约束、索引、默认值等。 在完成CREATE TABLE语句后,我们可以执行它来创建新的表。然后,我们可以使用ALTER TABLE语句来修改表结构,例如添加新的列、删除列或更改列的数据类型。使用INSERT INTO语句可以向表中插入数据,使用SELECT语句可以检索表中的数据。 总结起来,MySQL建表的过程包括选择数据库、使用CREATE TABLE语句创建表、使用ALTER TABLE语句修改表结构(可选)、使用INSERT INTO语句插入数据,以及使用SELECT语句检索数据。 ### 回答3: MySQL是一种广泛使用的关系型数据库管理系统,建表是在MySQL中创建数据表的过程。建表是通过执行SQL语句来实现的。 建表的SQL语句包括CREATE TABLE语句和相关的列定义。 CREATE TABLE语句的一般格式如下: CREATE TABLE 表名 ( 列名1 数据类型1, 列名2 数据类型2, ... ); 其中,表名是我们要创建的数据表的名称。列名是数据表中的每一列的名称。数据类型定义了每一列所存储的数据的类型,如整数、字符、日期等。 例如,我们要创建一个名为“users”的数据表,包含id、name和age三个列,可以使用如下的建表语句: CREATE TABLE users ( id INT PRIMARY KEY AUTO_INCREMENT, name VARCHAR(50) NOT NULL, age INT ); 上述建表语句中,id列使用INT数据类型,表示整数,并设置为主键(PRIMARY KEY),同时使用AUTO_INCREMENT属性来自动增加其值。name列使用VARCHAR(50)数据类型,表示最大长度为50的字符。age列使用INT数据类型,表示整数。 建表语句中还可以使用多种约束条件来约束列的取值范围,如NOT NULL表示该列不允许为空值,UNIQUE表示该列的值是唯一的,DEFAULT表示该列的默认值等。 通过执行建表语句,我们可以在MySQL中创建一个符合我们需求的数据表,供我们存储和管理数据。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值