- 论坛徽章:
- 27
|
建立两张表即可,一张保存股票公司信息,一张是每天的信息表,中间用code_id做外键
- drop table if exists stock_code;
- drop table if exists stock_day;
- /*==============================================================*/
- /* Table: stock_code */
- /*==============================================================*/
- create table stock_code
- (
- code int not null auto_increment,
- name varchar(20) not null,
- businesstype varchar(40) not null,
- primary key (code)
- )
- comment = "股票公司信息表"
- type = InnoDB;
- /*==============================================================*/
- /* Table: stock_day */
- /*==============================================================*/
- create table stock_day
- (
- id int not null auto_increment,
- code_id int not null,
- price_close float not null,
- price_open float not null,
- price_high float not null,
- price_low float not null,
- time timestamp not null
- )
- comment = "股票每天表"
- type = InnoDB;
- alter table stock_day add constraint FK_Reference_1 foreign key (code_id)
- references stock_code (code) on delete restrict on update restrict;
复制代码 |
|