sql >> Database >  >> RDS >> Sqlserver

primaire sleutel en buitenlandse sleutel

Hier is een begin met zulke vage vereisten:

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)
);


  1. Gebruikers en authenticatie beheren in MySQL

  2. Verwijderen uit tabel met kolom van andere tabel

  3. Reproduceer MySQL-fout:de server heeft de verbinding verbroken (node.js)

  4. Hoe sql-injectie in nodejs voorkomen en vervolgen?