ProInStore.sql
上传用户:biney012
上传日期:2022-05-09
资源大小:4592k
文件大小:0k
源码类别:

数据库系统

开发平台:

Visual C++

  1. USE Stock
  2. GO
  3. CREATE TABLE ProInStore
  4.   (SpId int PRIMARY KEY IDENTITY,
  5.    Pid int NOT NULL,
  6.    Pprice decimal(15, 2),
  7.    Pnum int,
  8.    MakeDate char(10),
  9.    Sid int
  10.   )
  11. GO