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.
meituan/db.sql

14 lines
375 B

create table meishi(
poiId int not null,
frontImg varchar(128) not null,
title varchar(128) not null,
avgScore float not null,
allCommentNum int not null,
address varchar(128) not null,
avgPrice int not null,
hasAds tinyint not null,
adsClickUrl varchar(2048),
adsShowUrl varchar(2048),
constraint meishi_pk
primary key (poiId)
)