primary key and foreign key
问题 I have 3 tables Student Loan Book - StudentID LoanID BookID which foreign keys do i need to set so when given the student name, search all loan from that student and display the book detail 回答1: Here's a start with such vague requirements: CREATE TABLE dbo.Students ( StudentID INT PRIMARY KEY -- , other columns about students ); CREATE TABLE dbo.Loans ( LoanID INT PRIMARY KEY, StudentID INT NOT NULL FOREIGN KEY REFERENCES dbo.Students(StudentID) -- , other columns about loans ); CREATE TABLE