Hi Everyone,
I'm using SQL 7.0 and
I have a table with the following fields:
BID, Current, 30, 60
This table has hundreds of bids. What I need to do is write a SQL statement that will pull the top 35 records for each bid (without having to specify what each bid is). something like (This is wrong)
SELECT TOP 35 BID, Current, 30, 60
FROM tblMarket
GROUP BY BID
Is there a way to do this?
Thanks for all your help
Cathy
I'm using SQL 7.0 and
I have a table with the following fields:
BID, Current, 30, 60
This table has hundreds of bids. What I need to do is write a SQL statement that will pull the top 35 records for each bid (without having to specify what each bid is). something like (This is wrong)
SELECT TOP 35 BID, Current, 30, 60
FROM tblMarket
GROUP BY BID
Is there a way to do this?
Thanks for all your help
Cathy