表名Height_Reward
有两列如果相同则不能插入
示例
Type Periods
1 2014
如果再插入 type(1) 并且 Periods(2014) 则不允许插入。
SQLSERVER2008
------解决思路----------------------
ALTER TABLE Height_Reward
ADD CONSTRAINT UQ_Height_Reward UNIQUE ([Type] , Periods);
GO
ALTER TABLE Height_Reward
ADD CONSTRAINT UQ_Height_Reward UNIQUE ([Type] , Periods);
GO