G
Guest
First, let me say I know this has been asked and answered many, many times.
I have tried out several of the solutions given, and can't seem to make it
work for me. Please Help!
I have a table: 5DailyPlayers
I have a query: 12SortDailyWinners
With this query I am sorting the Scores descending, and pulling the top 30
records. I am putting the results in a new table: 13DailySort. I am using
the following fields: Date, PrizeOrder, Account Number, Score, Prize. The
Date, Account Number and Score are being pulled from 5DailyPlayers. I need
to put numbers 1-30 in the PrizeOrder field. Please tell me how I can do
this. I want to auto number thru the query.
Here is my existing SQL:
SELECT TOP 30 [5DailyPlayers].Date, [5DailyPlayers].PrizeOrder,
[5DailyPlayers].[Account Number], [5DailyPlayers].Score,
[5DailyPlayers].Prize INTO 13DailySort
FROM 5DailyPlayers
WHERE ((([5DailyPlayers].Status) Is Null))
ORDER BY [5DailyPlayers].Score DESC;
I have tried out several of the solutions given, and can't seem to make it
work for me. Please Help!
I have a table: 5DailyPlayers
I have a query: 12SortDailyWinners
With this query I am sorting the Scores descending, and pulling the top 30
records. I am putting the results in a new table: 13DailySort. I am using
the following fields: Date, PrizeOrder, Account Number, Score, Prize. The
Date, Account Number and Score are being pulled from 5DailyPlayers. I need
to put numbers 1-30 in the PrizeOrder field. Please tell me how I can do
this. I want to auto number thru the query.
Here is my existing SQL:
SELECT TOP 30 [5DailyPlayers].Date, [5DailyPlayers].PrizeOrder,
[5DailyPlayers].[Account Number], [5DailyPlayers].Score,
[5DailyPlayers].Prize INTO 13DailySort
FROM 5DailyPlayers
WHERE ((([5DailyPlayers].Status) Is Null))
ORDER BY [5DailyPlayers].Score DESC;