我有一张名为orders的表。 它有一个pimary键“Order_ID”,它有文件“Customer_ID”和“Product_ID”。 我怎么能这样做,Customer_ID和Product_ID的每个组合都是唯一的? 谢谢!
答案 0 :(得分:2)
在Customer_ID + Product_ID上创建唯一索引
为此,在设计视图中打开表,在customer_id上创建唯一索引,然后打开Indexes弹出窗口并将ProductId字段添加到该索引。
----编辑:
最后,索引列表应显示:
Primary Key Order_id
MyIndex1 Customer_ID
Product_ID