标签:int har creat font color col size pre port
一、单列唯一
方式一:
create table department( id int unique, name char(10) unique );
方式二:
create table department( id int, name char(10), unique(id), unique(name) );
二、联合唯一
create table services( id int, ip char(15), port int,
unique(id), unique(ip,port) );
标签:int har creat font color col size pre port
原文地址:https://www.cnblogs.com/nanjo4373977/p/12303952.html