I am trying to choose the single row from table Responses that meets a couple of conditions AND has the most recent date in the update_datetime field. (I actually want ALL the fields from the Responses row, but I'll settle for just its response_uuid.)
My attempt at this query, below, yields the error "An expression of non-boolean type specified in a context where a condition is expected, near ')'". What on earth am I doing wrong?
select response_uuid, MAX(update_datetime)
from Responses
where question_id=2115
and session_uuid in (
select session_uuid from Sessions
where client_uuid = '552782A2-4DC6-4715-B278-4C7F5F867975'
)
group by response_uuid
having MAX(update_datetime)
I've stared at similar questions all over the interwebs, and I'm just not seeing what the issue is. Thank you for any help!
p.s. This is actually a small part of a much larger query if you're interested in seeing the whole thing, or if seeing it all would be helpful.