联合主键创建的语法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了联合主键创建的语法相关的知识,希望对你有一定的参考价值。
create table cartitem
(
uid int not null ,
bid int not null,
count int,
bookname varchar(200),
price decimal(12,0),
image varchar(200),
primary key(uid,bid)
)
以上是关于联合主键创建的语法的主要内容,如果未能解决你的问题,请参考以下文章