Answers for "How to alter multiple primary key in existing table mysql"

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 "How to alter multiple primary key in existing table mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language