我想在SQL Server 2008中创建表,但是我不知道如何创建复合主键。我该如何实现?
3 回答
catspeake
TA贡献1111条经验 获得超0个赞
create table my_table (
column_a integer not null,
column_b integer not null,
column_c varchar(50),
primary key (column_a, column_b)
);
- 3 回答
- 0 关注
- 718 浏览
添加回答
举报
0/150
提交
取消