Jump to content

Inserting into two tables.


soos

Recommended Posts

TABLE 1

id : primary key

title

category

timestamp

album_id

user_id

 

and

 

TABLE TWO

album_id : primary key

 

 

When inserting values into table one I want create an album for it that would be identifiable with album_id. 

 

So, my question is:

How do I insert values into both tables in a single query? Thanks for the help in advance.  :shy:

 

Link to comment
Share on other sites

Hi

 

You can't insert into 2 tables at once.

 

You can insert to the 2nd table, get the last insert id and then use that when inserting into the first table.

 

If you want to make sure it all works you can use commit / rollback.

 

All the best

 

Keith

 

Thanks Keith for you help, but I still don't quite understand.  Can you show me an example of how the query should look?  :shrug: (sorry, I'm a newbie in msyql)

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.