标签: mysql sql
我想在我的SQL表中实现Candidate键。
我的表格中有id, city, state列
id, city, state
如何在城市和州列上制作候选键。
答案 0 :(得分:4)
ALTER TABLE MyTable ADD UNIQUE KEY `my_unique_key` (`city`, `state`);