Monday, March 12, 2012

Multiple table record

I have two table and there are releationsheep between them.

Topic:

topicId, topicName, topicDate

Reply:

replyId,topicId,replyName,replyDate

I want to insert two table at the same time.

Topic: 1,example,10/21/2007

Reply:1,1,example, 10/21/2007

You can only INSERT into one table at a time. So you would need to do 2 INSERTs.

No comments:

Post a Comment