码迷,mamicode.com
首页 > 数据库 > 详细

SQL server 语句创建表

时间:2018-08-07 00:37:36      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:信息   数据库   img   odi   商品   info   arc   创建   arch   

use uer --纸箱当前所操作的数据库
go
--创建商品类别表
create table Commoditysort (
SortId int IDENTITY(1,1) NOT NULL,--类别ID
SortName varchar(50) NOT NULL --类别名称
)
go

--商品信息表

use uer
go
create table CommodityInfo(
CommodityID int IDENTITY(1,1) NOT NULL,--商品的ID
Sortid int NOT NULL,--外键、商品的类别
CommodityName varchar(50) NOT NULL,--商品名称
Picture image,--商品图片
InPrice float NOT NULL,--商品的进货价
OutPrice float NOT NULL,--商品的零售价
Amount int not null --商品库存量
)
go技术分享图片

SQL server 语句创建表

标签:信息   数据库   img   odi   商品   info   arc   创建   arch   

原文地址:https://www.cnblogs.com/tangtangsimida/p/9434134.html

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