1
0
This repository has been archived on 2025-01-12. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
stock_learning/0_材料准备/table.sql
2024-12-30 22:37:50 +08:00

14 lines
497 B
SQL

create table if not exists target
(
code varchar(50) not null primary key comment '编码',
name varchar(100) not null comment '名称',
description varchar(500) comment '描述',
market varchar(10) not null default '' comment '市场',
type varchar(10) not null comment '类型: stock, fund, etf'
);
create table if not exists daily
(
code varchar(50) not null comment '编码',
date date not null comment '日期'
);