Answers for "sql change primary key to composite key"

SQL
0

sql change primary key to composite key

/* For SQL Server/Oracle/MS ACCESS */
    ALTER TABLE  AgentIdentification 
    DROP CONSTRAINT PK_Table1_Col1


    /* For MySql */
    ALTER TABLE  AgentIdentification 
    DROP PRIMARY KEY
Posted by: Guest on May-25-2020

Code answers related to "sql change primary key to composite key"

Code answers related to "SQL"

Browse Popular Code Answers by Language