I am attempting to build a membership application, that when people sign up, their personal data (i.e. name address, etc.) goes into a table called tblPersonalData and their Username & Password info goes into another called tblLoginData. Each of these tables has a column called UserID, that I have set as an identity column so that it auto-increments each time a new user signs up. My question is how do I make it so that the 2 UserID columns in each table are directly related. I am concerned that 2 people will sign up at the same time and accidentally get each other's username and or password, etc.