![]() |
|
Porsche, and the Porsche crest are registered trademarks of Dr. Ing. h.c. F. Porsche AG.
This site is not affiliated with Porsche in any way. Its only purpose is to provide an online forum for car enthusiasts. All other trademarks are property of their respective owners. |
|
![]() |
SirAndy |
![]() ![]()
Post
#1
|
Resident German ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Admin Posts: 42,234 Joined: 21-January 03 From: Oakland, Kalifornia Member No.: 179 Region Association: Northern California ![]() |
it's time for another SQL question ...
here's the problem: i have a table with event log information. it has a unique id for each entry (primary key), a user id, timestamp and other info. getting the info out of the table is easy except for one particular way. what i need is a page where i list all the last actions taken by any user per day. meaning, if users xyz created 30 logentries today, i only want to show the latest for any given day. so, the list should contain exactly ONE entry for each distinct user per day, showing his/her latest action ... something like this, except, the query below doesn't work ... (IMG:style_emoticons/default/rolleyes.gif) CODE SELECT * FROM tbl_EventLog WHERE iID IN ( SELECT DISTINCT el.iUserID, dummy.iID FROM tbl_EventLog as el INNER JOIN tbl_EventLog as dummy ON dummy.iUserID = el.iUserID WHERE (el.dtCreated >= '3/26/2007 0:00:01 AM') ) anyone? (IMG:style_emoticons/default/confused24.gif) Andy |
![]() ![]() |
bigkensteele |
![]()
Post
#2
|
Major Member ![]() ![]() ![]() ![]() Group: Members Posts: 2,200 Joined: 30-August 04 From: Cincinnati, OH Member No.: 2,660 Region Association: South East States ![]() ![]() |
I have kicked this around for a half hour, and I think that the most efficient way to do it would be a to create a work table using something like this:
SELECT xxx.user, xxx.date, Max(xxx.time) AS MaxTime INTO WORKTABLE FROM xxx GROUP BY xxx.user, xxx.date HAVING xxx.date = 03/26/2007; Then do a join of table xxx and WORKTABLE using user, date, and time = MaxTime. SELECT xxx.* FROM WORKTABLE INNER JOIN xxx ON (WORKTABLE.user = xxx.user) and (WORKTABLE.date = xxx.date) and (WORKTABLE.MaxTime = xxx.time); With the above solution, I would create an additional index on your table over the user, date and time columns. However, if your primary key is a sequentially assigned numeric, you could include that in the first query as SELECT Last(xxx.key) AS LastKey, xxx.user, xxx.date, Max(xxx.time) AS MaxTime INTO WORKTABLE FROM xxx GROUP BY xxx.user, xxx.date HAVING xxx.date = 03/26/2007; and then your second query would only need to be SELECT xxx.* FROM WORKTABLE INNER JOIN xxx ON (WORKTABLE.LastKey = xxx.key); Hope this helps, please let us know what you end up doing. BKS |
![]() ![]() |
![]() |
Lo-Fi Version | Time is now: 3rd July 2025 - 05:40 AM |
All rights reserved 914World.com © since 2002 |
914World.com is the fastest growing online 914 community! We have it all, classifieds, events, forums, vendors, parts, autocross, racing, technical articles, events calendar, newsletter, restoration, gallery, archives, history and more for your Porsche 914 ... |