question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
| text
stringlengths 114
1.06k
|
---|---|---|---|
What is the name of the institution with the mascot of blue devils?
|
CREATE TABLE table_12434380_1 (institution VARCHAR, mascot VARCHAR)
|
SELECT institution FROM table_12434380_1 WHERE mascot = "Blue Devils"
|
### Context: CREATE TABLE table_12434380_1 (institution VARCHAR, mascot VARCHAR) ### Question: What is the name of the institution with the mascot of blue devils? ### Answer: SELECT institution FROM table_12434380_1 WHERE mascot = "Blue Devils"
|
Name the people who wrote number 67
|
CREATE TABLE table_12419515_5 (written_by VARCHAR, series__number VARCHAR)
|
SELECT written_by FROM table_12419515_5 WHERE series__number = 67
|
### Context: CREATE TABLE table_12419515_5 (written_by VARCHAR, series__number VARCHAR) ### Question: Name the people who wrote number 67 ### Answer: SELECT written_by FROM table_12419515_5 WHERE series__number = 67
|
Name the number of season that was written by adam milch
|
CREATE TABLE table_12419515_5 (season__number INTEGER, written_by VARCHAR)
|
SELECT MIN(season__number) FROM table_12419515_5 WHERE written_by = "Adam Milch"
|
### Context: CREATE TABLE table_12419515_5 (season__number INTEGER, written_by VARCHAR) ### Question: Name the number of season that was written by adam milch ### Answer: SELECT MIN(season__number) FROM table_12419515_5 WHERE written_by = "Adam Milch"
|
Name the season number for the direction of patrick norris
|
CREATE TABLE table_12419515_5 (season__number VARCHAR, directed_by VARCHAR)
|
SELECT season__number FROM table_12419515_5 WHERE directed_by = "Patrick Norris"
|
### Context: CREATE TABLE table_12419515_5 (season__number VARCHAR, directed_by VARCHAR) ### Question: Name the season number for the direction of patrick norris ### Answer: SELECT season__number FROM table_12419515_5 WHERE directed_by = "Patrick Norris"
|
Who wrote the episode when the director was dean white?
|
CREATE TABLE table_12451376_1 (writer_s_ VARCHAR, director VARCHAR)
|
SELECT writer_s_ FROM table_12451376_1 WHERE director = "Dean White"
|
### Context: CREATE TABLE table_12451376_1 (writer_s_ VARCHAR, director VARCHAR) ### Question: Who wrote the episode when the director was dean white? ### Answer: SELECT writer_s_ FROM table_12451376_1 WHERE director = "Dean White"
|
Please list the total number of title with the production code 211.
|
CREATE TABLE table_12451376_2 (title VARCHAR, production_code VARCHAR)
|
SELECT COUNT(title) FROM table_12451376_2 WHERE production_code = 211
|
### Context: CREATE TABLE table_12451376_2 (title VARCHAR, production_code VARCHAR) ### Question: Please list the total number of title with the production code 211. ### Answer: SELECT COUNT(title) FROM table_12451376_2 WHERE production_code = 211
|
Please give me the title of Season 2, episode 1.
|
CREATE TABLE table_12451376_2 (title VARCHAR, season_2_ep__number VARCHAR)
|
SELECT title FROM table_12451376_2 WHERE season_2_ep__number = 1
|
### Context: CREATE TABLE table_12451376_2 (title VARCHAR, season_2_ep__number VARCHAR) ### Question: Please give me the title of Season 2, episode 1. ### Answer: SELECT title FROM table_12451376_2 WHERE season_2_ep__number = 1
|
Provide me with the name of the writer with the production code 210.
|
CREATE TABLE table_12451376_2 (writer_s_ VARCHAR, production_code VARCHAR)
|
SELECT writer_s_ FROM table_12451376_2 WHERE production_code = 210
|
### Context: CREATE TABLE table_12451376_2 (writer_s_ VARCHAR, production_code VARCHAR) ### Question: Provide me with the name of the writer with the production code 210. ### Answer: SELECT writer_s_ FROM table_12451376_2 WHERE production_code = 210
|
What is the number of the original airdate with the production code 208.
|
CREATE TABLE table_12451376_2 (original_airdate VARCHAR, production_code VARCHAR)
|
SELECT COUNT(original_airdate) FROM table_12451376_2 WHERE production_code = 208
|
### Context: CREATE TABLE table_12451376_2 (original_airdate VARCHAR, production_code VARCHAR) ### Question: What is the number of the original airdate with the production code 208. ### Answer: SELECT COUNT(original_airdate) FROM table_12451376_2 WHERE production_code = 208
|
What size is a 30 frames per minute
|
CREATE TABLE table_1251878_3 (frame_size VARCHAR, maximum_fps VARCHAR)
|
SELECT frame_size FROM table_1251878_3 WHERE maximum_fps = 30
|
### Context: CREATE TABLE table_1251878_3 (frame_size VARCHAR, maximum_fps VARCHAR) ### Question: What size is a 30 frames per minute ### Answer: SELECT frame_size FROM table_1251878_3 WHERE maximum_fps = 30
|
What is the size when the frame is bigger than for 4096.0
|
CREATE TABLE table_1251878_3 (aspect_ratio VARCHAR, width INTEGER)
|
SELECT aspect_ratio FROM table_1251878_3 WHERE width > 4096.0
|
### Context: CREATE TABLE table_1251878_3 (aspect_ratio VARCHAR, width INTEGER) ### Question: What is the size when the frame is bigger than for 4096.0 ### Answer: SELECT aspect_ratio FROM table_1251878_3 WHERE width > 4096.0
|
What is the smallest frames per minute when the pixels are 5.0
|
CREATE TABLE table_1251878_3 (least_compression_at_24_fps VARCHAR, mpix VARCHAR)
|
SELECT least_compression_at_24_fps FROM table_1251878_3 WHERE mpix = "5.0"
|
### Context: CREATE TABLE table_1251878_3 (least_compression_at_24_fps VARCHAR, mpix VARCHAR) ### Question: What is the smallest frames per minute when the pixels are 5.0 ### Answer: SELECT least_compression_at_24_fps FROM table_1251878_3 WHERE mpix = "5.0"
|
what's the width with frame size being 4.5k
|
CREATE TABLE table_1251878_1 (width VARCHAR, frame_size VARCHAR)
|
SELECT width FROM table_1251878_1 WHERE frame_size = "4.5K"
|
### Context: CREATE TABLE table_1251878_1 (width VARCHAR, frame_size VARCHAR) ### Question: what's the width with frame size being 4.5k ### Answer: SELECT width FROM table_1251878_1 WHERE frame_size = "4.5K"
|
What is the callsign of tuguegarao
|
CREATE TABLE table_12547903_2 (callsign VARCHAR, location__transmitter_site_ VARCHAR)
|
SELECT callsign FROM table_12547903_2 WHERE location__transmitter_site_ = "Tuguegarao"
|
### Context: CREATE TABLE table_12547903_2 (callsign VARCHAR, location__transmitter_site_ VARCHAR) ### Question: What is the callsign of tuguegarao ### Answer: SELECT callsign FROM table_12547903_2 WHERE location__transmitter_site_ = "Tuguegarao"
|
What is the station type of calbayog
|
CREATE TABLE table_12547903_2 (station_type VARCHAR, location__transmitter_site_ VARCHAR)
|
SELECT station_type FROM table_12547903_2 WHERE location__transmitter_site_ = "Calbayog"
|
### Context: CREATE TABLE table_12547903_2 (station_type VARCHAR, location__transmitter_site_ VARCHAR) ### Question: What is the station type of calbayog ### Answer: SELECT station_type FROM table_12547903_2 WHERE location__transmitter_site_ = "Calbayog"
|
What is the station type of smni tv-26 naga
|
CREATE TABLE table_12547903_2 (station_type VARCHAR, branding VARCHAR)
|
SELECT station_type FROM table_12547903_2 WHERE branding = "SMNI TV-26 Naga"
|
### Context: CREATE TABLE table_12547903_2 (station_type VARCHAR, branding VARCHAR) ### Question: What is the station type of smni tv-26 naga ### Answer: SELECT station_type FROM table_12547903_2 WHERE branding = "SMNI TV-26 Naga"
|
How many places featured the DXCL Callsign?
|
CREATE TABLE table_12547903_3 (location VARCHAR, callsign VARCHAR)
|
SELECT COUNT(location) FROM table_12547903_3 WHERE callsign = "DXCL"
|
### Context: CREATE TABLE table_12547903_3 (location VARCHAR, callsign VARCHAR) ### Question: How many places featured the DXCL Callsign? ### Answer: SELECT COUNT(location) FROM table_12547903_3 WHERE callsign = "DXCL"
|
What was the branding in Dagupan?
|
CREATE TABLE table_12547903_3 (branding VARCHAR, location VARCHAR)
|
SELECT branding FROM table_12547903_3 WHERE location = "Dagupan"
|
### Context: CREATE TABLE table_12547903_3 (branding VARCHAR, location VARCHAR) ### Question: What was the branding in Dagupan? ### Answer: SELECT branding FROM table_12547903_3 WHERE location = "Dagupan"
|
What was the callsign in Zamboanga?
|
CREATE TABLE table_12547903_3 (callsign VARCHAR, location VARCHAR)
|
SELECT callsign FROM table_12547903_3 WHERE location = "Zamboanga"
|
### Context: CREATE TABLE table_12547903_3 (callsign VARCHAR, location VARCHAR) ### Question: What was the callsign in Zamboanga? ### Answer: SELECT callsign FROM table_12547903_3 WHERE location = "Zamboanga"
|
How much power was used when the callsign was DZYT?
|
CREATE TABLE table_12547903_3 (power__kw_ VARCHAR, callsign VARCHAR)
|
SELECT power__kw_ FROM table_12547903_3 WHERE callsign = "DZYT"
|
### Context: CREATE TABLE table_12547903_3 (power__kw_ VARCHAR, callsign VARCHAR) ### Question: How much power was used when the callsign was DZYT? ### Answer: SELECT power__kw_ FROM table_12547903_3 WHERE callsign = "DZYT"
|
What is the name of Season #15?
|
CREATE TABLE table_12564633_1 (title VARCHAR, season__number VARCHAR)
|
SELECT title FROM table_12564633_1 WHERE season__number = 15
|
### Context: CREATE TABLE table_12564633_1 (title VARCHAR, season__number VARCHAR) ### Question: What is the name of Season #15? ### Answer: SELECT title FROM table_12564633_1 WHERE season__number = 15
|
What is the series number for Season #18?
|
CREATE TABLE table_12564633_1 (series__number INTEGER, season__number VARCHAR)
|
SELECT MIN(series__number) FROM table_12564633_1 WHERE season__number = 18
|
### Context: CREATE TABLE table_12564633_1 (series__number INTEGER, season__number VARCHAR) ### Question: What is the series number for Season #18? ### Answer: SELECT MIN(series__number) FROM table_12564633_1 WHERE season__number = 18
|
What was the first series in this list that Jack Orman wrote?
|
CREATE TABLE table_12564633_1 (series__number INTEGER, written_by VARCHAR)
|
SELECT MIN(series__number) FROM table_12564633_1 WHERE written_by = "Jack Orman"
|
### Context: CREATE TABLE table_12564633_1 (series__number INTEGER, written_by VARCHAR) ### Question: What was the first series in this list that Jack Orman wrote? ### Answer: SELECT MIN(series__number) FROM table_12564633_1 WHERE written_by = "Jack Orman"
|
What is the name of the episode that Richard Thorpe directed?
|
CREATE TABLE table_12564633_1 (title VARCHAR, directed_by VARCHAR)
|
SELECT title FROM table_12564633_1 WHERE directed_by = "Richard Thorpe"
|
### Context: CREATE TABLE table_12564633_1 (title VARCHAR, directed_by VARCHAR) ### Question: What is the name of the episode that Richard Thorpe directed? ### Answer: SELECT title FROM table_12564633_1 WHERE directed_by = "Richard Thorpe"
|
Name the population of maryborough when population of woocoo is 2700
|
CREATE TABLE table_12576536_1 (population__maryborough_ VARCHAR, population__woocoo_ VARCHAR)
|
SELECT population__maryborough_ FROM table_12576536_1 WHERE population__woocoo_ = 2700
|
### Context: CREATE TABLE table_12576536_1 (population__maryborough_ VARCHAR, population__woocoo_ VARCHAR) ### Question: Name the population of maryborough when population of woocoo is 2700 ### Answer: SELECT population__maryborough_ FROM table_12576536_1 WHERE population__woocoo_ = 2700
|
Name the most year when population of woocoo is 2700
|
CREATE TABLE table_12576536_1 (year INTEGER, population__woocoo_ VARCHAR)
|
SELECT MAX(year) FROM table_12576536_1 WHERE population__woocoo_ = 2700
|
### Context: CREATE TABLE table_12576536_1 (year INTEGER, population__woocoo_ VARCHAR) ### Question: Name the most year when population of woocoo is 2700 ### Answer: SELECT MAX(year) FROM table_12576536_1 WHERE population__woocoo_ = 2700
|
Who was crew chief for the team owned by Bob Leavine?
|
CREATE TABLE table_1266602_2 (crew_chief VARCHAR, owner_s_ VARCHAR)
|
SELECT crew_chief FROM table_1266602_2 WHERE owner_s_ = "Bob Leavine"
|
### Context: CREATE TABLE table_1266602_2 (crew_chief VARCHAR, owner_s_ VARCHAR) ### Question: Who was crew chief for the team owned by Bob Leavine? ### Answer: SELECT crew_chief FROM table_1266602_2 WHERE owner_s_ = "Bob Leavine"
|
Who drove for team Circle Sport?
|
CREATE TABLE table_1266602_2 (driver_s_ VARCHAR, team VARCHAR)
|
SELECT driver_s_ FROM table_1266602_2 WHERE team = "Circle Sport"
|
### Context: CREATE TABLE table_1266602_2 (driver_s_ VARCHAR, team VARCHAR) ### Question: Who drove for team Circle Sport? ### Answer: SELECT driver_s_ FROM table_1266602_2 WHERE team = "Circle Sport"
|
Who drove for Phil Parsons Racing team?
|
CREATE TABLE table_1266602_2 (driver_s_ VARCHAR, team VARCHAR)
|
SELECT driver_s_ FROM table_1266602_2 WHERE team = "Phil Parsons Racing"
|
### Context: CREATE TABLE table_1266602_2 (driver_s_ VARCHAR, team VARCHAR) ### Question: Who drove for Phil Parsons Racing team? ### Answer: SELECT driver_s_ FROM table_1266602_2 WHERE team = "Phil Parsons Racing"
|
Which teams used Wally Rogers as their crew chief?
|
CREATE TABLE table_1266602_2 (team VARCHAR, crew_chief VARCHAR)
|
SELECT team FROM table_1266602_2 WHERE crew_chief = "Wally Rogers"
|
### Context: CREATE TABLE table_1266602_2 (team VARCHAR, crew_chief VARCHAR) ### Question: Which teams used Wally Rogers as their crew chief? ### Answer: SELECT team FROM table_1266602_2 WHERE crew_chief = "Wally Rogers"
|
What is the largest number of rounds for the team that hired Donnie Wingo as crew chief?
|
CREATE TABLE table_1266602_2 (rounds INTEGER, crew_chief VARCHAR)
|
SELECT MAX(rounds) FROM table_1266602_2 WHERE crew_chief = "Donnie Wingo"
|
### Context: CREATE TABLE table_1266602_2 (rounds INTEGER, crew_chief VARCHAR) ### Question: What is the largest number of rounds for the team that hired Donnie Wingo as crew chief? ### Answer: SELECT MAX(rounds) FROM table_1266602_2 WHERE crew_chief = "Donnie Wingo"
|
What is the 2007 estimate when the rank (csa) is 4
|
CREATE TABLE table_12720275_1 (rank__csa_ VARCHAR)
|
SELECT 2007 AS _estimate FROM table_12720275_1 WHERE rank__csa_ = "4"
|
### Context: CREATE TABLE table_12720275_1 (rank__csa_ VARCHAR) ### Question: What is the 2007 estimate when the rank (csa) is 4 ### Answer: SELECT 2007 AS _estimate FROM table_12720275_1 WHERE rank__csa_ = "4"
|
What is the 2007 estimate for tulsa-bartlesville, ok csa?
|
CREATE TABLE table_12720275_1 (combined_statistical_area__or_metropolitan_statistical_area_if_noted_ VARCHAR)
|
SELECT 2007 AS _estimate FROM table_12720275_1 WHERE combined_statistical_area__or_metropolitan_statistical_area_if_noted_ = "Tulsa-Bartlesville, OK CSA"
|
### Context: CREATE TABLE table_12720275_1 (combined_statistical_area__or_metropolitan_statistical_area_if_noted_ VARCHAR) ### Question: What is the 2007 estimate for tulsa-bartlesville, ok csa? ### Answer: SELECT 2007 AS _estimate FROM table_12720275_1 WHERE combined_statistical_area__or_metropolitan_statistical_area_if_noted_ = "Tulsa-Bartlesville, OK CSA"
|
How many times was the rank (csa) was (msa 348)?
|
CREATE TABLE table_12720275_1 (rank__csa_ VARCHAR)
|
SELECT COUNT(2000 AS _population) FROM table_12720275_1 WHERE rank__csa_ = "(MSA 348)"
|
### Context: CREATE TABLE table_12720275_1 (rank__csa_ VARCHAR) ### Question: How many times was the rank (csa) was (msa 348)? ### Answer: SELECT COUNT(2000 AS _population) FROM table_12720275_1 WHERE rank__csa_ = "(MSA 348)"
|
What is the rank (csa) for the percentage change (1990-2000) was a034 +8.71%?
|
CREATE TABLE table_12720275_1 (rank__csa_ VARCHAR, percent_change__1990_2000_ VARCHAR)
|
SELECT rank__csa_ FROM table_12720275_1 WHERE percent_change__1990_2000_ = "A034 +8.71%"
|
### Context: CREATE TABLE table_12720275_1 (rank__csa_ VARCHAR, percent_change__1990_2000_ VARCHAR) ### Question: What is the rank (csa) for the percentage change (1990-2000) was a034 +8.71%? ### Answer: SELECT rank__csa_ FROM table_12720275_1 WHERE percent_change__1990_2000_ = "A034 +8.71%"
|
What tourmament has Genesis won previously?
|
CREATE TABLE table_1272033_1 (championship VARCHAR, previous_champion_s_ VARCHAR)
|
SELECT championship FROM table_1272033_1 WHERE previous_champion_s_ = "Genesis"
|
### Context: CREATE TABLE table_1272033_1 (championship VARCHAR, previous_champion_s_ VARCHAR) ### Question: What tourmament has Genesis won previously? ### Answer: SELECT championship FROM table_1272033_1 WHERE previous_champion_s_ = "Genesis"
|
Who was the champion prior to Xix Xavant?
|
CREATE TABLE table_1272033_1 (previous_champion_s_ VARCHAR, champion_s_ VARCHAR)
|
SELECT previous_champion_s_ FROM table_1272033_1 WHERE champion_s_ = "Xix Xavant"
|
### Context: CREATE TABLE table_1272033_1 (previous_champion_s_ VARCHAR, champion_s_ VARCHAR) ### Question: Who was the champion prior to Xix Xavant? ### Answer: SELECT previous_champion_s_ FROM table_1272033_1 WHERE champion_s_ = "Xix Xavant"
|
Who are the champions that have won at Aguas Buenas, Puerto Rico?
|
CREATE TABLE table_1272033_1 (champion_s_ VARCHAR, location VARCHAR)
|
SELECT champion_s_ FROM table_1272033_1 WHERE location = "Aguas Buenas, Puerto Rico"
|
### Context: CREATE TABLE table_1272033_1 (champion_s_ VARCHAR, location VARCHAR) ### Question: Who are the champions that have won at Aguas Buenas, Puerto Rico? ### Answer: SELECT champion_s_ FROM table_1272033_1 WHERE location = "Aguas Buenas, Puerto Rico"
|
What's the English translation of the Japanese title of the game Ranma ½: Chougi Rambuhen?
|
CREATE TABLE table_12744399_1 (english_title_translation VARCHAR, japanese_title VARCHAR)
|
SELECT english_title_translation FROM table_12744399_1 WHERE japanese_title = "Ranma ½: Chougi Rambuhen"
|
### Context: CREATE TABLE table_12744399_1 (english_title_translation VARCHAR, japanese_title VARCHAR) ### Question: What's the English translation of the Japanese title of the game Ranma ½: Chougi Rambuhen? ### Answer: SELECT english_title_translation FROM table_12744399_1 WHERE japanese_title = "Ranma ½: Chougi Rambuhen"
|
What's the genre of Fever Ranma ½: Hot Springs Athletic Chapter?
|
CREATE TABLE table_12744399_1 (genre VARCHAR, english_title_translation VARCHAR)
|
SELECT genre FROM table_12744399_1 WHERE english_title_translation = "Fever Ranma ½: Hot Springs Athletic Chapter"
|
### Context: CREATE TABLE table_12744399_1 (genre VARCHAR, english_title_translation VARCHAR) ### Question: What's the genre of Fever Ranma ½: Hot Springs Athletic Chapter? ### Answer: SELECT genre FROM table_12744399_1 WHERE english_title_translation = "Fever Ranma ½: Hot Springs Athletic Chapter"
|
When was the game developed by Microvision released?
|
CREATE TABLE table_12744399_1 (initial_release_date VARCHAR, developer VARCHAR)
|
SELECT initial_release_date FROM table_12744399_1 WHERE developer = "Microvision"
|
### Context: CREATE TABLE table_12744399_1 (initial_release_date VARCHAR, developer VARCHAR) ### Question: When was the game developed by Microvision released? ### Answer: SELECT initial_release_date FROM table_12744399_1 WHERE developer = "Microvision"
|
What's the number of verbal nouns with the basic stem (root) -bil-?
|
CREATE TABLE table_12784134_1 (verbal_noun VARCHAR, basic_stem__root_ VARCHAR)
|
SELECT COUNT(verbal_noun) FROM table_12784134_1 WHERE basic_stem__root_ = "-bil-"
|
### Context: CREATE TABLE table_12784134_1 (verbal_noun VARCHAR, basic_stem__root_ VARCHAR) ### Question: What's the number of verbal nouns with the basic stem (root) -bil-? ### Answer: SELECT COUNT(verbal_noun) FROM table_12784134_1 WHERE basic_stem__root_ = "-bil-"
|
What does the non-present stem -erama- mean?
|
CREATE TABLE table_12784134_1 (meaning VARCHAR, non_present_stem VARCHAR)
|
SELECT meaning FROM table_12784134_1 WHERE non_present_stem = "-erama-"
|
### Context: CREATE TABLE table_12784134_1 (meaning VARCHAR, non_present_stem VARCHAR) ### Question: What does the non-present stem -erama- mean? ### Answer: SELECT meaning FROM table_12784134_1 WHERE non_present_stem = "-erama-"
|
What's the participle when the verbal noun is i-bil-tze?
|
CREATE TABLE table_12784134_1 (participle VARCHAR, verbal_noun VARCHAR)
|
SELECT participle FROM table_12784134_1 WHERE verbal_noun = "i-bil-tze"
|
### Context: CREATE TABLE table_12784134_1 (participle VARCHAR, verbal_noun VARCHAR) ### Question: What's the participle when the verbal noun is i-bil-tze? ### Answer: SELECT participle FROM table_12784134_1 WHERE verbal_noun = "i-bil-tze"
|
What does the basic stem (root) -rama- mean?
|
CREATE TABLE table_12784134_1 (meaning VARCHAR, basic_stem__root_ VARCHAR)
|
SELECT meaning FROM table_12784134_1 WHERE basic_stem__root_ = "-rama-"
|
### Context: CREATE TABLE table_12784134_1 (meaning VARCHAR, basic_stem__root_ VARCHAR) ### Question: What does the basic stem (root) -rama- mean? ### Answer: SELECT meaning FROM table_12784134_1 WHERE basic_stem__root_ = "-rama-"
|
What is the verbal noun connected to the participle e-duki?
|
CREATE TABLE table_12784134_1 (verbal_noun VARCHAR, participle VARCHAR)
|
SELECT verbal_noun FROM table_12784134_1 WHERE participle = "e-duki"
|
### Context: CREATE TABLE table_12784134_1 (verbal_noun VARCHAR, participle VARCHAR) ### Question: What is the verbal noun connected to the participle e-duki? ### Answer: SELECT verbal_noun FROM table_12784134_1 WHERE participle = "e-duki"
|
what is the tries against where points is 60?
|
CREATE TABLE table_12828723_4 (tries_against VARCHAR, points VARCHAR)
|
SELECT tries_against FROM table_12828723_4 WHERE points = "60"
|
### Context: CREATE TABLE table_12828723_4 (tries_against VARCHAR, points VARCHAR) ### Question: what is the tries against where points is 60? ### Answer: SELECT tries_against FROM table_12828723_4 WHERE points = "60"
|
How many losing bonus where there when points against is 439?
|
CREATE TABLE table_12828723_4 (losing_bonus VARCHAR, points_against VARCHAR)
|
SELECT COUNT(losing_bonus) FROM table_12828723_4 WHERE points_against = "439"
|
### Context: CREATE TABLE table_12828723_4 (losing_bonus VARCHAR, points_against VARCHAR) ### Question: How many losing bonus where there when points against is 439? ### Answer: SELECT COUNT(losing_bonus) FROM table_12828723_4 WHERE points_against = "439"
|
what is the drawn when the won is 12?
|
CREATE TABLE table_12828723_4 (drawn VARCHAR, won VARCHAR)
|
SELECT drawn FROM table_12828723_4 WHERE won = "12"
|
### Context: CREATE TABLE table_12828723_4 (drawn VARCHAR, won VARCHAR) ### Question: what is the drawn when the won is 12? ### Answer: SELECT drawn FROM table_12828723_4 WHERE won = "12"
|
What is the tries against when the won is 14?
|
CREATE TABLE table_12828723_4 (tries_against VARCHAR, won VARCHAR)
|
SELECT tries_against FROM table_12828723_4 WHERE won = "14"
|
### Context: CREATE TABLE table_12828723_4 (tries_against VARCHAR, won VARCHAR) ### Question: What is the tries against when the won is 14? ### Answer: SELECT tries_against FROM table_12828723_4 WHERE won = "14"
|
How many tries for are for 473 points for?
|
CREATE TABLE table_12828723_4 (tries_for VARCHAR, points_for VARCHAR)
|
SELECT COUNT(tries_for) FROM table_12828723_4 WHERE points_for = "473"
|
### Context: CREATE TABLE table_12828723_4 (tries_for VARCHAR, points_for VARCHAR) ### Question: How many tries for are for 473 points for? ### Answer: SELECT COUNT(tries_for) FROM table_12828723_4 WHERE points_for = "473"
|
what is the points for when the played is 22 and tries against is 68?
|
CREATE TABLE table_12828723_4 (points_for VARCHAR, played VARCHAR, tries_against VARCHAR)
|
SELECT points_for FROM table_12828723_4 WHERE played = "22" AND tries_against = "68"
|
### Context: CREATE TABLE table_12828723_4 (points_for VARCHAR, played VARCHAR, tries_against VARCHAR) ### Question: what is the points for when the played is 22 and tries against is 68? ### Answer: SELECT points_for FROM table_12828723_4 WHERE played = "22" AND tries_against = "68"
|
what's the loss with try bonus being 5 and points for being 390
|
CREATE TABLE table_12828723_3 (lost VARCHAR, try_bonus VARCHAR, points_for VARCHAR)
|
SELECT lost FROM table_12828723_3 WHERE try_bonus = "5" AND points_for = "390"
|
### Context: CREATE TABLE table_12828723_3 (lost VARCHAR, try_bonus VARCHAR, points_for VARCHAR) ### Question: what's the loss with try bonus being 5 and points for being 390 ### Answer: SELECT lost FROM table_12828723_3 WHERE try_bonus = "5" AND points_for = "390"
|
what's the win with points for being 376
|
CREATE TABLE table_12828723_3 (won VARCHAR, points_for VARCHAR)
|
SELECT won FROM table_12828723_3 WHERE points_for = "376"
|
### Context: CREATE TABLE table_12828723_3 (won VARCHAR, points_for VARCHAR) ### Question: what's the win with points for being 376 ### Answer: SELECT won FROM table_12828723_3 WHERE points_for = "376"
|
what's the loss with points for being 594
|
CREATE TABLE table_12828723_3 (lost VARCHAR, points_for VARCHAR)
|
SELECT lost FROM table_12828723_3 WHERE points_for = "594"
|
### Context: CREATE TABLE table_12828723_3 (lost VARCHAR, points_for VARCHAR) ### Question: what's the loss with points for being 594 ### Answer: SELECT lost FROM table_12828723_3 WHERE points_for = "594"
|
what's the tries against with tries for being 47
|
CREATE TABLE table_12828723_3 (tries_against VARCHAR, tries_for VARCHAR)
|
SELECT tries_against FROM table_12828723_3 WHERE tries_for = "47"
|
### Context: CREATE TABLE table_12828723_3 (tries_against VARCHAR, tries_for VARCHAR) ### Question: what's the tries against with tries for being 47 ### Answer: SELECT tries_against FROM table_12828723_3 WHERE tries_for = "47"
|
what's the won with club being ammanford rfc
|
CREATE TABLE table_12828723_3 (won VARCHAR, club VARCHAR)
|
SELECT won FROM table_12828723_3 WHERE club = "Ammanford RFC"
|
### Context: CREATE TABLE table_12828723_3 (won VARCHAR, club VARCHAR) ### Question: what's the won with club being ammanford rfc ### Answer: SELECT won FROM table_12828723_3 WHERE club = "Ammanford RFC"
|
how many drawn with tries against being 24
|
CREATE TABLE table_12828723_3 (drawn VARCHAR, tries_against VARCHAR)
|
SELECT COUNT(drawn) FROM table_12828723_3 WHERE tries_against = "24"
|
### Context: CREATE TABLE table_12828723_3 (drawn VARCHAR, tries_against VARCHAR) ### Question: how many drawn with tries against being 24 ### Answer: SELECT COUNT(drawn) FROM table_12828723_3 WHERE tries_against = "24"
|
What were the drawn with points against at 416?
|
CREATE TABLE table_12828723_5 (drawn VARCHAR, points_against VARCHAR)
|
SELECT drawn FROM table_12828723_5 WHERE points_against = "416"
|
### Context: CREATE TABLE table_12828723_5 (drawn VARCHAR, points_against VARCHAR) ### Question: What were the drawn with points against at 416? ### Answer: SELECT drawn FROM table_12828723_5 WHERE points_against = "416"
|
What was the amount won with tries against at 54?
|
CREATE TABLE table_12828723_5 (won VARCHAR, tries_against VARCHAR)
|
SELECT won FROM table_12828723_5 WHERE tries_against = "54"
|
### Context: CREATE TABLE table_12828723_5 (won VARCHAR, tries_against VARCHAR) ### Question: What was the amount won with tries against at 54? ### Answer: SELECT won FROM table_12828723_5 WHERE tries_against = "54"
|
What was the lost with tries for?
|
CREATE TABLE table_12828723_5 (lost VARCHAR)
|
SELECT lost FROM table_12828723_5 WHERE "tries_for" = "tries_for"
|
### Context: CREATE TABLE table_12828723_5 (lost VARCHAR) ### Question: What was the lost with tries for? ### Answer: SELECT lost FROM table_12828723_5 WHERE "tries_for" = "tries_for"
|
What was the points againt when played is played?
|
CREATE TABLE table_12828723_5 (points_against VARCHAR)
|
SELECT points_against FROM table_12828723_5 WHERE "played" = "played"
|
### Context: CREATE TABLE table_12828723_5 (points_against VARCHAR) ### Question: What was the points againt when played is played? ### Answer: SELECT points_against FROM table_12828723_5 WHERE "played" = "played"
|
What was the tries for with tries against at 33?
|
CREATE TABLE table_12828723_5 (tries_for VARCHAR, tries_against VARCHAR)
|
SELECT tries_for FROM table_12828723_5 WHERE tries_against = "33"
|
### Context: CREATE TABLE table_12828723_5 (tries_for VARCHAR, tries_against VARCHAR) ### Question: What was the tries for with tries against at 33? ### Answer: SELECT tries_for FROM table_12828723_5 WHERE tries_against = "33"
|
What was the played with club tumble rfc?
|
CREATE TABLE table_12828723_5 (played VARCHAR, club VARCHAR)
|
SELECT played FROM table_12828723_5 WHERE club = "Tumble RFC"
|
### Context: CREATE TABLE table_12828723_5 (played VARCHAR, club VARCHAR) ### Question: What was the played with club tumble rfc? ### Answer: SELECT played FROM table_12828723_5 WHERE club = "Tumble RFC"
|
What consoles was Shenmue released on?
|
CREATE TABLE table_12887260_1 (console VARCHAR, franchise_or_game VARCHAR)
|
SELECT console FROM table_12887260_1 WHERE franchise_or_game = "Shenmue"
|
### Context: CREATE TABLE table_12887260_1 (console VARCHAR, franchise_or_game VARCHAR) ### Question: What consoles was Shenmue released on? ### Answer: SELECT console FROM table_12887260_1 WHERE franchise_or_game = "Shenmue"
|
Which main developer made their first release in 1991 and created the Mega Drive/Genesis console?
|
CREATE TABLE table_12887260_1 (main_developer VARCHAR, first_release VARCHAR, console VARCHAR)
|
SELECT main_developer FROM table_12887260_1 WHERE first_release = 1991 AND console = "Mega Drive/Genesis"
|
### Context: CREATE TABLE table_12887260_1 (main_developer VARCHAR, first_release VARCHAR, console VARCHAR) ### Question: Which main developer made their first release in 1991 and created the Mega Drive/Genesis console? ### Answer: SELECT main_developer FROM table_12887260_1 WHERE first_release = 1991 AND console = "Mega Drive/Genesis"
|
How many players currently play for Barons Riga?
|
CREATE TABLE table_12962773_10 (position VARCHAR, current_club VARCHAR)
|
SELECT COUNT(position) FROM table_12962773_10 WHERE current_club = "Barons Riga"
|
### Context: CREATE TABLE table_12962773_10 (position VARCHAR, current_club VARCHAR) ### Question: How many players currently play for Barons Riga? ### Answer: SELECT COUNT(position) FROM table_12962773_10 WHERE current_club = "Barons Riga"
|
How tall was Player #10?
|
CREATE TABLE table_12962773_10 (height VARCHAR, no VARCHAR)
|
SELECT height FROM table_12962773_10 WHERE no = 10
|
### Context: CREATE TABLE table_12962773_10 (height VARCHAR, no VARCHAR) ### Question: How tall was Player #10? ### Answer: SELECT height FROM table_12962773_10 WHERE no = 10
|
What is the earliest any of these players were born?
|
CREATE TABLE table_12962773_10 (year_born INTEGER)
|
SELECT MIN(year_born) FROM table_12962773_10
|
### Context: CREATE TABLE table_12962773_10 (year_born INTEGER) ### Question: What is the earliest any of these players were born? ### Answer: SELECT MIN(year_born) FROM table_12962773_10
|
Which player number is 2.10 meters tall?
|
CREATE TABLE table_12962773_10 (no VARCHAR, height VARCHAR)
|
SELECT no FROM table_12962773_10 WHERE height = "2.10"
|
### Context: CREATE TABLE table_12962773_10 (no VARCHAR, height VARCHAR) ### Question: Which player number is 2.10 meters tall? ### Answer: SELECT no FROM table_12962773_10 WHERE height = "2.10"
|
What position was played by the player who was 2.12 meters tall?
|
CREATE TABLE table_12962773_10 (position VARCHAR, height VARCHAR)
|
SELECT position FROM table_12962773_10 WHERE height = "2.12"
|
### Context: CREATE TABLE table_12962773_10 (position VARCHAR, height VARCHAR) ### Question: What position was played by the player who was 2.12 meters tall? ### Answer: SELECT position FROM table_12962773_10 WHERE height = "2.12"
|
What current conference is Post University a member of?
|
CREATE TABLE table_12936521_2 (current_conference VARCHAR, institution VARCHAR)
|
SELECT current_conference FROM table_12936521_2 WHERE institution = "Post University"
|
### Context: CREATE TABLE table_12936521_2 (current_conference VARCHAR, institution VARCHAR) ### Question: What current conference is Post University a member of? ### Answer: SELECT current_conference FROM table_12936521_2 WHERE institution = "Post University"
|
What institution has the nickname Penmen?
|
CREATE TABLE table_12936521_2 (institution VARCHAR, nickname VARCHAR)
|
SELECT institution FROM table_12936521_2 WHERE nickname = "Penmen"
|
### Context: CREATE TABLE table_12936521_2 (institution VARCHAR, nickname VARCHAR) ### Question: What institution has the nickname Penmen? ### Answer: SELECT institution FROM table_12936521_2 WHERE nickname = "Penmen"
|
Where is the University at Albany located?
|
CREATE TABLE table_12936521_2 (location VARCHAR, institution VARCHAR)
|
SELECT location FROM table_12936521_2 WHERE institution = "University at Albany"
|
### Context: CREATE TABLE table_12936521_2 (location VARCHAR, institution VARCHAR) ### Question: Where is the University at Albany located? ### Answer: SELECT location FROM table_12936521_2 WHERE institution = "University at Albany"
|
What's the classification of the institution nicknamed Dolphins?
|
CREATE TABLE table_12936521_2 (classification VARCHAR, nickname VARCHAR)
|
SELECT classification FROM table_12936521_2 WHERE nickname = "Dolphins"
|
### Context: CREATE TABLE table_12936521_2 (classification VARCHAR, nickname VARCHAR) ### Question: What's the classification of the institution nicknamed Dolphins? ### Answer: SELECT classification FROM table_12936521_2 WHERE nickname = "Dolphins"
|
What's the nickname of the University of Massachusetts Lowell (UMass Lowell)?
|
CREATE TABLE table_12936521_2 (nickname VARCHAR, institution VARCHAR)
|
SELECT nickname FROM table_12936521_2 WHERE institution = "University of Massachusetts Lowell (UMass Lowell)"
|
### Context: CREATE TABLE table_12936521_2 (nickname VARCHAR, institution VARCHAR) ### Question: What's the nickname of the University of Massachusetts Lowell (UMass Lowell)? ### Answer: SELECT nickname FROM table_12936521_2 WHERE institution = "University of Massachusetts Lowell (UMass Lowell)"
|
What is Ido Kozikaro's position?
|
CREATE TABLE table_12962773_2 (position VARCHAR, player VARCHAR)
|
SELECT position FROM table_12962773_2 WHERE player = "Ido Kozikaro"
|
### Context: CREATE TABLE table_12962773_2 (position VARCHAR, player VARCHAR) ### Question: What is Ido Kozikaro's position? ### Answer: SELECT position FROM table_12962773_2 WHERE player = "Ido Kozikaro"
|
What player plays center?
|
CREATE TABLE table_12962773_2 (player VARCHAR, position VARCHAR)
|
SELECT player FROM table_12962773_2 WHERE position = "Center"
|
### Context: CREATE TABLE table_12962773_2 (player VARCHAR, position VARCHAR) ### Question: What player plays center? ### Answer: SELECT player FROM table_12962773_2 WHERE position = "Center"
|
What are the numbers of the players currently playing for Ironi Nahariya?
|
CREATE TABLE table_12962773_2 (no VARCHAR, current_club VARCHAR)
|
SELECT no FROM table_12962773_2 WHERE current_club = "Ironi Nahariya"
|
### Context: CREATE TABLE table_12962773_2 (no VARCHAR, current_club VARCHAR) ### Question: What are the numbers of the players currently playing for Ironi Nahariya? ### Answer: SELECT no FROM table_12962773_2 WHERE current_club = "Ironi Nahariya"
|
What player is 2.01 m tall?
|
CREATE TABLE table_12962773_2 (player VARCHAR, height VARCHAR)
|
SELECT player FROM table_12962773_2 WHERE height = "2.01"
|
### Context: CREATE TABLE table_12962773_2 (player VARCHAR, height VARCHAR) ### Question: What player is 2.01 m tall? ### Answer: SELECT player FROM table_12962773_2 WHERE height = "2.01"
|
What's Yotam Halperin's position?
|
CREATE TABLE table_12962773_2 (position VARCHAR, player VARCHAR)
|
SELECT position FROM table_12962773_2 WHERE player = "Yotam Halperin"
|
### Context: CREATE TABLE table_12962773_2 (position VARCHAR, player VARCHAR) ### Question: What's Yotam Halperin's position? ### Answer: SELECT position FROM table_12962773_2 WHERE player = "Yotam Halperin"
|
What current club does the player born in 1984 play for?
|
CREATE TABLE table_12962773_12 (current_club VARCHAR, year_born VARCHAR)
|
SELECT current_club FROM table_12962773_12 WHERE year_born = 1984
|
### Context: CREATE TABLE table_12962773_12 (current_club VARCHAR, year_born VARCHAR) ### Question: What current club does the player born in 1984 play for? ### Answer: SELECT current_club FROM table_12962773_12 WHERE year_born = 1984
|
What is the height for player number 5?
|
CREATE TABLE table_12962773_12 (height VARCHAR, no VARCHAR)
|
SELECT COUNT(height) FROM table_12962773_12 WHERE no = 5
|
### Context: CREATE TABLE table_12962773_12 (height VARCHAR, no VARCHAR) ### Question: What is the height for player number 5? ### Answer: SELECT COUNT(height) FROM table_12962773_12 WHERE no = 5
|
What height is player number 9?
|
CREATE TABLE table_12962773_12 (height VARCHAR, no VARCHAR)
|
SELECT height FROM table_12962773_12 WHERE no = 9
|
### Context: CREATE TABLE table_12962773_12 (height VARCHAR, no VARCHAR) ### Question: What height is player number 9? ### Answer: SELECT height FROM table_12962773_12 WHERE no = 9
|
WHat is the number for the player whose height is 2.01?
|
CREATE TABLE table_12962773_12 (player VARCHAR, height VARCHAR)
|
SELECT COUNT(player) FROM table_12962773_12 WHERE height = "2.01"
|
### Context: CREATE TABLE table_12962773_12 (player VARCHAR, height VARCHAR) ### Question: WHat is the number for the player whose height is 2.01? ### Answer: SELECT COUNT(player) FROM table_12962773_12 WHERE height = "2.01"
|
What year was the player with the height 2.04 born?
|
CREATE TABLE table_12962773_12 (year_born INTEGER, height VARCHAR)
|
SELECT MIN(year_born) FROM table_12962773_12 WHERE height = "2.04"
|
### Context: CREATE TABLE table_12962773_12 (year_born INTEGER, height VARCHAR) ### Question: What year was the player with the height 2.04 born? ### Answer: SELECT MIN(year_born) FROM table_12962773_12 WHERE height = "2.04"
|
How many players wore number 8?
|
CREATE TABLE table_12962773_16 (height VARCHAR, no VARCHAR)
|
SELECT COUNT(height) FROM table_12962773_16 WHERE no = 8
|
### Context: CREATE TABLE table_12962773_16 (height VARCHAR, no VARCHAR) ### Question: How many players wore number 8? ### Answer: SELECT COUNT(height) FROM table_12962773_16 WHERE no = 8
|
What player was born in 1983?
|
CREATE TABLE table_12962773_16 (player VARCHAR, year_born VARCHAR)
|
SELECT player FROM table_12962773_16 WHERE year_born = 1983
|
### Context: CREATE TABLE table_12962773_16 (player VARCHAR, year_born VARCHAR) ### Question: What player was born in 1983? ### Answer: SELECT player FROM table_12962773_16 WHERE year_born = 1983
|
What club does the player who is 1.97 m tall play for?
|
CREATE TABLE table_12962773_16 (current_club VARCHAR, height VARCHAR)
|
SELECT current_club FROM table_12962773_16 WHERE height = "1.97"
|
### Context: CREATE TABLE table_12962773_16 (current_club VARCHAR, height VARCHAR) ### Question: What club does the player who is 1.97 m tall play for? ### Answer: SELECT current_club FROM table_12962773_16 WHERE height = "1.97"
|
How many players are from energa czarni?
|
CREATE TABLE table_12962773_16 (position VARCHAR, current_club VARCHAR)
|
SELECT COUNT(position) FROM table_12962773_16 WHERE current_club = "Energa Czarni"
|
### Context: CREATE TABLE table_12962773_16 (position VARCHAR, current_club VARCHAR) ### Question: How many players are from energa czarni? ### Answer: SELECT COUNT(position) FROM table_12962773_16 WHERE current_club = "Energa Czarni"
|
What year was Robert Skibniewski born?
|
CREATE TABLE table_12962773_16 (year_born VARCHAR, player VARCHAR)
|
SELECT year_born FROM table_12962773_16 WHERE player = "Robert Skibniewski"
|
### Context: CREATE TABLE table_12962773_16 (year_born VARCHAR, player VARCHAR) ### Question: What year was Robert Skibniewski born? ### Answer: SELECT year_born FROM table_12962773_16 WHERE player = "Robert Skibniewski"
|
What No is the player Zoran Erceg
|
CREATE TABLE table_12962773_4 (no INTEGER, player VARCHAR)
|
SELECT MIN(no) FROM table_12962773_4 WHERE player = "Zoran Erceg"
|
### Context: CREATE TABLE table_12962773_4 (no INTEGER, player VARCHAR) ### Question: What No is the player Zoran Erceg ### Answer: SELECT MIN(no) FROM table_12962773_4 WHERE player = "Zoran Erceg"
|
What is the iclandic of the glossary for presenta for mi locaria
|
CREATE TABLE table_13003460_1 (the_icelandic_of_the_glossary VARCHAR, the_basque_of_the_glossary VARCHAR)
|
SELECT the_icelandic_of_the_glossary FROM table_13003460_1 WHERE the_basque_of_the_glossary = "presenta for mi locaria"
|
### Context: CREATE TABLE table_13003460_1 (the_icelandic_of_the_glossary VARCHAR, the_basque_of_the_glossary VARCHAR) ### Question: What is the iclandic of the glossary for presenta for mi locaria ### Answer: SELECT the_icelandic_of_the_glossary FROM table_13003460_1 WHERE the_basque_of_the_glossary = "presenta for mi locaria"
|
Name the english translation of giefdu mier socka bond
|
CREATE TABLE table_13003460_1 (english_translation VARCHAR, the_icelandic_of_the_glossary VARCHAR)
|
SELECT english_translation FROM table_13003460_1 WHERE the_icelandic_of_the_glossary = "giefdu mier socka bond"
|
### Context: CREATE TABLE table_13003460_1 (english_translation VARCHAR, the_icelandic_of_the_glossary VARCHAR) ### Question: Name the english translation of giefdu mier socka bond ### Answer: SELECT english_translation FROM table_13003460_1 WHERE the_icelandic_of_the_glossary = "giefdu mier socka bond"
|
Name the english translation of 219
|
CREATE TABLE table_13003460_1 (english_translation VARCHAR, word_number VARCHAR)
|
SELECT english_translation FROM table_13003460_1 WHERE word_number = "219"
|
### Context: CREATE TABLE table_13003460_1 (english_translation VARCHAR, word_number VARCHAR) ### Question: Name the english translation of 219 ### Answer: SELECT english_translation FROM table_13003460_1 WHERE word_number = "219"
|
Name the incelandic of the glossary for 218
|
CREATE TABLE table_13003460_1 (the_icelandic_of_the_glossary VARCHAR, word_number VARCHAR)
|
SELECT the_icelandic_of_the_glossary FROM table_13003460_1 WHERE word_number = "218"
|
### Context: CREATE TABLE table_13003460_1 (the_icelandic_of_the_glossary VARCHAR, word_number VARCHAR) ### Question: Name the incelandic of the glossary for 218 ### Answer: SELECT the_icelandic_of_the_glossary FROM table_13003460_1 WHERE word_number = "218"
|
What's the type of printer ports in the model number EX Plus3?
|
CREATE TABLE table_1300080_1 (printer_ports VARCHAR, model_number VARCHAR)
|
SELECT printer_ports FROM table_1300080_1 WHERE model_number = "EX Plus3"
|
### Context: CREATE TABLE table_1300080_1 (printer_ports VARCHAR, model_number VARCHAR) ### Question: What's the type of printer ports in the model number EX Plus3? ### Answer: SELECT printer_ports FROM table_1300080_1 WHERE model_number = "EX Plus3"
|
What is the number of the model with three parallel printer ports?
|
CREATE TABLE table_1300080_1 (model_number VARCHAR, printer_ports VARCHAR)
|
SELECT model_number FROM table_1300080_1 WHERE printer_ports = "Three Parallel"
|
### Context: CREATE TABLE table_1300080_1 (model_number VARCHAR, printer_ports VARCHAR) ### Question: What is the number of the model with three parallel printer ports? ### Answer: SELECT model_number FROM table_1300080_1 WHERE printer_ports = "Three Parallel"
|
What are the network protocols for the model that has been discontinued in favor of the EN1700?
|
CREATE TABLE table_1300080_1 (network_protocols VARCHAR, notes VARCHAR)
|
SELECT network_protocols FROM table_1300080_1 WHERE notes = "Discontinued in favor of the en1700"
|
### Context: CREATE TABLE table_1300080_1 (network_protocols VARCHAR, notes VARCHAR) ### Question: What are the network protocols for the model that has been discontinued in favor of the EN1700? ### Answer: SELECT network_protocols FROM table_1300080_1 WHERE notes = "Discontinued in favor of the en1700"
|
How many people live in 铅山县?
|
CREATE TABLE table_1300525_1 (population INTEGER, simplified VARCHAR)
|
SELECT MAX(population) FROM table_1300525_1 WHERE simplified = "铅山县"
|
### Context: CREATE TABLE table_1300525_1 (population INTEGER, simplified VARCHAR) ### Question: How many people live in 铅山县? ### Answer: SELECT MAX(population) FROM table_1300525_1 WHERE simplified = "铅山县"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.