table中定义主键约束的情况下,主键是不会重复的。如果没有设定约束,sql中你可以通过分组查看主键是否重复。SQL:select C,count(C) from(select A||B C from table)group by C