SELECT TOP 50 ...
Will return the first 50 records based on the ORDER BY that meet the
criteria. It can return more than 50 records if there are ties in criteria.
SELECT TOP 50 ...
Will return the first 50 records based on the ORDER BY that meet the
criteria. It can return more than 50 records if there are ties in criteria.