Here's the simple query I have so far:
SELECT H.*, G.GameName
FROM GamePageHits H, Games G
WHERE H.GameID = G.GameID
I need a more powerful query that does the following:
Returns the total number of hits for each GameID, during a specified range of dates, sorted DESC by game ID.
This is beyond my current skills. Much thanks.
SELECT H.*, G.GameName
FROM GamePageHits H, Games G
WHERE H.GameID = G.GameID
I need a more powerful query that does the following:
Returns the total number of hits for each GameID, during a specified range of dates, sorted DESC by game ID.
This is beyond my current skills. Much thanks.