Mysql查询大于_MySql查询,选择大于

bd96500e110b49cbb3cd949968f18be7.png

I've got a table, called faq_questions with the following structure:

id int not_null auto_increment,

question varchar(255),

sort_order int

I'm attempting to build a query that given a sort order, selects the row with the next highest sort order.

Example:

id question sort_order

1 'This is question 1' 10

2 'This is question 2' 9

3 'This is another' 8

4 'This is another one' 5

5 'This is yet another' 4

Ok, so imagine I pass in 5 for my known sort order (id 4), I need it to return the row with id 3. Since there's no guarantee that sort_order will be contiguous I can't just select known_sort_order + 1.

Thanks!

解决方案

It seems too simple, but it looks like what you need:

SELECT id,question FROM `questions`

WHERE `sort_order` > sort_order_variable

ORDER BY sort_order ASC

LIMIT 1

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值