F Frank Dulk Feb 2, 2006 #1 Is it possible to limit the amount of records of a query not for amount, but for percentage? 10% of 50 records of the table = 5
Is it possible to limit the amount of records of a query not for amount, but for percentage? 10% of 50 records of the table = 5
D Dirk Goldgar Feb 3, 2006 #2 Frank Dulk said: Is it possible to limit the amount of records of a query not for amount, but for percentage? 10% of 50 records of the table = 5 Click to expand... SELECT TOP 10 PERCENT * FROM MyTable;
Frank Dulk said: Is it possible to limit the amount of records of a query not for amount, but for percentage? 10% of 50 records of the table = 5 Click to expand... SELECT TOP 10 PERCENT * FROM MyTable;