SELECT TOP PERCENT usage

The following SQL statement selects the first 50% of the records from the "Customers" table. 

SELECT TOP 50 PERCENT * FROM Customers;


Reference: https://www.w3schools.com/sql/sql_top.asp

Comments