Advertisement
Guest User

Untitled

a guest
Oct 19th, 2018
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
T-SQL 0.13 KB | None | 0 0
  1. ALTER TABLE [dbo].[StudentCourse]  
  2. ADD CONSTRAINT [FK_StudentCourse_Course]
  3. FOREIGN KEY([CourseId])
  4. REFERENCES [dbo].[Course] ([Id])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement