1. oracle
select * from table1 where rownum<=n
2. informix
select first n * from table1
3. db2
select * row_number() over(order by col1 desc) as rownum where rownum<=n
或者select column from table fetch first n rows only
4. sql server
select top n * from table1
5. sybase
set rowcount n
goselect * from table1
6. mysql
select * from table1 limit n
7. foxpro
select * top n from table order by column
Select Top在不同資料庫中的用法
從itpub上看到的一個好貼,也經常用到,不是所有的平臺均以測試,你可以自己試試看。1.oracle select from table1 where rownum n 2.informix select first n from table1 3.db2 select row number ove...
Select Top在不同資料庫中的使用
select top在不同資料庫中的使用用法 1.oracle資料庫 select from table1 where rownum n 2.infomix資料庫 select first n from table1 3.db2資料庫 select row number over order by ...
Select Top在不同資料庫中的使用用法
select top在不同資料庫中的使用用法 1.oracle資料庫 select from table1 where rownum n 2.infomix資料庫 select first n from table1 3.db2資料庫 select row number over order by ...
在Visual C 中訪問不同資料庫
visual c 作是微軟極力推薦的下一代程式開發語言,他有一個非常重要伴侶 net framework sdk,在他的裡面封裝了許多class library 類庫 visual c 要實現很多拓展功能,就必須藉助於他的這個伴侶。在visual c 中對資料庫的處理是其功能的一個重要表現。visu...
在Visual C 中訪問不同資料庫
visual c 作是微軟極力推薦的下一代程式開發語言,他有一個非常重要伴侶 net framework sdk,在他的裡面封裝了許多class library 類庫 visual c 要實現很多拓展功能,就必須藉助於他的這個伴侶。在visual c 中對資料庫的處理是其功能的一個重要表現。visu...