Microsoft
Software
Hardware
Network
Question : Sql query
I have 2 tables.
tblContacts
ID
Name
LastMessageDate
tblMessages
ID
Message
ContactRef
RecvdDate
Each contact may have many messages. I just added the LastMessageDate field to the Contact table. I want to update it with the most recently recieved message for each contact, as recorded in the tblMessage table.
How can I write a query to do this?
Answer : Sql query
update tblContacts
set LastMessageDate = M.Lmd
from tblContacts C
inner join (select Id, max(LastMessageDate) as LMD from tblMessages group by Id) M
on c.Id = M.Id
Random Solutions
"WinExec Failed:Return=5"
Late binding Outlook - type mismatch on object assignment
run time error 3275 Unexpected error from external database driver 10019.
matrix query
Error dropping shema
Explain Regular Expression
SCCM 2007 MP install failing on windows server 2008 r2
How do I Control Program Access on Windows Server 2008 R2 Terminal Server?
Custom Password Filter Windows 2003
access databse already in use