Answers for "QUITAR UNIQUE DE UNA TABLA SQL SERVER"

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

Code answers related to "QUITAR UNIQUE DE UNA TABLA SQL SERVER"

Code answers related to "SQL"

Browse Popular Code Answers by Language