Hello I am making a reservation system and I am having troubles with my table can someone help me with my problem. I have a table customer and a table reservation. My customer table handles all the customers personal info and the reservation handles the reservation details.
My customer table has a customer ID which is a primary key and auto increment. and my reservation table has a reservation ID which is a primary key and auto increment.
MY PROBLEM IS... How could I connect the two?
I have a big problem on how to join them in my select statement because I dont know what values will I join.
*Note: Btw, I'm using c# winform and I seperated the add customer and add reservation details. I am also wondering if I can include the 2 insert statement in one button or add them seperately..