primary key and foreign key

前端 未结 4 2102
滥情空心
滥情空心 2021-01-25 05:57

I have 3 tables

   Student    Loan    Book
 - StudentID  LoanID  BookID

which foreign keys do i need to set so when given the student name, sea

相关标签:
4条回答
  • 2021-01-25 06:08

    Not sure what columns you have, assuming you have studentId in student table, it would be best candidate for primary in Student and foriegn in other two tables.

    0 讨论(0)
  • 2021-01-25 06:10

    you have to use studentid as foreign key in both the other tables...because you want to search on the basis of student. so this key should go in the remaining tables

    0 讨论(0)
  • 2021-01-25 06:21

    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 dbo.Books
    (
      BookID INT PRIMARY KEY,
      -- , other columns about books
    );
    
    CREATE TABLE dbo.StudentBooks
    (
      StudentID INT NOT NULL FOREIGN KEY REFERENCES dbo.Students(StudentID),
      BookID    INT NOT NULL FOREIGN KEY REFERENCES dbo.Books(BookID)
    );
    
    0 讨论(0)
  • 2021-01-25 06:33
    Student
    --------      
    Studentid -PK
    
    Loan
    ---------
    Loanid  - PK
    Studentid -FK
    
    
    Book
    -------
    Bookid  -PK
    Loanid   -FK
    
    0 讨论(0)
提交回复
热议问题