text2SQL stringlengths 192 7.27k |
|---|
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 华语电影奖 (
词条id,
名称,
创办时间,
颁奖周期,
颁奖地点)
CREATE TABLE 演员 (
词条id,
姓名,
性别,
年龄,
主演电影数,
出演电影数,
获得提名数,
获奖次数)
CREATE TABLE 电影 (
词条id,
名称,
上映时间,
片长,
票房,
获奖次数)
CREATE TABLE 华语电影奖提名名单 (
年份,
届数... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 菜系 (
词条id,
名称,
起源地区,
起源时间,
口味,
是否是四大菜系,
是否是八大菜系)
CREATE TABLE 菜系分布城市 (
菜系id,
城市,
受欢迎程度,
主要餐厅数量,
分布密度,
版本类型)
CREATE TABLE 菜品 (
词条id,
名称,
起源地,
版本数量,
排名)
CREATE TABLE 菜品对应菜系 (
菜品id,... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 酒店集团 (
词条id,
名称,
总部所在省,
上级主管部门,
酒店数量,
客房数量,
省排名,
中国500最具价值品牌排名,
全球酒店集团300强排名)
CREATE TABLE 酒店 (
词条id,
名称,
酒店地址,
开业时间,
酒店星级,
所属集团id,
客房数量,
大厅容纳人数)
CREATE TABLE 机场 (
词条id,
名称,
所属城市,... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 百城 (
词条id,
城市,
排名,
人口吸引力指数,
同比排名变化,
环比排名变化)
CREATE TABLE 人口来源城市 (
城市id,
人口来源省份,
流入人口占比,
排名)
CREATE TABLE 人口去向城市 (
城市id,
人口去向省份,
流出人口占比,
排名)
CREATE TABLE 流动人口年龄 (
年份,
年龄段,
占比)
CR... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 中国电视剧奖 (
词条id,
名称,
主办单位,
创办时间)
CREATE TABLE 演职员 (
词条id,
姓名,
出生地,
出生日期,
毕业院校,
职业)
CREATE TABLE 电视剧 (
词条id,
名称,
类型,
首播时间,
集数,
豆瓣评分)
CREATE TABLE 历届颁奖晚会 (
年份,
届数,
电视剧奖id,
颁奖地点)
CRE... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 机场 (
词条id,
名称,
机场类型,
地区管理,
航站楼面积,
机位数量,
客运航线,
跑道长度,
省份,
通航日期)
CREATE TABLE 火车站 (
词条id,
名称,
投用日期,
建筑面积,
站台规模,
地址,
省份,
投用日期)
CREATE TABLE 航空公司 (
词条id,
公司名称,
总部地点,
成立时间,
IATA代码,
ICAO... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 建筑奖项 (
词条id,
名称,
发起时间,
发起人,
称号,
总奖金,
评选间隔年数,
举办届数)
CREATE TABLE 建筑奖各国名单 (
奖项id,
国家,
数量)
CREATE TABLE 建筑师 (
词条id,
姓名,
国籍,
毕业院校,
作品数量)
CREATE TABLE 普利兹克奖获奖名单 (
年份,
届数,
获奖人id,
国籍)
... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 公司 (
词条id,
名称,
行业,
校招人数)
CREATE TABLE 学校 (
词条id,
名称,
所在城市,
毕业人数)
CREATE TABLE 学校各专业 (
学校id,
专业,
毕业人数,
专业全国排名,
平均薪资)
CREATE TABLE 公司对口专业 (
公司id,
专业,
对应岗位,
拟招聘人数,
基本工资,
工资幅度)
CREA... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 各省中小学假期 (
省份,
年级,
寒假天数,
暑假天数)
CREATE TABLE 大学假期 (
学校,
所属省份,
寒假天数,
暑假天数)
-- Using valid SQLite, answer the following questions for the tables provided above.
--大学平均寒假少于30天的省都有啥
S... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 公司 (
词条id,
名称,
总部地点,
公司类型)
CREATE TABLE 学校 (
词条id,
学校名称,
成立时间,
所在城市,
所属省份,
所属国家)
CREATE TABLE 联合实验室 (
实验室名称,
所属学校id,
公司id,
联合方向,
开始时间,
合作年数,
论文产出数量)
CREATE TABLE 海外研究中心 (
研究中心,
所... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 篮球运动员 (
词条id,
中文名,
国籍,
出生地,
出生日期,
身高,
体重,
毕业院校,
场上位置)
CREATE TABLE 比赛场馆 (
词条id,
名称,
容纳人数)
CREATE TABLE 篮球俱乐部 (
词条id,
中文队名,
所属地区,
成立时间,
主场馆id,
赛区)
CREATE TABLE 俱乐部现役球员 (
球员id,
俱乐部... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 机场 (
词条id,
名称,
机场类型,
地区管理,
航站楼面积,
机位数量,
客运航线,
跑道长度,
省份,
通航日期)
CREATE TABLE 火车站 (
词条id,
名称,
投用日期,
建筑面积,
站台规模,
地址,
省份,
投用日期)
CREATE TABLE 航空公司 (
词条id,
公司名称,
总部地点,
成立时间,
IATA代码,
ICAO... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 景区 (
词条id,
名称,
占地面积,
景点级别,
旺季门票价格,
淡季门票价格,
始建时间,
所属城市,
所属省份)
CREATE TABLE 景点 (
词条id,
名称,
地理位置)
CREATE TABLE 交通站 (
词条id,
名称,
类型,
景区id,
距离)
CREATE TABLE 景区景点 (
景点id,
景区id,
是否著名)
C... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 应用商店 (
词条id,
名称,
应用软件数,
累计下载次数)
CREATE TABLE 应用商店支持国家 (
应用商店id,
国家,
用户是否可以购买应用程序,
开发人员是否可以出售应用程序)
CREATE TABLE 软件 (
词条id,
名称,
用途)
CREATE TABLE 软件下载量 (
软件id,
应用商店id,
下载量,
评价人数,
好评... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 省份 (
词条id,
名称,
南北区域,
东西区域,
5区域)
CREATE TABLE 平均身高和寿命 (
省份id,
性别,
平均身高,
平均寿命)
CREATE TABLE 各省美女比例 (
省份id,
评价者来自区域,
美女比例,
美女平均颜值分数)
CREATE TABLE 各省市容评分 (
省份id,
评价者来自区域,
市容评分,
市民素质评... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 央视春节晚会 (
词条id,
名称,
届数,
播放频道,
在线播放平台,
主持人,
主持人数量,
收视率,
歌舞节目数量,
语言节目数量,
魔术节目数量)
CREATE TABLE 主持人 (
词条id,
姓名,
毕业院校,
代表作品)
CREATE TABLE 中秋晚会 (
词条id,
名称,
播出时间,
主会场地址,
分会场数量)
CREATE TA... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 旅行社 (
词条id,
名称,
级别,
出境游国家数量,
国内游城市数量,
出境游路线数量,
国内游路线数量,
亚洲排名,
接待海外游客数量,
境外公司数量,
控股子公司数量,
有业务关系的旅行商数量,
免税店数量)
CREATE TABLE 出境游路线 (
词条id,
路线名称,
旅行社id,
出发城市,
天数,
成人价格,
儿童价格,
国家数量,
景点数... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 运动员 (
词条id,
姓名,
性别,
国籍,
体育项目)
CREATE TABLE 劳伦斯提名名单 (
年份,
提名人id,
提名奖项,
提名理由)
CREATE TABLE 劳伦斯获奖名单 (
年份,
奖项,
获奖人id)
CREATE TABLE 劳伦斯获奖国家名单 (
国家,
获奖人性别,
获奖人数,
所占比例)
-- Using valid... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 各省中小学假期 (
省份,
年级,
寒假天数,
暑假天数)
CREATE TABLE 大学假期 (
学校,
所属省份,
寒假天数,
暑假天数)
-- Using valid SQLite, answer the following questions for the tables provided above.
--中小学平均不多过45天寒假的省都有啥... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 影院 (
词条id,
名称,
地址,
与当前距离,
用户评分)
CREATE TABLE 电影 (
词条id,
名称,
拍摄国家,
类型,
片长,
豆瓣评分)
CREATE TABLE 影院上映电影 (
电影id,
影院id,
上映时间,
票价,
余票数量)
-- Using valid SQLite, answer the following que... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 百城 (
词条id,
城市,
排名,
人口吸引力指数,
同比排名变化,
环比排名变化)
CREATE TABLE 人口来源城市 (
城市id,
人口来源省份,
流入人口占比,
排名)
CREATE TABLE 人口去向城市 (
城市id,
人口去向省份,
流出人口占比,
排名)
CREATE TABLE 流动人口年龄 (
年份,
年龄段,
占比)
CR... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 奢侈品牌 (
词条id,
名称,
国家,
熟识度,
购买力排名)
CREATE TABLE 奢侈品消费国家 (
奢侈品id,
国家,
年份,
消费额,
消费额占比)
CREATE TABLE 奢侈品购买人群 (
奢侈品id,
年龄段,
购买人数,
人数占比,
消费额,
消费额占比)
CREATE TABLE 奢侈品渠道 (
奢侈品id,
了解渠道,
人数... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 银行总部 (
词条id,
名称,
总部地点,
成立时间,
公司类型)
CREATE TABLE 年营业额 (
年份,
银行id,
营业额,
员工数,
世界五百强排名)
CREATE TABLE 城市 (
词条id,
名称,
所属省份,
所属区域)
CREATE TABLE 银行服务网点 (
银行id,
城市id,
建成数量,
规划数量)
-- Usi... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 朝代 (
词条id,
名称,
起始时间,
结束时间,
都城,
人口数量,
国土面积)
CREATE TABLE 皇帝 (
词条id,
中文名,
所处朝代id,
出生时间,
去世时间,
主要成就,
年号)
CREATE TABLE 各朝代皇帝 (
皇帝id,
朝代id,
登基时间,
在位时间,
第几位)
CREATE TABLE 年号 (
年号,
朝代id... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 外文书籍 (
词条id,
名称,
英文名,
原著作者,
字数)
CREATE TABLE 译者 (
词条id,
姓名,
国籍,
翻译作品数量)
CREATE TABLE 出版社 (
词条id,
名称,
成立时间,
成立地点)
CREATE TABLE 书籍出版信息 (
书籍id,
译者id,
出版社id,
出版册数,
出版时间)
-- Using v... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 40城消费力排名 (
城市,
所在省份,
社消总额(亿),
总额排名,
增速,
增速排名,
人均社消(万),
总GDP(亿),
人均GDP(万),
常住人口(万),
参考房价)
CREATE TABLE 各城市消费结构 (
城市,
人均可支配收入,
餐饮消费占比,
奢侈品消费占比,
旅游占比,
人均网购消费额,
电子产品消费占比)
CREATE TABLE... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 城市 (
词条id,
名称,
气候地带,
所属国家,
所属洲)
CREATE TABLE 动物 (
词条id,
中文学名,
所属纲,
所属科,
食性,
濒危级别,
保护级别)
CREATE TABLE 动物分布城市 (
动物id,
城市id,
现存数量)
CREATE TABLE 动物电影 (
词条id,
影片名,
动物id,
拍摄国家,
类型)
CR... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 中国各城市马拉松 (
词条id,
名称,
举办城市,
省份,
时间,
全程赛道,
人数规模)
CREATE TABLE 马拉松赛程 (
马拉松id,
赛程,
公里数,
报名人数,
中签率)
CREATE TABLE 历届马拉松纪录 (
年份,
城市,
参赛者最小年龄,
参赛者最大年龄,
全程最少时间)
-- Using valid SQLite, an... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 2018年宜居城市 (
城市,
所属省份,
分数,
空气指数,
蓝天数量)
CREATE TABLE 2017年宜居城市 (
城市,
所属省份,
分数,
空气指数,
蓝天数量)
CREATE TABLE 2016年宜居城市 (
城市,
所属省份,
分数,
空气指数,
蓝天数量)
-- Using valid SQLite, answer the fol... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 河流 (
词条id,
名称,
全长,
流域面积,
发源地,
所属水系,
所属国家,
所属洲,
流域国家数)
CREATE TABLE 城市 (
词条id,
名称,
所属国家)
CREATE TABLE 河流流经的城市 (
河流id,
城市id)
CREATE TABLE 河流支流 (
河流id,
所属河流id)
-- Using valid SQLi... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 话剧 (
词条id,
名称,
演出时长,
剧目亮点,
演出团队,
导演,
VIP票余量,
888票价余量,
688票价余量,
488票价余量,
288票价余量,
188票价余量,
100票价余量)
CREATE TABLE 话剧一周上映 (
话剧id,
上映日期,
时间段,
演出场馆)
CREATE TABLE 上映城市 (
话剧id,
城市,
上映场次,... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 诗人 (
词条id,
姓名,
性别,
所处朝代,
年龄,
作品数量,
称号)
CREATE TABLE 诗词 (
词条id,
诗词名,
作者id,
文学体裁,
传播度)
CREATE TABLE 做官的诗人 (
诗人id,
所处年号,
做官时间)
CREATE TABLE 纪念景点 (
词条id,
名称,
所属城市,
地址,
纪念人物id)
-- U... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 中国电视剧奖 (
词条id,
名称,
主办单位,
创办时间)
CREATE TABLE 演职员 (
词条id,
姓名,
出生地,
出生日期,
毕业院校,
职业)
CREATE TABLE 电视剧 (
词条id,
名称,
类型,
首播时间,
集数,
豆瓣评分)
CREATE TABLE 历届颁奖晚会 (
年份,
届数,
电视剧奖id,
颁奖地点)
CRE... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 景区 (
词条id,
名称,
占地面积,
景点级别,
旺季门票价格,
淡季门票价格,
始建时间,
所属城市,
所属省份)
CREATE TABLE 景点 (
词条id,
名称,
地理位置)
CREATE TABLE 交通站 (
词条id,
名称,
类型,
景区id,
距离)
CREATE TABLE 景区景点 (
景点id,
景区id,
是否著名)
C... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 建筑奖项 (
词条id,
名称,
发起时间,
发起人,
称号,
总奖金,
评选间隔年数,
举办届数)
CREATE TABLE 建筑奖各国名单 (
奖项id,
国家,
数量)
CREATE TABLE 建筑师 (
词条id,
姓名,
国籍,
毕业院校,
作品数量)
CREATE TABLE 普利兹克奖获奖名单 (
年份,
届数,
获奖人id,
国籍)
... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 学校 (
词条id,
名称,
类型,
所在城市,
所属省份,
是否985院校,
是否211院校,
2016届平均月薪,
2014届平均月薪,
2012届平均月薪)
CREATE TABLE 学校毕业人数 (
学校id,
学历,
2016届人数,
2014届人数,
2012届人数)
CREATE TABLE 专业 (
词条id,
名称,
学科类型,
冷热门)... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 城市 (
词条id,
名称,
所属省份,
行政级别,
车牌代码)
CREATE TABLE 城市城建 (
年份,
城市id,
市区面积,
建成区面积,
城市建设用地面积,
本年征地面积,
建成区排名)
CREATE TABLE 城市外资吸引力 (
年份,
城市id,
工业总产值(亿),
内资(亿),
外资(亿),
省内排名)
CREATE TABLE 城... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 公司 (
词条id,
名称,
总部地点,
成立时间,
创始人,
首席执行官,
年营业额,
员工数)
CREATE TABLE 品牌 (
词条id,
名称,
成立时间,
所属公司id,
法定代表人,
注册资本)
CREATE TABLE 公司品牌历年收入 (
年份,
品牌id,
营收,
利润,
营收同比增长,
利润同比增长)
CREATE TABLE 公司... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 公司 (
词条id,
名称,
行业,
校招人数)
CREATE TABLE 学校 (
词条id,
名称,
所在城市,
毕业人数)
CREATE TABLE 学校各专业 (
学校id,
专业,
毕业人数,
专业全国排名,
平均薪资)
CREATE TABLE 公司对口专业 (
公司id,
专业,
对应岗位,
拟招聘人数,
基本工资,
工资幅度)
CREA... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 国家 (
词条id,
名称,
时区,
国家象征)
CREATE TABLE 宗教 (
词条id,
名称,
创始人物,
创始地点,
宗教主张,
教徒比例)
CREATE TABLE 各国宗教 (
宗教id,
国家id,
信仰人口)
CREATE TABLE 信教比例 (
月份,
国家id,
比例)
-- Using valid SQLite, answ... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 建筑奖项 (
词条id,
名称,
发起时间,
发起人,
称号,
总奖金,
评选间隔年数,
举办届数)
CREATE TABLE 建筑奖各国名单 (
奖项id,
国家,
数量)
CREATE TABLE 建筑师 (
词条id,
姓名,
国籍,
毕业院校,
作品数量)
CREATE TABLE 普利兹克奖获奖名单 (
年份,
届数,
获奖人id,
国籍)
... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 戏剧 (
词条id,
名称,
非遗级别,
发源地,
起源时间)
CREATE TABLE 戏剧分布城市 (
戏剧id,
城市,
受欢迎热度,
戏迷数量,
活动数量)
CREATE TABLE 戏剧演出活动 (
活动名称,
戏剧id,
城市,
演出时间,
售出票数,
最高票价,
最低票价)
-- Using valid SQLite, answer th... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 朝代 (
词条id,
名称,
统治时间)
CREATE TABLE 各年号统治时间 (
词条id,
年号,
所处朝代id,
统治时间)
CREATE TABLE 各朝代货币 (
朝代id,
货币,
使用时间)
-- Using valid SQLite, answer the following questions for the tables pro... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 车展 (
词条id,
名称,
车展时间,
参展天数,
车展地点,
位于城市,
参展品牌数)
CREATE TABLE 汽车品牌 (
词条id,
名称,
所属公司,
最低价格,
最高价格,
代言人)
CREATE TABLE 车展参展品牌 (
品牌id,
车展id,
站台模特,
热度排名)
-- Using valid SQLite, answer th... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 各届金曲奖 (
词条id,
名称,
年份,
奖项数量,
主持人,
参赛作品数量,
入围作品数量)
CREATE TABLE 歌手 (
词条id,
姓名,
性别,
出生地,
专辑数量,
歌曲数量,
演唱会总场次,
粉丝总数,
红粉数量)
CREATE TABLE 歌手签约唱片公司 (
歌手id,
唱片公司,
签约时间)
CREATE TABLE 金曲奖提名... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 酒店 (
词条id,
名称,
地址,
距火车站距离,
距机场距离,
距汽车站距离,
距市中心距离,
周围景点数,
周围饭店数量)
CREATE TABLE 酒店交通 (
酒店id,
地铁线路,
地铁站名称,
步行距离)
CREATE TABLE 酒店客房 (
酒店id,
房型,
早餐,
价格,
剩余房间数)
-- Using valid SQLite,... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 运动员 (
词条id,
姓名,
性别,
国籍,
出生地,
出生日期,
体重)
CREATE TABLE 举重世界记录 (
公斤级别,
项目类型,
记录成绩,
运动员id,
破纪录时间)
CREATE TABLE 举重奥运会冠军 (
奥运会名称,
公斤级别,
运动员id)
-- Using valid SQLite, answer the followi... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 电影作品 (
词条id,
影片名,
导演,
国家,
提名次数,
获奖次数)
CREATE TABLE 获奖国家名单 (
年份,
影片拍摄国家,
获奖次数)
CREATE TABLE 各演员获奖次数 (
姓名,
奖项,
提名次数,
获奖次数)
CREATE TABLE 历届帝后影后名单 (
年份,
帝后姓名,
帝后来自作品id,
影后姓名,
影后来自作品i... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 地产集团 (
词条id,
名称,
位于城市,
所属省份,
年销售额,
销售额同比增长,
销售额市场占比,
商品房销售面积,
销售面积同比增长,
销售面积,
市场占比)
CREATE TABLE 2019年房地产企业500强 (
集团id,
总排名,
发展潜力排名,
成长速度排名,
综合发展排名,
创新能力排名)
CREATE TABLE 2019年房地产企... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 水果 (
词条id,
名称,
特性,
适合季节,
每100克热量,
每100克水分)
CREATE TABLE 省份 (
词条id,
名称,
气候,
所属区域)
CREATE TABLE 水果产地 (
水果id,
省份id,
是否特产,
年平均产量,
销售形式)
CREATE TABLE 水果销售城市 (
水果id,
原产省份id,
销往省份id,
年销... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 品牌 (
词条id,
品牌名,
成立时间,
经营范围,
年销量)
CREATE TABLE 体育明星 (
词条id,
中文名,
国籍,
创建品牌id)
CREATE TABLE 运动员的代言 (
明星id,
代言品牌id,
年份,
代言费)
-- Using valid SQLite, answer the following questions fo... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 公司 (
词条id,
名称,
所在城市,
是否上市)
CREATE TABLE 招聘岗位 (
词条id,
岗位名称,
学历要求,
职责,
工作年限最低要求,
年龄最低限,
年龄最大限)
CREATE TABLE 公司招聘计划 (
公司id,
招聘岗位id,
基本月薪,
发放月数,
浮动幅度,
招聘人数)
-- Using valid SQLite, a... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 河流 (
词条id,
名称,
全长,
流域面积,
发源地,
所属水系,
所属国家,
所属洲,
流域国家数)
CREATE TABLE 城市 (
词条id,
名称,
所属国家)
CREATE TABLE 河流流经的城市 (
河流id,
城市id)
CREATE TABLE 河流支流 (
河流id,
所属河流id)
-- Using valid SQLi... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 景区 (
词条id,
名称,
占地面积,
景点级别,
旺季门票价格,
淡季门票价格,
始建时间,
所属城市,
所属省份)
CREATE TABLE 景点 (
词条id,
名称,
地理位置)
CREATE TABLE 交通站 (
词条id,
名称,
类型,
景区id,
距离)
CREATE TABLE 景区景点 (
景点id,
景区id,
是否著名)
C... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 城市 (
词条id,
城市,
所属省份,
城市人口,
城市面积,
汽车保有量级别(辆),
通勤高峰拥堵指数,
通勤高峰实际速度(千米/时),
拥堵排名)
CREATE TABLE 全国交通枢纽 (
词条id,
交通枢纽站,
所属城市id,
所属省份,
平均拥堵指数,
周边路网平均速度(千米/时),
拥堵排名)
CREATE TABLE 旅游景点 (
词条i... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 图书 (
词条id,
书名,
作者,
评分,
总排名)
CREATE TABLE 五星榜单 (
图书id,
评价人数)
CREATE TABLE 本月特价书籍 (
图书id,
现价格,
原价格)
CREATE TABLE 人气榜单 (
图书id,
购买人数,
收藏人数)
CREATE TABLE 必读榜单 (
图书id,
推荐人数)
-- Usin... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 足球运动员 (
词条id,
中文名,
国籍,
年龄,
俱乐部)
CREATE TABLE 世界杯金球奖 (
年份,
世界杯名称,
金球奖运动员id,
银球奖运动员id,
铜球奖运动员id)
CREATE TABLE 欧洲杯金球奖 (
赛季,
运动员id,
国籍,
俱乐部,
进球数)
CREATE TABLE FIFA金球奖 (
年度,
运动员id,
获奖... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 战役 (
词条id,
名称,
历时时间,
地点,
朝代,
参战人数,
死亡人数)
CREATE TABLE 将军 (
词条id,
姓名,
领兵出战次数,
胜数,
败数)
CREATE TABLE 纪念将军的诗词 (
诗词,
作者,
朝代,
纪念将军id)
CREATE TABLE 将军影视形象 (
将军id,
影视剧,
饰演者)
CREATE TABL... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 城市 (
词条id,
城市,
所属省份,
城市人口,
城市面积,
汽车保有量级别(辆),
通勤高峰拥堵指数,
通勤高峰实际速度(千米/时),
拥堵排名)
CREATE TABLE 全国交通枢纽 (
词条id,
交通枢纽站,
所属城市id,
所属省份,
平均拥堵指数,
周边路网平均速度(千米/时),
拥堵排名)
CREATE TABLE 旅游景点 (
词条i... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 城市 (
词条id,
名称,
所属省份,
地区生产总值,
生产总值增长率,
第一产业总值,
第二产业总值,
第三产业总值)
CREATE TABLE 城市金融产业 (
城市id,
金融业增加值,
增长率,
金融机构数量,
外币存款余额,
存款余额增长率,
贷款余额,
贷款余额增长率)
CREATE TABLE 城市贸易产业 (
城市id,
行业,
进口额,... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 足球运动员 (
词条id,
中文名,
国籍,
年龄,
俱乐部)
CREATE TABLE 世界杯金球奖 (
年份,
世界杯名称,
金球奖运动员id,
银球奖运动员id,
铜球奖运动员id)
CREATE TABLE 欧洲杯金球奖 (
赛季,
运动员id,
国籍,
俱乐部,
进球数)
CREATE TABLE FIFA金球奖 (
年度,
运动员id,
获奖... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 植物 (
词条id,
学名,
花期,
花期时长,
果期)
CREATE TABLE 药用植物 (
植物id,
用途说明,
毒性,
种植方式)
CREATE TABLE 植物分布城市 (
植物id,
城市,
保护级别)
CREATE TABLE 食肉植物分布区域 (
植物id,
区域,
种类数)
CREATE TABLE 植物繁殖 (
植物id,
方式)... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 运动项目 (
词条id,
名称,
起源国家,
比赛形式,
比赛人数,
加入奥运会年份)
CREATE TABLE 项目流行国家 (
项目id,
国家,
所获金牌总数,
所获奖牌总数)
CREATE TABLE 运动项目奖牌数 (
项目id,
赛事类型,
小项目总数,
奖牌总数)
-- Using valid SQLite, answer the fol... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 单位 (
词条id,
名称,
类别)
CREATE TABLE 进制换算 (
单位id,
转换单位id,
进制)
-- Using valid SQLite, answer the following questions for the tables provided above.
--有多于5个具体单位的类别都有啥
SELECT### Respons... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 城市 (
词条id,
名称,
所属省份,
占地面积,
体育馆数量)
CREATE TABLE 运动会 (
举办城市id,
运动会类型,
届数,
年份,
参赛运动员数量,
项目数量,
金牌数量,
奖牌数量)
-- Using valid SQLite, answer the following questions for the tables provid... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 国家 (
词条id,
名称,
所属洲,
注册公司数量,
上市公司数量)
CREATE TABLE 世界最赚钱公司 (
词条id,
名称,
所属国家id,
年利润,
世界排名)
CREATE TABLE 中国最赚钱公司 (
词条id,
名称,
位于城市,
所属省份,
年营业额,
国内排名,
世界排名)
-- Using valid SQLite, ans... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 城市 (
词条id,
名称,
国家,
2017年世界排名,
2018年世界排名,
2019年世界排名)
CREATE TABLE 旅游人数 (
年份,
城市id,
接待人口,
收入)
-- Using valid SQLite, answer the following questions for the tables provided above.
... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 公司 (
词条id,
名称,
总部地点,
公司类型)
CREATE TABLE 学校 (
词条id,
学校名称,
成立时间,
所在城市,
所属省份,
所属国家)
CREATE TABLE 联合实验室 (
实验室名称,
所属学校id,
公司id,
联合方向,
开始时间,
合作年数,
论文产出数量)
CREATE TABLE 海外研究中心 (
研究中心,
所... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 房龄影响 (
城市,
房龄,
交易占比)
CREATE TABLE 电梯影响 (
城市,
是否带电梯,
平均成交周期,
平均带看次数)
CREATE TABLE 月供分布 (
城市,
月供段,
占比)
CREATE TABLE 购房者年龄分布 (
城市,
购房者年龄段,
占比)
CREATE TABLE 购房者性别分布 (
城市,
购房者性别,
占比)... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 国家历史 (
词条id,
书名,
讲述国家,
讲述时代)
CREATE TABLE 中国朝代历史 (
词条id,
书名,
讲述朝代)
CREATE TABLE 战争历史 (
词条id,
书名,
描述战事)
CREATE TABLE 人物历史 (
词条id,
书名,
讲述名人)
-- Using valid SQLite, answer the fol... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 水果 (
词条id,
名称,
特性,
适合季节,
每100克热量,
每100克水分)
CREATE TABLE 省份 (
词条id,
名称,
气候,
所属区域)
CREATE TABLE 水果产地 (
水果id,
省份id,
是否特产,
年平均产量,
销售形式)
CREATE TABLE 水果销售城市 (
水果id,
原产省份id,
销往省份id,
年销... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 汉字 (
词条id,
汉字,
部首,
笔画)
CREATE TABLE 姓氏 (
姓氏id,
源自姓氏id,
人口,
占比)
CREATE TABLE 姓氏分布区域 (
姓氏id,
区域,
人口占比)
-- Using valid SQLite, answer the following questions for the tables provide... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 峰会 (
词条id,
名称,
主办单位,
举办时间,
历时天数,
举办地点,
分论坛数量,
门票价格,
门票数量,
报名人数,
直播观看人数)
CREATE TABLE 嘉宾 (
词条id,
姓名,
任职单位,
职位)
CREATE TABLE 峰会嘉宾 (
嘉宾id,
峰会id,
演讲主题,
论坛,
开始时间,
演讲时长)
CREATE TABLE 峰... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 卫视电视剧 (
卫视,
电视剧名,
日期,
播放时间,
集数)
CREATE TABLE 卫视综艺节目 (
卫视,
节目名,
日期,
播放时间,
期数)
CREATE TABLE 央视栏目 (
频道,
栏目名,
类型,
日期,
播放时间)
CREATE TABLE 付费栏目 (
频道,
栏目名,
类型,
日期,
播放时间,
费用)
-- Using ... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 饭店 (
词条id,
名称,
地址,
菜系,
口味评分,
环境评分,
服务评分,
人均价格,
包房最低消费)
CREATE TABLE 特色菜 (
饭店id,
菜名,
口味,
月销售量,
必点比例)
-- Using valid SQLite, answer the following questions for the tables provided ... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 夏季奥运会 (
届数,
奥运会,
举办国家,
举办城市,
口号)
CREATE TABLE 冬季奥运会 (
届数,
奥运会,
举办国家,
举办城市)
CREATE TABLE 奥运会申办国家 (
届数,
奥运会,
申办国家,
申办城市,
是否成功)
-- Using valid SQLite, answer the following question... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 城市 (
词条id,
名称,
所属省份,
市区面积)
CREATE TABLE IMAX电影院 (
词条id,
影院名称,
所在城市id,
开业时间,
屏幕宽,
屏幕高,
屏幕面积,
座位数)
CREATE TABLE 影院放映电影数量 (
年份,
影院id,
电影数量,
营收)
-- Using valid SQLite, answer the fo... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 植物 (
词条id,
学名,
花期,
花期时长,
果期)
CREATE TABLE 药用植物 (
植物id,
用途说明,
毒性,
种植方式)
CREATE TABLE 植物分布城市 (
植物id,
城市,
保护级别)
CREATE TABLE 食肉植物分布区域 (
植物id,
区域,
种类数)
CREATE TABLE 植物繁殖 (
植物id,
方式)... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 北京学校 (
词条id,
名称,
所属地区,
创办时间,
类别,
学校人数,
教职工人数,
教学班数量)
CREATE TABLE 小升初升学率 (
年份,
学校id,
毕业人数,
重点中学升学率,
top10中学升学率)
CREATE TABLE 教师 (
词条id,
姓名,
职称,
任教学校id)
CREATE TABLE 分校 (
分校名称,
所属... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 省份 (
词条id,
名称,
下辖区数量,
面积,
人口,
气候条件,
省花,
省树)
CREATE TABLE 城市 (
词条id,
名称,
面积,
人口,
市花,
所属省id)
CREATE TABLE 省生产总值 (
年份,
省份id,
GDP,
人均GDP)
CREATE TABLE 市生产总值 (
年份,
城市id,
GDP,
人均GDP)
... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 奢侈品牌 (
词条id,
名称,
国家,
熟识度,
购买力排名)
CREATE TABLE 奢侈品消费国家 (
奢侈品id,
国家,
年份,
消费额,
消费额占比)
CREATE TABLE 奢侈品购买人群 (
奢侈品id,
年龄段,
购买人数,
人数占比,
消费额,
消费额占比)
CREATE TABLE 奢侈品渠道 (
奢侈品id,
了解渠道,
人数... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 航空公司 (
词条id,
名称,
国内通航城市数量,
国际通航城市数量,
机队规模,
运送旅客人数,
飞机餐用户满意度)
CREATE TABLE 机场 (
词条id,
名称,
所属地区,
机位数量,
跑道长度,
跑道数量,
国内航线数量,
国际航线数量,
通航城市,
旅客吞量,
航站楼数量)
CREATE TABLE 航空公司主运营基地 (
航空公司id... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 篮球运动员 (
词条id,
中文名,
国籍,
出生地,
出生日期,
身高,
体重,
毕业院校,
场上位置)
CREATE TABLE 比赛场馆 (
词条id,
名称,
容纳人数)
CREATE TABLE 篮球俱乐部 (
词条id,
中文队名,
所属地区,
成立时间,
主场馆id,
赛区)
CREATE TABLE 俱乐部现役球员 (
球员id,
俱乐部... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 诗人 (
词条id,
姓名,
性别,
所处朝代,
年龄,
作品数量,
称号)
CREATE TABLE 诗词 (
词条id,
诗词名,
作者id,
文学体裁,
传播度)
CREATE TABLE 做官的诗人 (
诗人id,
所处年号,
做官时间)
CREATE TABLE 纪念景点 (
词条id,
名称,
所属城市,
地址,
纪念人物id)
-- U... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 公司 (
词条id,
名称,
总部地点,
公司类型)
CREATE TABLE 学校 (
词条id,
学校名称,
成立时间,
所在城市,
所属省份,
所属国家)
CREATE TABLE 联合实验室 (
实验室名称,
所属学校id,
公司id,
联合方向,
开始时间,
合作年数,
论文产出数量)
CREATE TABLE 海外研究中心 (
研究中心,
所... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 文学奖 (
词条id,
名称,
设立时间,
设立原因,
举办间隔年限)
CREATE TABLE 文学奖项颁奖奖项 (
文学奖id,
奖项)
CREATE TABLE 文学作品 (
词条id,
名称,
作者,
创作年代,
首版时间,
字数)
CREATE TABLE 文学奖获奖名单 (
届数,
作品id,
作者,
出版社)
-- Using vali... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 应用商店 (
词条id,
名称,
应用软件数,
累计下载次数)
CREATE TABLE 应用商店支持国家 (
应用商店id,
国家,
用户是否可以购买应用程序,
开发人员是否可以出售应用程序)
CREATE TABLE 软件 (
词条id,
名称,
用途)
CREATE TABLE 软件下载量 (
软件id,
应用商店id,
下载量,
评价人数,
好评... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 城市 (
词条id,
名称,
所属省份,
餐饮收入,
同比增长)
CREATE TABLE 餐饮公司 (
词条id,
名称,
总部城市id,
所属集团,
上市股市,
经营范围,
经营年数)
CREATE TABLE 餐饮公司城市连锁 (
公司id,
城市id,
分店数量,
占地面积,
餐位数量,
员工数量)
CREATE TABLE 餐饮公司城市消费 (... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 公司 (
词条id,
名称,
创始人,
所属国家,
年营业额)
CREATE TABLE 手机品牌 (
词条id,
名称,
发布时间,
研发公司id)
CREATE TABLE 手机型号 (
词条id,
名称,
主频尺寸,
像素,
内存容量,
操作系统,
解锁方式,
售价,
售出量,
品牌id)
CREATE TABLE 型号使用人群 (
型号id,
人... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 篮球运动员 (
词条id,
中文名,
国籍,
出生地,
出生日期,
身高,
体重,
毕业院校,
场上位置)
CREATE TABLE 比赛场馆 (
词条id,
名称,
容纳人数)
CREATE TABLE 篮球俱乐部 (
词条id,
中文队名,
所属地区,
成立时间,
主场馆id,
赛区)
CREATE TABLE 俱乐部现役球员 (
球员id,
俱乐部... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 演职员 (
词条id,
姓名,
身高,
体重,
出生地,
出生日期,
毕业院校,
职业)
CREATE TABLE 电影 (
词条id,
电影名称,
制片地区,
制片成本,
片长,
导演,
上映时间,
票房,
类型)
CREATE TABLE 演员和电影 (
演员id,
电影id,
饰演角色,
片酬)
CREATE TABLE 电影平台 (
电影id,
... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 城市 (
词条id,
城市,
所属省份,
城市人口,
城市面积,
汽车保有量级别(辆),
通勤高峰拥堵指数,
通勤高峰实际速度(千米/时),
拥堵排名)
CREATE TABLE 全国交通枢纽 (
词条id,
交通枢纽站,
所属城市id,
所属省份,
平均拥堵指数,
周边路网平均速度(千米/时),
拥堵排名)
CREATE TABLE 旅游景点 (
词条i... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 电商 (
词条id,
名称,
所属公司,
类型,
影响力指数,
排名,
上线国家数量)
CREATE TABLE 电商覆盖国家 (
电商id,
支持国家,
上线时间,
负责的分公司名称)
CREATE TABLE 商家 (
词条id,
名称,
所属国家,
主营类别,
网店覆盖国家数量,
实体店数量,
入驻电商数量)
CREATE TABLE 商家网点覆盖... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 峰会 (
词条id,
名称,
主办单位,
举办时间,
历时天数,
举办地点,
分论坛数量,
门票价格,
门票数量,
报名人数,
直播观看人数)
CREATE TABLE 嘉宾 (
词条id,
姓名,
任职单位,
职位)
CREATE TABLE 峰会嘉宾 (
嘉宾id,
峰会id,
演讲主题,
论坛,
开始时间,
演讲时长)
CREATE TABLE 峰... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 八大行星 (
词条id,
名称,
距日距离,
表面积,
体积排名,
重量排名,
最高温度,
最低温度)
CREATE TABLE 行星相关电影 (
词条id,
影片名,
导演,
拍摄国家,
豆瓣评分,
关联行星id)
CREATE TABLE 火星探测国家 (
探测器,
发射时间,
国家,
结果)
CREATE TABLE 月球探测国家 (
飞行器,
时... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 学校 (
词条id,
名称,
所在省份,
类型,
是否985,
是否211)
CREATE TABLE 省份 (
词条id,
省名,
2018年考生数量,
985高校数量,
211高校数量)
CREATE TABLE 各省高校招生计划 (
学校id,
省份id,
招生人数)
CREATE TABLE 专业 (
词条id,
专业名称,
学科类型,
学制)
... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 中国地铁 (
年份,
总里程,
开通城市数量)
CREATE TABLE 城市 (
词条id,
城市名称,
所属省份)
CREATE TABLE 城市地铁里程 (
城市id,
地铁运营里程,
在建里程,
规划里程,
已运营线路数)
CREATE TABLE 城市地铁日均客运量 (
城市id,
日均客运量(万人次),
每日每公里客运量(万人次),
每公里运... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 篮球运动员 (
词条id,
中文名,
国籍,
出生地,
出生日期,
身高,
体重,
毕业院校,
场上位置)
CREATE TABLE 比赛场馆 (
词条id,
名称,
容纳人数)
CREATE TABLE 篮球俱乐部 (
词条id,
中文队名,
所属地区,
成立时间,
主场馆id,
赛区)
CREATE TABLE 俱乐部现役球员 (
球员id,
俱乐部... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 足球运动员 (
词条id,
中文名,
国籍,
出生地,
出生日期,
身高,
体重,
专业特点,
场上位置,
惯用脚)
CREATE TABLE 欧冠赛事 (
赛季,
球员id,
所属球队,
出场次数,
进球次数,
助攻次数)
CREATE TABLE 欧冠最佳球员 (
届数,
年份,
最佳球员id,
国家,
场上位置,
球队成绩)
CREATE TABL... |
Below is an instruction that describes a task. Write a MySQL query that appropriately completes the request. ### Instruction: CREATE TABLE 足球运动员 (
词条id,
中文名,
国籍,
出生地,
出生日期,
身高,
体重,
专业特点,
场上位置,
惯用脚)
CREATE TABLE 欧冠赛事 (
赛季,
球员id,
所属球队,
出场次数,
进球次数,
助攻次数)
CREATE TABLE 欧冠最佳球员 (
届数,
年份,
最佳球员id,
国家,
场上位置,
球队成绩)
CREATE TABL... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.