各种表_2

本文介绍了三个数据库表的设计,包括position表(广告位置信息)、区域表(地区层级结构)和商品属性表(商品分类及其属性),展示了如何使用SQL语句创建这些关系型数据库表。
摘要由CSDN通过智能技术生成

1.position表

CREATE TABLE `wst_ad_psoitions` (
  `positionld` int(11) NOT NULL COMMENT '自增id',
  `position Type` tinyint(4) NOT NULL DEFAULT '0' COMMENT '广告类型',
  `positionName` varchar(100) NOT NULL COMMENT '广告位置名称',
  `positionWidth` int(11) NOT NULL DEFAULT '0' COMMENT '建议宽度',
  `positionHeight` int(11) NOT NULL DEFAULT '0' COMMENT '建议高度',
  `dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '有效状态',
  `positionCode` varchar(20) DEFAULT NULL COMMENT '广告位置码',
  `apSort` int(11) NOT NULL COMMENT '排序号',
  PRIMARY KEY (`positionld`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

2.区域表

CREATE TABLE `区域表wst_areas` (
  `areald` int(11) NOT NULL COMMENT '自增id',
  `parentid` int(11) NOT NULL COMMENT '父id',
  `areaName` varchar(100) NOT NULL COMMENT '地区名称',
  `isShow` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否显示',
  `areaSort` int(11) NOT NULL DEFAULT '0' COMMENT '排序号',
  `areaKey` char(10) NOT NULL COMMENT '地区首字母',
  `areaType` tinyint(4) NOT NULL DEFAULT '1' COMMENT '级别标志',
  `dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '删除标志',
  `create Time` datetime DEFAULT NULL COMMENT '创建时间',
  PRIMARY KEY (`areald`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

3.商品属性表

CREATE TABLE `商品属性表wst_attributes` (
  `attrld` int(11) NOT NULL COMMENT '自增id',
  `goodsCatld` int(11) NOT NULL DEFAULT '0' COMMENT '最后一级商品分类id',
  `goodsCatPath` varchar(100) NOT NULL COMMENT '商品分类路径',
  `attrName` varchar(100) NOT NULL COMMENT '属性名称',
  `attrType` tinyint(4) NOT NULL DEFAULT '0' COMMENT '属性类型',
  `attrVal` text COMMENT '属性值',
  `attrSort` int(11) NOT NULL DEFAULT '0' COMMENT '排序号',
  `isShow` tinyint(4) DEFAULT '1' COMMENT '是否显示',
  `dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '有效状态',
  `create Time` datetime NOT NULL COMMENT '创建时间',
  `shopld` int(11) DEFAULT '0' COMMENT '店铺id',
  PRIMARY KEY (`attrld`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值