Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask question.(5)

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

ITtutoria

ITtutoria Logo ITtutoria Logo

ITtutoria Navigation

  • Python
  • Java
  • Reactjs
  • JavaScript
  • R
  • PySpark
  • MYSQL
  • Pandas
  • QA
  • C++
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Python
  • Science
  • Java
  • JavaScript
  • Reactjs
  • Nodejs
  • Tools
  • QA
Home/ Questions/How to deal with ''there are no primary or candidate keys in the referenced table'' error?
Next
Answered
lloydbeier
  • 4
lloydbeier
Asked: July 28, 20222022-07-28T17:06:44+00:00 2022-07-28T17:06:44+00:00In: Error

How to deal with ”there are no primary or candidate keys in the referenced table” error?

  • 4

. Advertisement .

..3..

. Advertisement .

..4..

Hi everyone,

Today when I run my program, I get the error ”there are no primary or candidate keys in the referenced table”. 

I have the table definition:

CREATE TABLE [dbo].[Department] (
    [DepartmentID]          INT NOT NULL IDENTITY,
    [DepartmentName]        VARCHAR(50)
)
GO

CREATE TABLE [dbo].[Employee] (
    [EmployeeID]     INT NOT NULL IDENTITY,
    [FirstName]      VARCHAR(50),
    [LastName]       VARCHAR(50),
    [DepartmentID]   INT
)

An employee can only be a member of one department, depending on the business requirements.I add a FOREIGN KEY constraint to the employee exists to ensure that the DepartmentID assigned to the employee exists in the [dbo].[Department] table:

ALTER TABLE [dbo].[Employee]
ADD CONSTRAINT [FK_Employee_Department]
FOREIGN KEY ( [DepartmentID] ) REFERENCES [dbo].[Department] ( [DepartmentID] )

But since the DepartmentID in the [dbo].[Department] is not designated as a PRIMARY KEY on that table, the following error is encountered:

Server: Msg 1776, Level 16, State 1, Line 1
There are no primary or candidate keys in the referenced table 'dbo.Department'
that match the referencing column list in the foreign key 'FK_Employee_Department'.

I don’t know how to fix it? Can you give me some advice?

 

 

  • 1 1 Answer
  • 105 Views
  • 0 Followers
  • 0
Answer
Share
  • Facebook
  • Report

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Best Answer
    hdtutoria Expert
    2022-07-28T17:10:35+00:00Added an answer on July 28, 2022 at 5:10 pm

    The cause: When a FOREIGN KEY constraint is created on a table but the column being referenced as a FOREIGN KEY is not a PRIMARY KEY on the other table, this error occurs.

    Solution: You must first create the PRIMARY KEY constraint in the table that will be used as a reference in the FOREIGN KEY constraint in order to prevent this problem.

    ALTER TABLE [dbo].[Department]
    ADD CONSTRAINT [PK_Department] PRIMARY KEY ( [DepartmentID] )
    GO
    
    ALTER TABLE [dbo].[Employee]
    ADD CONSTRAINT [FK_Employee_Department]
    FOREIGN KEY ( [DepartmentID] ) REFERENCES [dbo].[Department] ( [DepartmentID] )
    GO

    You can construct a UNIQUE index or UNIQUE constraint on the column if the table to be referred by the FOREIGN KEY constraint already has a PRIMARY KEY and it’s not the column to be referenced by the FOREIGN KEY.

    Using a UNIQUE index:

    CREATE UNIQUE INDEX [IX_DepartmentID]
    ON [dbo].[Department] ( [DepartmentID] )
    GO
    
    ALTER TABLE [dbo].[Employee]
    ADD CONSTRAINT [FK_Employee_Department]
    FOREIGN KEY ( [DepartmentID] ) REFERENCES [dbo].[Department] ( [DepartmentID] )
    GO

    Using a UNIQUE constraint:

    ALTER TABLE [dbo].[Department]
    ADD CONSTRAINT [IX_DepartmentID] UNIQUE ( [DepartmentID] )
    GO
    
    ALTER TABLE [dbo].[Employee]
    ADD CONSTRAINT [FK_Employee_Department]
    FOREIGN KEY ( [DepartmentID] ) REFERENCES [dbo].[Department] ( [DepartmentID] )
    GO
    • 3
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

Sidebar

Ask A Question
  • How to Split String by space in C++
  • How To Convert A Pandas DataFrame Column To A List
  • How to Replace Multiple Characters in A String in Python?
  • How To Remove Special Characters From String Python

Explore

  • Home
  • Tutorial

Footer

ITtutoria

ITtutoria

This website is user friendly and will facilitate transferring knowledge. It would be useful for a self-initiated learning process.

@ ITTutoria Co Ltd.

Tutorial

  • Home
  • Python
  • Science
  • Java
  • JavaScript
  • Reactjs
  • Nodejs
  • Tools
  • QA

Legal Stuff

  • About Us
  • Terms of Use
  • Privacy Policy
  • Contact Us

DMCA.com Protection Status

Help

  • Knowledge Base
  • Support

Follow

© 2022 Ittutoria. All Rights Reserved.

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.