You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
703 B
15 lines
703 B
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 '国外疫情实时概况表';
|