在SQL中,LIMIT
函數用于限制查詢結果的數量。以下是如何使用LIMIT
函數的示例:
SELECT column1, column2, ...
FROM table_name
[ORDER BY column1, column2, ...]
LIMIT number_of_rows;
例如,如果您有一個名為employees
的表,并希望查詢前10名員工,可以這樣做:
SELECT * FROM employees
ORDER BY salary DESC
LIMIT 10;
在SQL Server中,使用TOP
關鍵字限制查詢結果的數量:
SELECT TOP number_of_rows column1, column2, ...
FROM table_name
[ORDER BY column1, column2, ...];
例如,查詢前10名員工:
SELECT TOP 10 * FROM employees
ORDER BY salary DESC;
請根據您使用的數據庫系統選擇適當的語法。