This should be simple, but I can't seem to figure it out.
Here's my table:
class UserEvent(Base):
__tablename__ = 'user_events'
user_id = Column(Integer, ForeignKey('users.user_id'),
primary_key=True, nullable=False)
event_time = Column(DateTime, primary_key=True, nullable=False)
detect_time = Column(DateTime, nullable=False)
new_state = Column(Boolean, nullable=False)
And here's some example data:
+---------+---------------------+---------------------+-----------+
| user_id | event_time | detect_time | new_state |
+---------+---------------------+---------------------+-----------+
| 1 | 2012-11-12 16:12:00 | 2013-01-31 20:55:31 | 1 |
| 1 | 2012-11-12 18:24:00 | 2013-01-31 20:55:33 | 0 |
+---------+---------------------+---------------------+-----------+
I want to find the newest (event_time) UserEvent for each user_id.
I've tried this:
for event, current in session.query(
UserEvent, func.max(UserEvent.event_time)).group_by(
UserEvent.user_id):
The query returns the correct "event" (2012-11-12 18:24:00). However, it is JOINED incorrect (or something) because "current" is True.
No matter how many rows are in the table, I always get back the most recent event_time and OLDEST new_state.