From af89de0cc4438a06b3bc16f09e8028de89159c02 Mon Sep 17 00:00:00 2001 From: priest05 <1844628207@qq.com> Date: Fri, 14 Aug 2020 20:21:42 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BB=BA=E8=A1=A8=E8=AF=AD=E5=8F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 建表语句.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 建表语句.txt 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 '国外疫情实时概况表';