create table t_m1(
id bigint auto_increment not null,
InstrumentID varchar(50) not null default '',
TradingDay date not null default '1900-01-01',
UpdateTime time not null default '00:00:00',
LastPrice decimal(10, 2) not null default 0,
PreClosePrice decimal(10, 2) not null default 0,
OpenPrice decimal(10, 2) not null default 0,
HighestPrice decimal(10, 2) not null default 0,
LowestPrice decimal(10, 2) not null default 0,
Volume int not null default 0,
LowerLimitPrice decimal(10, 2) not null default 0,
primary key(id)
);
MySQL期货数据表建立
最新推荐文章于 2025-11-24 20:48:20 发布
1858

被折叠的 条评论
为什么被折叠?



