mysql实现文章上一篇下一篇的sql语句
发布:smiling 来源: PHP粉丝网 添加日期:2014-09-22 21:51:23 浏览: 评论:0
在mysql中查查询上一篇与下一篇只需要对数据进行按id排序之后,然后我们再进行asc或者desc最当前ID下一个就可以了,下面整理了一些例子.
实现网站文章里面上一篇和下一篇的sql语句的写法.
当前文章的id为 $article_id,当前文章对应分类的id是$cat_id,那么上一篇就应该是:
SELECT max(article_id) FROM article WHERE article_id < $article_id AND cat_id=$cat_id;
执行这段sql语句后得到 $max_id,然后
SELECT article_id, title FROM article WHERE article_id = $max_id;
简化一下,转为子查询即:
SELECT article_id, title FROM article WHERE article_id = (SELECT max(article_id) FROM article WHERE article_id < $article_id AND cat_id=$cat_id);
下一篇为,代码如下:
SELECT min(article_id) FROM article WHERE article_id > $article_id AND cat_id=$cat_id;
执行这段sql语句后得到 $min_id,然后:
SELECT article_id, title FROM article WHERE article_id = $min_id;
简化一下,转为子查询即可,代码如下:
SELECT article_id, title FROM article WHERE article_id = (SELECT min(article_id) FROM article WHERE article_id > $article_id AND cat_id=$cat_id);
最后讲一下有很多朋友喜欢使用下面语句.
上一篇,代码如下:
select id from table where id<10 order by id desc limit 0,1;
下一篇,代码如下:
select id from table where id>10 limit 0,1;
这样肯定没有问题,但是是性能感觉不怎么地.
sql语句优化:可以使用union all来实现一条语句取3行数据,但是前提是3个查询的字段要相同,这个查询出来的结果第一行就是上一篇文章,第二行是当前文章,第三行是下一篇文章,代码如下:
- (select id from table where id < 10 order by id asc limit 1)
- union all
- (select id from table where id = 10)
- union all //开源软件:phpfensi.com
- (select id from table where id > 10 order by id desc limit 1);
Tags: mysql上一篇 mysql下一篇
- 上一篇:php 列出MySQL数据库中所有表二种方法
- 下一篇:mysql三目运算使用示例
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)