博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
联合主键建立方法
阅读量:5806 次
发布时间:2019-06-18

本文共 401 字,大约阅读时间需要 1 分钟。

create table Cart

(
   [UserID] uniqueidentifier not null,
   [ProductID] int not null,
   [ProductName] varchar(80) not null,
   [Price] [decimal](10, 2) NOT NULL,
   [ImagePath] [varchar](100) NULL,
   Quantity int not null,
   IsAnonymous bit not null
)

alter table Cart

add constraint [PK_Cart] primary key CLUSTERED([USerID],[ProductID]) on [Primary]

转载于:https://www.cnblogs.com/FlyCat/archive/2012/05/06/2579975.html

你可能感兴趣的文章
Tesla辅助驾驶测试报告遭爆正确性有疑问
查看>>
Android精通之AsyncTask与ListView讲解
查看>>
Linux命令参数详细解析 curl
查看>>
Blockathon,挑战区块链开发,敢不敢来!
查看>>
Java中抽象类和接口有什么异同
查看>>
《iOS开发》系列在线课程
查看>>
重学前端学习笔记(三十一)--JavaScript的语句
查看>>
深浅拷贝数组
查看>>
关于Android中软键盘显示隐藏的监听判断总结
查看>>
iOS数据结构与算法实战 - Binary Tree Traversal
查看>>
DataBining用法<一>
查看>>
开发文档及资源整理
查看>>
Vue 全家桶实现一个移动端酷狗音乐
查看>>
30个Python物联网小实验5:光线感应灯
查看>>
VSCode缩进方式转换
查看>>
【只发精品】匠心打造Vue侧滑菜单组件
查看>>
Django初探一
查看>>
数据结构:快速排序代码(已优化)
查看>>
小猿圈python学习-生成器
查看>>
Kotlin Delegated Properties
查看>>