MYSQL显示行号排序、同张表数据排序上下进行比较
需求
需要查询小说是否有断更,小说章节信息表中有发布时间:pub_time,如果发布时间间隔超过三天就算断更
思路
查询小说章节信息表,将章节信息按照发布时间排序,加上行号。生成table1 和table2 信息一样
left join 关联查询,table1行号为 n 与 table2行号为n+1的数据发布时间比较,如果存在大于三天则说明断更
准备工作
章节表:CREATE TABLE `t_chapter` (`id` varchar(255) NOT NULL COMMENT '主键',`auto_code` varchar(255) NOT NULL COMMENT '编号',`production_number` varchar(11) NOT NULL COMMENT '作品编号',`pub_time` datetime DEFAULT NULL COMMENT '发布时间',PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8开始
对章节表根据发布时间升序排序并显示行号SELECTt.auto_code ,t.id ,t.production_number ,t.pub_time ,(@rowNum :=@rowNum + 1) AS rowNoFROMt_chapter t ,(SELECT(@rowNum := 0)) bWHEREt.production_number = 1414(指定作品)ORDER BYt.pub_time ASC查询结果已经按照发布时间排序
关联查询SELECTcount(1)FROM(SELECTt.auto_code ,t.id ,t.production_number ,t.pub_time ,(@rowNum :=@rowNum + 1) AS rowNoFROMt_chapter t ,(SELECT(@rowNum := 0)) bWHEREt.production_number = 979ORDER BYt.pub_time ASC) table1INNER JOIN(SELECTt.auto_code ,t.id ,t.production_number ,t.pub_time ,(@a :=@a + 1) AS rowNoFROMt_chapter t ,(SELECT(@a := 0)) bWHEREt.production_number = 979ORDER BYt.pub_time ASC) table2 ON table1.rowNo + 1 = table2.rowNoWHEREtimestampdiff(DAY , table2.pub_time , table1.pub_time) > 3;说明:
参考博客:
SQL Server查询行号 MYSQL rownum 实现 MYSQL 自定义变量使用(推荐)
需求
需要查询小说是否有断更,小说章节信息表中有发布时间:pub_time,如果发布时间间隔超过三天就算断更
思路
查询小说章节信息表,将章节信息按照发布时间排序,加上行号。生成table1 和table2 信息一样
left join 关联查询,table1行号为 n 与 table2行号为n+1的数据发布时间比较,如果存在大于三天则说明断更
准备工作
章节表:CREATE TABLE `t_chapter` (`id` varchar(255) NOT NULL COMMENT '主键',`auto_code` varchar(255) NOT NULL COMMENT '编号',`production_number` varchar(11) NOT NULL COMMENT '作品编号',`pub_time` datetime DEFAULT NULL COMMENT '发布时间',PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8开始
对章节表根据发布时间升序排序并显示行号SELECTt.auto_code ,t.id ,t.production_number ,t.pub_time ,(@rowNum :=@rowNum + 1) AS rowNoFROMt_chapter t ,(SELECT(@rowNum := 0)) bWHEREt.production_number = 1414(指定作品)ORDER BYt.pub_time ASC查询结果已经按照发布时间排序
关联查询SELECTcount(1)FROM(SELECTt.auto_code ,t.id ,t.production_number ,t.pub_time ,(@rowNum :=@rowNum + 1) AS rowNoFROMt_chapter t ,(SELECT(@rowNum := 0)) bWHEREt.production_number = 979ORDER BYt.pub_time ASC) table1INNER JOIN(SELECTt.auto_code ,t.id ,t.production_number ,t.pub_time ,(@a :=@a + 1) AS rowNoFROMt_chapter t ,(SELECT(@a := 0)) bWHEREt.production_number = 979ORDER BYt.pub_time ASC) table2 ON table1.rowNo + 1 = table2.rowNoWHEREtimestampdiff(DAY , table2.pub_time , table1.pub_time) > 3;说明:
相关文章:
c语言中冒泡排序、插入排序、选择排序算法比较
插入排序 排序算法学习-插入排序
相关视频:
数据库mysql视频教程以上就是MYSQL显示行号排序、同张表数据排序上下进行比较的详细内容,更多请关注小潘博客其它相关文章!