码迷,mamicode.com
首页 > 其他好文 > 详细

礼品进销存

时间:2015-03-17 18:17:54      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:进销存   null   create   identity   明细表   

--创建礼品进销存明细表

create table BFCRM.HYK_JFFHLPJXCITEM(
 JLBH      int         identity, --记录编号
 JZRQ  date       not null,  --记账日期
 LPDM  varchar(6) not null, --礼品代码
 LPMC  varchar(20) not null, --礼品名称
 LPJJ float not null, --礼品进价
 LPSJ   float not null, --礼品售价
 JHSL  int   not null, --进货数量
 JHJE float   not null, -进货金额
 DHSL int   not null, --兑换数量
 DHJE float   not null, --兑换金额
 JCSL int not null, --结存数量
 JCJE float not null, --结存金额
 constraint PK_HYK_JFFHLPJXCITEM PRIMARY KEY CLUSTERED (JLBH)
 )
 with identity_gap=1

礼品进销存

标签:进销存   null   create   identity   明细表   

原文地址:http://lj1987.blog.51cto.com/167978/1621495

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!