diff --git a/建表语句.txt b/建表语句.txt new file mode 100644 index 0000000..98951e9 --- /dev/null +++ b/建表语句.txt @@ -0,0 +1,14 @@ +create table outsideSummary_realtime_datas +( + currentConfirmedCount INT comment '现存确诊', + confirmedCount INT comment '累计确诊', + suspectedCount INT comment '现存疑似', + curedCount INT comment '累计治愈', + deadCount INT comment '累计死亡', + suspectedIncr INT comment '新增疑似病例', + currentConfirmedIncr INT comment '新增现存确诊', + confirmedIncr INT comment '新增累计确诊', + curedIncr INT comment '新增治愈', + deadIncr INT comment '新增死亡', + updatedTime VARCHAR(200) comment '更新时间' +) comment '国外疫情实时概况表';