I have two tables and i want join the two of the primary id's in to one
table. the database is mysql.
ex.
Table Item (ID int(10) NOT NULL auto_increment)
Table Actor(ID int(10) NOT NULL auto_increment)
to go in to
Table actor_item(acto r_id, item_id)
is it select then insert or what
table. the database is mysql.
ex.
Table Item (ID int(10) NOT NULL auto_increment)
Table Actor(ID int(10) NOT NULL auto_increment)
to go in to
Table actor_item(acto r_id, item_id)
is it select then insert or what
Comment