Rows Retrieved In A Query

  • Thread starter Thread starter Guest
  • Start date Start date
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.
 
It worked great, thanks.
--
Tanya


Klatuu said:
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.
 
Back
Top