坐标地址

看清楚-----那个飞的风筝才是我

 

数据表 键值定义

PK - Primary Key

IX - Non-Unique Index

AK - Unique Index (AX should have been AK (Alternate Key))

CK - Check Constraint

DF - Default Constraint

FK - Foreign Key

UQ - Unique Constraint

 



SQL中PK,FK意思:
--主键
constraint PK_字段 primary key(字段),

--唯一约束
constraint UK_字段 unique key(字段),

--默认约束
constrint DF_字段 default('默认值') for 字段,

--检查约束
constraint CK_字段 check(约束。如:len(字段)>1),

--主外键关系
constraint FK_主表_从表 foreign(外键字段) references 主表(主表主键字段)

替代键的解释(alternate key)

SQL技巧:唯一性约束

    所谓唯一性约束(unique constraint)不过是数据表内替代键的另一个名称而已。替代键(alternate key)可以是数据表内不作为主键的其他任何列,只要该键对该数据表唯一即可。换句话说,在唯一列内不允许出现数据重复的现象。比方说,你可以用车辆识别代号(VIN)作为汽车(Automobile)数据表的替代键,在汽车数据表里,主键是汽车识别号(Automobile Identification),这是一种由系统自动生成的ID。你可以在汽车表内对VIN施加唯一性约束,同时再创建一个需要VIN的表。在这个新表内可以声明外键指向汽车表。这样,只要汽车表内有VIN输入数据库就会检验VIN输入结果。这就是保证数据库内数据完整性的另一种有效的措施。

    以下是演示唯一性约束作为外键引用点的示例代码:

    create table parent
    (parent_id int not null,      -- Primary key
    parent_alternate_key int not null,     -- Alternate key
    parent_col1 int null,
    parent_col2 int null,
      constraint pk_parent_id primary key (parent_id),
      constraint ak_parent_alternate_key unique_
       (parent_id, parent_alternate_key)
    )
    go
    insert parent values ( 1, 10, 150, 151)
    insert parent values ( 2, 11, 122, 271)
    insert parent values ( 3, 12, 192, 513)
    insert parent values ( 4, 13, 112, 892)
    go
    create table child2
    (child2_parent_id int not null,     -- Primary key/Foreign key
    child2_id int not null,     -- Primary key
    child2_col1 int null,
    child2_parent_alternate_key int not null,  -- Foreign key
        constraint pk_child2 primary key (child2_parent_id, child2_id),
        constraint fk_child2_parent foreign key (child2_parent_id) 
    references dbo.parent(parent_id),
        constraint fk_pk_ak_child2_parent foreign key _
      (child2_parent_id, child2_parent_alternate_key) _
      references dbo.parent(parent_id, parent_alternate_key)
    )
    go
    insert child2 values (1,1,34,10)
    insert child2 values (4,2,34,13)
    insert child2 values (2,3,34,11)
    go
    insert child2 values (1,4,34,23)   -- This one will fail
    go

posted on 2017-07-26 14:03  Augur  阅读(375)  评论(0编辑  收藏  举报

导航