程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> 取出表A中第31到第40記錄

取出表A中第31到第40記錄

編輯:.NET實例教程


在這裡我用Northwind裡的Orders表實驗

第一種:SELECT TOP 10 *

FROM Products

WHERE (ProductID NOT IN

          (SELECT TOP 30 ProductID

         FROM Products

         ORDER BY ProductID))    //一定要加上ORDER BY ProductID

第二種:SELECT TOP 10 *

FROM (SELECT TOP 40 *

        FROM Products

        ORDER BY ProductID DESC) DERIVEDTBL

ORDER BY ProductID    //這種好像結果不太對,有待進一步驗證

第三種:SELECT *

FROM Products

WHERE (ProductID IN

          (SELECT TOP 40 ProductID

         FROM Products

         ORDER BY ProductID)) AND (ProductID NOT IN

          (SELECT TOP 30 ProductID

         FROM Products

         ORDER BY ProductID))

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved