1.创建表结构和数据

Create Table Product --产品表
(
ProductID 
Int Identity(1,1Primary key--产品ID
ProductName NVarchar(100Not Null--产品名称
ProductPrice Int Not Null--价格
)
GO

Create Table ProductOrder --产品订单
(
OrderID 
Int Identity(1000,1Primary key,
ProductID 
Int,
Quantity 
Int,--数量
amount Int,--金额
OrderDateTime DateTime Not Null --下单时间
)
Alter Table ProductOrder
Add Constraint FK_ProductOrder_ProductID Foreign Key(ProductID)
References Product(ProductID)
GO


Insert Into Product
Values('黄金',389.8)

Insert Into Product
Values('白银',8.9)

Insert Into ProductOrder
Values(1,10,3890,GetDate())

Insert Into ProductOrder
Values(2,1000,8900,GetDate())

Insert Into ProductOrder
Values(1,150,389.8*150,'2012-12-21')

Insert Into ProductOrder
Values(1,60000,388*60000,'2011-10-1')

Insert Into ProductOrder
Values(2,10000,88950,GetDate())

Insert Into ProductOrder
Values(2,1000,8850,GetDate())

Insert Into ProductOrder
Values(2,4000,32850,GetDate())

Select * from Product
Select * from ProductOrder

相关文章: