|
I asked a very similar question a while back. It may help you get to
the random result set you need. Mine was for some auditors at a
previous company.
Elvis
Thanks for pointing me in the right direction.
After doing it the hard way, this worked for me;
With T1 AS (SELECT Status,
InfoField,
ROW_NUMBER() over (PARTITION BY Status ORDER BY Status) as Nbr from
FileName ORDER BY Status )
SELECT * FROM T1 WHERE Nbr < 6
Any thoughts on how to get a random 5 selected instead of the first 5?
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2025 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.