TOP 50 PERCENT IN SQL SERVER code example
Example: How to display top 50 rows?
In MySQL, top 50 rows are displayed by using this following query:
SELECT * FROM
LIMIT 0, 50;
In MySQL, top 50 rows are displayed by using this following query:
SELECT * FROM
LIMIT 0, 50;