sql查询:显示文章标题,发帖人、最后回复时间、对应回复人功能实现(代码教程)
程序员文章站
2022-08-10 20:01:06
数据表准备:
create table `articles` (
`id` int(11) not null auto_increment,
`title` varchar(50)...
数据表准备:
create table `articles` ( `id` int(11) not null auto_increment, `title` varchar(50) default null, `postuser` varchar(10) default null, `postdate` datetime default null, `parentid` int(11) default null, primary key (`id`) ) engine=innodb auto_increment=12 default charset=utf8;
数据准备:
insert into `articles` values ('1', '第一条帖子', '张三', '1998-10-10 12:32:32', null); insert into `articles` values ('2', '第二条帖子', '张三', '1998-10-10 12:34:32', null); insert into `articles` values ('3', '第一条回复1', '李四', '1998-10-10 12:35:32', '1'); insert into `articles` values ('4', '第二条回复1', '李四', '1998-10-10 12:36:32', '2'); insert into `articles` values ('5', '第一条回复2', '王五', '1998-10-10 12:37:32', '1'); insert into `articles` values ('6', '第一条回复3', '李四', '1998-10-10 12:38:32', '1'); insert into `articles` values ('7', '第二条回复2', '李四', '1998-10-10 12:39:32', '2'); insert into `articles` values ('8', '第一条回复4', '王五', '1998-10-10 12:39:40', '1'); insert into `articles` values ('9', '第三条帖子', 'inleft', '2018-06-21 17:13:53', null); insert into `articles` values ('10', '第四条帖子', 'inleft', '2018-06-14 17:13:57', null); insert into `articles` values ('11', '第六条帖子', 'inleft', '2018-06-20 17:14:18', null);
必要条件,最后回复时间:select max(postdate) from articles where parentid=a.id
解答:
select a.title,a.postuser,a.postdate as firsttime,(select max(postdate) from articles where parentid=a.id ) lasttime from articles as a where a.parentid is null
深入,需要把所有帖子的 最后的回复人和时间都列举出来
第一次写的sql,缺点,只能查询单个帖子的数据
思路:查询某个帖子的id,根据这个id,找到它的最晚回复时间,再根据这个时间去匹配它的回复者
select * from articles as a, ( select * from articles where postdate in (select max(postdate) from articles where parentid in(select id from articles where parentid is "帖子的id")) ) as b where a.parentid is null and b.parentid=a.id order by a.id
第二次写的sql
思路:
1.查询一个回复表,从中筛选同一个帖子回复中最晚的时间
select * from articles where parentid is not null and postdate in ( select max(postdate) from articles b where parentid =articles.parentid )
2.查询一个帖子表
select *from articles as a where a.parentid is null
3.两表关联查询 两表的关系是帖子表的id=回复表的parentid
解答:
select * from articles as a, (select title as recovertext,postuser as recover,postdate as lasttime ,parentid from articles where parentid is not null and postdate in ( select max(postdate) from articles temp where temp.parentid =articles.parentid ) ) as b where a.parentid is null and b.parentid =a.id order by a.id
十万级数据查询调优思路 :两表关联后查询的表作为虚表查询,进行分组
select * from (select b.*,a.title as a_title from articles as a, articles as b where a.parentid is null and b.parentid=a.id order by b.postdate desc ) as temp group by parentid
题目:求出发帖最多的人:
1.查询一个帖子表
select *fromarticles as awhere a.parentid is null
2.得到的表依据姓名分组,统计姓名出现的次数,按照次数降序,第一条记录就是结果
或者将分组的表拿到,该表里面也有含有该帖子的id,关联帖子表可以得到详细信息
解答:
select *,count(a.postuser) from articles as a where a.parentid is null group by a.postuser order by count(a.postuser) desc
如果是回复最多的人呢,同理,只要把修改parentid is not null即可
二解:带有子查询的写法(效率低):这个时候情况就和求同一个帖子回复中最晚的时间的人的名字做法是一样的
select *,count(a.postuser) from articles as a group by a.postuser having count(a.postuser)= (select max(c.count) from (select count(b.postuser) as count from articles as b where b.parentid is null group by b.postuser ) as c ) and a.parentid is null
上一篇: 通过JQ实现瀑布流加载和流加载教程
下一篇: sql语句书写基本法则的记录分享