I have a table like this
MessageID (autonumber), ParentMessageID, Message, User
I would like to create a SQL INSERT
query that will populate ParentMessageID
with the same result as MessageID
.
Can this be done in one query instead of using server side coding to insert the first row and then update the record with the ParentMessageID.