赞
踩
SQL UNIQUE 约束
UNIQUE 约束唯一标识数据库表中的每条记录。
UNIQUE 和 PRIMARY KEY 约束均为列或列集合提供了唯一性的保证。
PRIMARY KEY 拥有自动定义的 UNIQUE 约束。
创建单个列的约束:
alter table t_category add CONSTRAINT unique_index_t_category_category_name unique (category_name)
创建多个列的约束
alter table t_category add CONSTRAINT unique_index_t_category_category_name_parent_id unique (category_name,
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。