sell 專案 商品表 設計 及 建立

2022-06-29 08:06:09 字數 893 閱讀 6969

1.資料庫表之間的關係說明

2.資料庫設計

3.建立 商品表

/**

* 商品表

*/create table `product_info` (

`product_id` varchar(32) not null,

`product_name` varchar(64) not null comment '商品名稱',

`product_price` decimal(8,2) not null comment '單價',

`product_stock` int not null comment '庫存',

`product_description` varchar(64) comment '描述',

`product_icon` varchar(512) comment '小圖',

`category_type` int not null comment '類目編號',

`create_time` timestamp not null default current_timestamp comment '建立時間',

`update_time` timestamp not null default current_timestamp on update current_timestamp comment '修改時間',

primary key (`product_id`)

) comment '商品表';

sell 專案 訂單表 設計 及 建立

1.資料庫設計 2.訂單表 建立 訂單表 create table order master order id varchar 32 not null,buyer name varchar 32 not null comment 買家名字 buyer phone varchar 32 not nul...

設計商品分類表 mysql 商品分類表設計

標籤 所要做的業務如下圖所示 表設計有兩種方法 方法1 商品分類表 category 包括字段 id,name,parentid 注 id為自增,第一級的父類id設計為0。商品與分類關聯表 product category 包括字段 id,product,category 注 商品在新增時,與最後一...

sku商品表設計

表關係 分類表 商品表 sku表 庫存表 分類表 屬性名 屬性值 商品表 商品和屬性關係表 屬性名 屬性值 業務邏輯 1.同一商品不同sku庫存和售價不同.2.不同型別的商品具有不同的屬性名和屬性值 如汽車和服飾 所以屬性需要支援後期新增和維護.3.在某個商品分類下通過屬性篩選商品.4.商家某件商品...