Hi.
I have two related tables:
User
Product
the primary key user_id is a foreign key in Product.
I need to do a select to find a particular user (easy) then use that resultset to automatically insert the user_id in the User table into a new Product record. i.e. appending a product to a user
Any idea how to do this.
Many thanks
LF