Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找类似rownum的东西
您可以使用 TOP,例如:
SELECT Top 10 col FROM Table ORDER BY col2
请注意,如果 col2 有重复,这将返回超过 10 条记录。
Select Top n Col From Table