From c8c1fbb7722cb031c86df49a8b908989a1219931 Mon Sep 17 00:00:00 2001 From: Chinaholmesfans <50159534+Chinaholmesfans@users.noreply.github.com> Date: Thu, 13 Aug 2020 22:37:10 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- InsideSummarysql.sql | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 InsideSummarysql.sql diff --git a/InsideSummarysql.sql b/InsideSummarysql.sql new file mode 100644 index 0000000..7f01d40 --- /dev/null +++ b/InsideSummarysql.sql @@ -0,0 +1,20 @@ +create table home_realtime_datas + ( + curConfirm INT comment '现有确诊', + curConfirmRelative INT comment '较昨日新增确诊', + asymptomatic INT comment '无症状感染', + asymptomaticRelative INT comment '较昨日新增无症状感染', + unconfirmed INT comment '现有疑似', + unconfirmedRelative INT comment '较昨日疑似新增', + icu INT comment '现有重症', + icuRelative INT comment '较昨日重症病例新增', + confirmed INT comment '累计确诊', + confirmedRelative INT comment '较昨日累计确诊新增', + overseasInput INT comment '累计境外输入', + overseasInputRelative INT comment '较昨日累计境外输入新增', + cured INT comment '累计治愈', + curedRelative INT comment '较昨日累计治愈新增', + died INT comment '累计死亡', + diedRelative INT comment '较昨日累计死亡新增', + updatedTime VARCHAR(4000)comment'发布时间' + ) comment'国内实时疫情概况 该表中只保留当前最新的一条数据记录'; \ No newline at end of file