Answers for "what is table level unique constraint"

SQL
1

how to drop a unique constraint in sql

SHOW CREATE TABLE [tableName]
-- Find the constraintID after CONSTRAINT 'constraintID'
ALTER TABLE [tableName] DROP FOREIGN KEY constraintID
Posted by: Guest on October-29-2020
0

unique key

CREATE TABLE students  
(  
S_Id int NOT NULL,  
LastName varchar (255) NOT NULL,  
FirstName varchar (255),  
City varchar (255),  
UNIQUE (S_Id)  
)
Posted by: Guest on October-07-2020

Code answers related to "what is table level unique constraint"

Code answers related to "SQL"

Browse Popular Code Answers by Language