三张表的结构如下【涉及到的字段】
(1)、客户表(cst_customer)
列 类型 大小 描述 是否为空
cust_no int 17 客户编号(主键) 否
cust_name nvarchar 100 客户姓名(公司名称) 否
(2)、客户订单表(cst_order)
列 类型 大小 描述 是否为空
odr_id int (订单编号)主键) 否
odr_cust_no int 17 客户编号(cst_customer表cust_no) 否
(3)、订单连接表(order_line)
列 类型 大小 描述 是否为空
odd_id int 系统自动生成(标识列、主键) 否
odd_order_id int 订单编号(cst_order表odr_id) 否
odd_prod_id int 产品编号(pro_product表prod_id) 否
odd_count int 数量 否
odd_price money 价格 是