|
Posted by figital on 10/01/28 11:41
I'm not sure why you need a nested query as others have suggested.
I see two options:
Select Distinct blah1, blah2, [all fields except event_id], blah99
>From LoginTable
or
Select blah1, blah2, [all fields except event_id], blah99
>From LoginTable
Group by blah1, blah2, [all fields except event_id], blah99
if you want an event_id, just for kicks, you could add an aggregator:
Select blah1, blah2, max(event_id), blah99
>From LoginTable
Group by blah1, blah2, [all fields except event_id], blah99
Navigation:
[Reply to this message]
|