|
Posted by SJ on 01/31/07 00:00
Can someone help me with an advanced query?
I have two tables
Table 1: Employees
Cols: UID, lname, fname
Table 2: StatEntry
Cols: UID, Timestamp, description
The queary should reaturn all the information in both tables. If more
than one entry exists in the second table, it should return the one
with the greatest timestamp. If not entries exist I would like the
second table columns set to "no value"
Something link:
select Employees.*,StatEntry.* from Employees JOIN StatEntry ON
employees.uid == statentry.uid WHERE timestamp in (select
MAX(timestamp) from statentry where uid=employees.uid).
Anyone db guru's out there?
-SJ
Navigation:
[Reply to this message]
|