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
https://forums.phpfreaks.com/topic/256168-inserting-into-two-tables/
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)

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.