sell 專案 訂單表 設計 及 建立

2022-06-29 08:06:08 字數 909 閱讀 3152

1.資料庫設計

2.訂單表 建立

/**

* 訂單表

*/create table `order_master` (

`order_id` varchar(32) not null,

`buyer_name` varchar(32) not null comment '買家名字',

`buyer_phone` varchar(32) not null comment '買家**',

`buyer_address` varchar(128) not null comment '買家位址',

`order_amount` decimal(8,2) not null comment '訂單總金額',

`order_status` tinyint(3) not null default '0' comment '訂單狀態,預設0新下單',

`pay_status` tinyint(3) not null default '0' comment '支付狀態,預設0未支付',

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

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

primary key (`order_id`),

key `idx_buyer_openid` (`buyer_openid`)

) comment '訂單表';

sell 專案 商品表 設計 及 建立

1.資料庫表之間的關係說明 2.資料庫設計 3.建立 商品表 商品表 create table product info product id varchar 32 not null,product name varchar 64 not null comment 商品名稱 product pric...

(八)訂單表設計

id int unsigned primary key auto increment comment 主鍵 code varchar 200 not null comment 流水號 type tinyint unsigned not null comment 訂單型別 1實體銷售,2網路銷售 sh...

訂單系統訂單表設計方案

一年前,在上一家公司接手了乙個含有訂單系統的專案,業務並不複雜,但是當時令我比較困惑的是訂單表的設計。困惑的點主要是隨著訂單量增加,單錶的儲存能力將達到瓶頸,必然要採用分表的方案,那麼按照什麼維度拆分合適呢?分表之後帶來的最大的挑戰是訂單查詢。如果以使用者為中心,採用userid取模,可以很方便的處...