• 2022-06-05
    关系数据库中,主键是(1___),主键的建立有(2___)种方法,当运用Transact-SQL语句创建主键时,可以是(3___)。
    A: 为标识表中唯一的实体
    B: 一二C.三D.四

    C: create table table1
    (column1 char(13) not null primary,
    column2 int not) on primary;
    D: 创建唯一的索引,允许空值
    E: alter table table1 with notcheck add
    constraint [PK_table1] primary key nonclustered
    ( column1) on primary;
    F: 只允许以表中第一字段建立
    G: alter table table1 column1 primary key ;
    H: 允许有多个主键的
  • 举一反三