Skip to content

Instantly share code, notes, and snippets.

@mpstenson
Last active October 10, 2016 13:57
Show Gist options
  • Save mpstenson/e810e5b6a726deff0c59 to your computer and use it in GitHub Desktop.
Save mpstenson/e810e5b6a726deff0c59 to your computer and use it in GitHub Desktop.
Unread Messages across an installation
select * from HS_Request
where xRequest
in
(select xRequest from
`HS_Request` as RH
where `iLastReadCount` < (select COUNT(*) from `HS_Request_History`
where xRequest = RH.xRequest)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment