1. 程式人生 > >各資料庫SELECT結果只顯示前幾條記錄方法整理

各資料庫SELECT結果只顯示前幾條記錄方法整理

為了檢視資料表中的資料情況。經常會遇到想讓查詢結果只顯示N行,比如只顯示10行的情況。不同的資料庫有不同的關鍵字和SELECT實現語法。整理如下,本人親測。
1、SQL Server資料庫

select top 10  * from table_name;

2、DB2資料庫

select * from table_name fetch first 10 rows only;

3、Oracle資料庫

select * from table_name where rownum <=10;

4、MySQL資料庫

select * from table_name limit 10;

5、Informix 資料庫

select first 10 * from table_name;

6、Teradata資料倉庫

select * from table_name sample 10;

我目前用到過這幾種資料庫,以後遇到新的會持續更新到部落格。