sql中添加唯一索引(非主键)

if OBJECT_ID('tempdb..#tem') is not null drop table #tem
create table #tem (aa nvarchar(20))

alter table #tem add constraint UQ_aa unique (aa)
insert into #tem(aa) values ('1')
insert into #tem(aa) values (' ')
insert into #tem(aa) values (' ')

posted @ 2012-07-13 13:42  y0umer  阅读(350)  评论(0编辑  收藏  举报