I am having a problem with dropping two tables that have keys to each other. I am trying to drop the key before dropping the table and am having not luck with the synax for dropping the key. Can anyone help?---- SQL to drop all our tables--IF OBJECT_ID('GlucoseReading') IS NOT NULL DROP TABLE GlucoseReadingGOIF OBJECT_ID('DiabeticAccount') IS NOT NULL DROP TABLE DiabeticAccountGOIF OBJECT_ID('DoctorAccount') IS NOT NULL DROP TABLE DoctorAccountGOIF OBJECT_ID('Diabetic') IS NOT NULL ALTER TABLE Diabetic DROP doctorID DROP TABLE DiabeticGOIF OBJECT_ID('Doctor') IS NOT NULL ALTER TABLE Doctor DROP diabeticID DROP TABLE DoctorGO---- SQL to create our tables.--Create Table Diabetic ( diabeticID INT IDENTITY PRIMARY KEY, name VARCHAR(100) NOT NULL, diabetesType BIT )Create Table DiabeticAccount ( diabeticAccountID INT IDENTITY PRIMARY KEY, diabeticID INT REFERENCES Diabetic NOT NULL, userName VARCHAR(16) NOT NULL, password VARCHAR(20) NOT NULL, email VARCHAR(50) NOT NULL, lastIPAddress VARCHAR(11) NOT NULL, lastActive DATETIME NOT NULL) Create Table GlucoseReading ( glucoseReadingID INT IDENTITY PRIMARY KEY, diabeticID INT REFERENCES Diabetic NOT NULL, glucoseResult FLOAT NOT NULL, glucoseDateTime DATETIME NOT NULL, meal BIT, mealEntry VARCHAR(MAX), exercise VARCHAR(MAX), notes VARCHAR(MAX), doctorNotes VARCHAR(MAX) UNIQUE (glucoseDateTime))Create Table Doctor ( doctorID INT IDENTITY PRIMARY KEY, diabeticID INT REFERENCES Diabetic, name VARCHAR(100) NOT NULL,)Create Table DoctorAccount ( doctorAccountID INT IDENTITY PRIMARY KEY, doctorID INT REFERENCES Doctor NOT NULL, userName VARCHAR(16) NOT NULL, password VARCHAR(20) NOT NULL, email VARCHAR(50) NOT NULL, lastIPAddress CHAR(11) NOT NULL, lastActive DATETIME NOT NULL)---- SQL to add a column to tablesALTER TABLE Diabetic ADD doctorID INT REFERENCES Doctor;