Mysql – Is it redundant to set your primary key as a unique key

MySQLmysql-workbenchprimary-keyunique-constraint

I'm putting tables together in MySQL workbench and I'm currently ticking my primary keys to also be uniquely indexed. Is this a redundant configuration?

Best Answer

In MySQL, like in most other DBMS, each primary key is already indexed, so it is not necessary to ask for explicit indexing.