Skip to content
Advertisement

SQL query: a stored procedure that receive user ProfileId and get table messages contact list

I need a help with a complicated select query.I have message table

I need a stored procedure that receive user ProfileId and get table messages contact list, something like this:

  • ContactProfileId (ProfileId that user has sent message or has received message),
  • AllMessagesCount (all sent/received messages count to/from ContactProfileId),
  • NewMessagesCount (new messages count received from ContactProfileId),
  • LastMessageDateTime (last message datetime from/to ContactProfileId),
  • some ContactProfileId profile information joined from Profile table.

Any ideas how can I achieve that result?
Updated:Here Is the example of some data

result of SP when parameter ProfileId=3 must be this

Advertisement

Answer

Or, using CTEs:

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement