加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > MsSql教程 > 正文

MySQL查询倒数第二条记录实现方法

发布时间:2020-12-12 08:18:16 所属栏目:MsSql教程 来源:网络整理
导读:有时候会用到查询倒数第二条记录 复制代码 代码如下: last=HolderChangeHistory.find_by_sql ([" SELECT * FROM holder_change_histories where treasure_id = order by id desc limit 1,1 ", @hch.treasure_id]) 复制代码 代码如下: select * from tablenam

有时候会用到查询倒数第二条记录
复制代码 代码如下:
last=HolderChangeHistory.find_by_sql
(["               SELECT * FROM holder_change_histories
                  where treasure_id = ?
                  order by id desc  
                  limit   1,1  ",
                  @hch.treasure_id])

复制代码 代码如下:
select   *    
              from   tablename   a     
              where   ( 
                  select   count(*)    
                       from   tablename   b    
                       where   a.id<b.id)=1 

复制代码 代码如下:
select   *    
                from   tb1    
                order   by   tb1.id   desc    
                limit   1,1; 

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读