php+mysql 判斷記錄位置

來源:互聯網
上載者:User
ID Catid Order
1 1 1
2 1 5
3 2 3
4 1 2
5 2 15
7 1 11
8 1 9
...
152 1 155
153 1 143

我需要的是根據一個ID,算出這個ID是當前CATID下的第幾條記錄

比如 給的 ID 是 7 對應的Catid是1 。 SQL語句就是:

SELECT * FROM `news_list` WHERE `TId` =1ORDER BY `order` ASC LIMIT x , 30

因為根據order排序,而且資料比較多。

需要解決的問題是:
比如給個ID=7 , 根據ID所屬的Catid,計算出擷取的結果中此ID的位置。(7是第4條記錄)

希望大神們幫忙。

ps:資料量大,不能先讀出滿足條件的所有記錄,再判斷。

我的回答如下:

set @i :=0;SELECT @i :=@i+1 as num,news_list.* FROM `news_list` WHERE `catid` =1ORDER BY `order` ASC LIMIT 0 , 30
  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.