question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
| text
stringlengths 114
1.06k
|
---|---|---|---|
What was the elimination number of the fighter who fought within 26:15?
|
CREATE TABLE table_18598175_2 (elimination_number INTEGER, time VARCHAR)
|
SELECT MAX(elimination_number) FROM table_18598175_2 WHERE time = "26:15"
|
### Context: CREATE TABLE table_18598175_2 (elimination_number INTEGER, time VARCHAR) ### Question: What was the elimination number of the fighter who fought within 26:15? ### Answer: SELECT MAX(elimination_number) FROM table_18598175_2 WHERE time = "26:15"
|
what is the longitude in 35.992 sqmi
|
CREATE TABLE table_18600760_2 (longitude VARCHAR, land___sqmi__ VARCHAR)
|
SELECT longitude FROM table_18600760_2 WHERE land___sqmi__ = "35.992"
|
### Context: CREATE TABLE table_18600760_2 (longitude VARCHAR, land___sqmi__ VARCHAR) ### Question: what is the longitude in 35.992 sqmi ### Answer: SELECT longitude FROM table_18600760_2 WHERE land___sqmi__ = "35.992"
|
how many townships where pop (2010) and ater is 0.818
|
CREATE TABLE table_18600760_2 (pop__2010_ VARCHAR, water__sqmi_ VARCHAR)
|
SELECT COUNT(pop__2010_) FROM table_18600760_2 WHERE water__sqmi_ = "0.818"
|
### Context: CREATE TABLE table_18600760_2 (pop__2010_ VARCHAR, water__sqmi_ VARCHAR) ### Question: how many townships where pop (2010) and ater is 0.818 ### Answer: SELECT COUNT(pop__2010_) FROM table_18600760_2 WHERE water__sqmi_ = "0.818"
|
what is the name of the townships with 32.222 land
|
CREATE TABLE table_18600760_19 (township VARCHAR, land___sqmi__ VARCHAR)
|
SELECT township FROM table_18600760_19 WHERE land___sqmi__ = "32.222"
|
### Context: CREATE TABLE table_18600760_19 (township VARCHAR, land___sqmi__ VARCHAR) ### Question: what is the name of the townships with 32.222 land ### Answer: SELECT township FROM table_18600760_19 WHERE land___sqmi__ = "32.222"
|
how many lands with longitude of -100.895783 are?
|
CREATE TABLE table_18600760_19 (land___sqmi__ VARCHAR, longitude VARCHAR)
|
SELECT COUNT(land___sqmi__) FROM table_18600760_19 WHERE longitude = "-100.895783"
|
### Context: CREATE TABLE table_18600760_19 (land___sqmi__ VARCHAR, longitude VARCHAR) ### Question: how many lands with longitude of -100.895783 are? ### Answer: SELECT COUNT(land___sqmi__) FROM table_18600760_19 WHERE longitude = "-100.895783"
|
how many geo id with 48.578664 are
|
CREATE TABLE table_18600760_19 (geo_id VARCHAR, latitude VARCHAR)
|
SELECT COUNT(geo_id) FROM table_18600760_19 WHERE latitude = "48.578664"
|
### Context: CREATE TABLE table_18600760_19 (geo_id VARCHAR, latitude VARCHAR) ### Question: how many geo id with 48.578664 are ### Answer: SELECT COUNT(geo_id) FROM table_18600760_19 WHERE latitude = "48.578664"
|
what is the latitude in the township where wate is 0.288
|
CREATE TABLE table_18600760_19 (latitude VARCHAR, water__sqmi_ VARCHAR)
|
SELECT latitude FROM table_18600760_19 WHERE water__sqmi_ = "0.288"
|
### Context: CREATE TABLE table_18600760_19 (latitude VARCHAR, water__sqmi_ VARCHAR) ### Question: what is the latitude in the township where wate is 0.288 ### Answer: SELECT latitude FROM table_18600760_19 WHERE water__sqmi_ = "0.288"
|
how is called the township where the latitude is 47.377790
|
CREATE TABLE table_18600760_19 (township VARCHAR, latitude VARCHAR)
|
SELECT township FROM table_18600760_19 WHERE latitude = "47.377790"
|
### Context: CREATE TABLE table_18600760_19 (township VARCHAR, latitude VARCHAR) ### Question: how is called the township where the latitude is 47.377790 ### Answer: SELECT township FROM table_18600760_19 WHERE latitude = "47.377790"
|
where the land is 35.990 what is the number of the geo id
|
CREATE TABLE table_18600760_19 (geo_id VARCHAR, land___sqmi__ VARCHAR)
|
SELECT geo_id FROM table_18600760_19 WHERE land___sqmi__ = "35.990"
|
### Context: CREATE TABLE table_18600760_19 (geo_id VARCHAR, land___sqmi__ VARCHAR) ### Question: where the land is 35.990 what is the number of the geo id ### Answer: SELECT geo_id FROM table_18600760_19 WHERE land___sqmi__ = "35.990"
|
Name the land where geo id is 3807717980
|
CREATE TABLE table_18600760_4 (land___sqmi__ VARCHAR, geo_id VARCHAR)
|
SELECT land___sqmi__ FROM table_18600760_4 WHERE geo_id = 3807717980
|
### Context: CREATE TABLE table_18600760_4 (land___sqmi__ VARCHAR, geo_id VARCHAR) ### Question: Name the land where geo id is 3807717980 ### Answer: SELECT land___sqmi__ FROM table_18600760_4 WHERE geo_id = 3807717980
|
Name the latitude for deer lake
|
CREATE TABLE table_18600760_4 (latitude VARCHAR, township VARCHAR)
|
SELECT latitude FROM table_18600760_4 WHERE township = "Deer Lake"
|
### Context: CREATE TABLE table_18600760_4 (latitude VARCHAR, township VARCHAR) ### Question: Name the latitude for deer lake ### Answer: SELECT latitude FROM table_18600760_4 WHERE township = "Deer Lake"
|
If the water square milage is 1.701, what is the land square milage?
|
CREATE TABLE table_18600760_7 (land___sqmi__ VARCHAR, water__sqmi_ VARCHAR)
|
SELECT land___sqmi__ FROM table_18600760_7 WHERE water__sqmi_ = "1.701"
|
### Context: CREATE TABLE table_18600760_7 (land___sqmi__ VARCHAR, water__sqmi_ VARCHAR) ### Question: If the water square milage is 1.701, what is the land square milage? ### Answer: SELECT land___sqmi__ FROM table_18600760_7 WHERE water__sqmi_ = "1.701"
|
In Cavalier County and the geo id is larger than 3801931620.0, what is the population?
|
CREATE TABLE table_18600760_7 (pop__2010_ VARCHAR, county VARCHAR, geo_id VARCHAR)
|
SELECT pop__2010_ FROM table_18600760_7 WHERE county = "Cavalier" AND geo_id > 3801931620.0
|
### Context: CREATE TABLE table_18600760_7 (pop__2010_ VARCHAR, county VARCHAR, geo_id VARCHAR) ### Question: In Cavalier County and the geo id is larger than 3801931620.0, what is the population? ### Answer: SELECT pop__2010_ FROM table_18600760_7 WHERE county = "Cavalier" AND geo_id > 3801931620.0
|
If the population is 1858, what is the maximum ansi code?
|
CREATE TABLE table_18600760_7 (ansi_code INTEGER, pop__2010_ VARCHAR)
|
SELECT MAX(ansi_code) FROM table_18600760_7 WHERE pop__2010_ = 1858
|
### Context: CREATE TABLE table_18600760_7 (ansi_code INTEGER, pop__2010_ VARCHAR) ### Question: If the population is 1858, what is the maximum ansi code? ### Answer: SELECT MAX(ansi_code) FROM table_18600760_7 WHERE pop__2010_ = 1858
|
If the longitude is -97.473110, what is the minimum geo id?
|
CREATE TABLE table_18600760_7 (geo_id INTEGER, longitude VARCHAR)
|
SELECT MIN(geo_id) FROM table_18600760_7 WHERE longitude = "-97.473110"
|
### Context: CREATE TABLE table_18600760_7 (geo_id INTEGER, longitude VARCHAR) ### Question: If the longitude is -97.473110, what is the minimum geo id? ### Answer: SELECT MIN(geo_id) FROM table_18600760_7 WHERE longitude = "-97.473110"
|
If the ansi code is 1036632, what is the name of the township?
|
CREATE TABLE table_18600760_7 (township VARCHAR, ansi_code VARCHAR)
|
SELECT township FROM table_18600760_7 WHERE ansi_code = 1036632
|
### Context: CREATE TABLE table_18600760_7 (township VARCHAR, ansi_code VARCHAR) ### Question: If the ansi code is 1036632, what is the name of the township? ### Answer: SELECT township FROM table_18600760_7 WHERE ansi_code = 1036632
|
If the land square milage is 10.950, what is the longitude?
|
CREATE TABLE table_18600760_7 (longitude VARCHAR, land___sqmi__ VARCHAR)
|
SELECT longitude FROM table_18600760_7 WHERE land___sqmi__ = "10.950"
|
### Context: CREATE TABLE table_18600760_7 (longitude VARCHAR, land___sqmi__ VARCHAR) ### Question: If the land square milage is 10.950, what is the longitude? ### Answer: SELECT longitude FROM table_18600760_7 WHERE land___sqmi__ = "10.950"
|
What township is located at longitude -99.287270?
|
CREATE TABLE table_18600760_9 (township VARCHAR, longitude VARCHAR)
|
SELECT township FROM table_18600760_9 WHERE longitude = "-99.287270"
|
### Context: CREATE TABLE table_18600760_9 (township VARCHAR, longitude VARCHAR) ### Question: What township is located at longitude -99.287270? ### Answer: SELECT township FROM table_18600760_9 WHERE longitude = "-99.287270"
|
What is the longitude of the township at ANSI code 1759682?
|
CREATE TABLE table_18600760_9 (longitude VARCHAR, ansi_code VARCHAR)
|
SELECT longitude FROM table_18600760_9 WHERE ansi_code = 1759682
|
### Context: CREATE TABLE table_18600760_9 (longitude VARCHAR, ansi_code VARCHAR) ### Question: What is the longitude of the township at ANSI code 1759682? ### Answer: SELECT longitude FROM table_18600760_9 WHERE ansi_code = 1759682
|
How many square miles of water does the township at latitude 48.064751 have?
|
CREATE TABLE table_18600760_9 (water__sqmi_ VARCHAR, latitude VARCHAR)
|
SELECT water__sqmi_ FROM table_18600760_9 WHERE latitude = "48.064751"
|
### Context: CREATE TABLE table_18600760_9 (water__sqmi_ VARCHAR, latitude VARCHAR) ### Question: How many square miles of water does the township at latitude 48.064751 have? ### Answer: SELECT water__sqmi_ FROM table_18600760_9 WHERE latitude = "48.064751"
|
What is the geo code of the township with ANSI code 1759243?
|
CREATE TABLE table_18600760_9 (geo_id VARCHAR, ansi_code VARCHAR)
|
SELECT geo_id FROM table_18600760_9 WHERE ansi_code = 1759243
|
### Context: CREATE TABLE table_18600760_9 (geo_id VARCHAR, ansi_code VARCHAR) ### Question: What is the geo code of the township with ANSI code 1759243? ### Answer: SELECT geo_id FROM table_18600760_9 WHERE ansi_code = 1759243
|
When santiago del estero is the hometown who is the contestant?
|
CREATE TABLE table_18626383_2 (contestant VARCHAR, hometown VARCHAR)
|
SELECT contestant FROM table_18626383_2 WHERE hometown = "Santiago del Estero"
|
### Context: CREATE TABLE table_18626383_2 (contestant VARCHAR, hometown VARCHAR) ### Question: When santiago del estero is the hometown who is the contestant? ### Answer: SELECT contestant FROM table_18626383_2 WHERE hometown = "Santiago del Estero"
|
When belarus is the country what is the hometown?
|
CREATE TABLE table_18626383_2 (hometown VARCHAR, country VARCHAR)
|
SELECT hometown FROM table_18626383_2 WHERE country = "Belarus"
|
### Context: CREATE TABLE table_18626383_2 (hometown VARCHAR, country VARCHAR) ### Question: When belarus is the country what is the hometown? ### Answer: SELECT hometown FROM table_18626383_2 WHERE country = "Belarus"
|
When bahamas is the country what is the height in centimeters?
|
CREATE TABLE table_18626383_2 (height__cm_ VARCHAR, country VARCHAR)
|
SELECT height__cm_ FROM table_18626383_2 WHERE country = "Bahamas"
|
### Context: CREATE TABLE table_18626383_2 (height__cm_ VARCHAR, country VARCHAR) ### Question: When bahamas is the country what is the height in centimeters? ### Answer: SELECT height__cm_ FROM table_18626383_2 WHERE country = "Bahamas"
|
When finland is the country how many hometowns are there?
|
CREATE TABLE table_18626383_2 (hometown VARCHAR, country VARCHAR)
|
SELECT COUNT(hometown) FROM table_18626383_2 WHERE country = "Finland"
|
### Context: CREATE TABLE table_18626383_2 (hometown VARCHAR, country VARCHAR) ### Question: When finland is the country how many hometowns are there? ### Answer: SELECT COUNT(hometown) FROM table_18626383_2 WHERE country = "Finland"
|
When johannesburg is the hometown who is the contestant?
|
CREATE TABLE table_18626383_2 (contestant VARCHAR, hometown VARCHAR)
|
SELECT contestant FROM table_18626383_2 WHERE hometown = "Johannesburg"
|
### Context: CREATE TABLE table_18626383_2 (contestant VARCHAR, hometown VARCHAR) ### Question: When johannesburg is the hometown who is the contestant? ### Answer: SELECT contestant FROM table_18626383_2 WHERE hometown = "Johannesburg"
|
When valora roucek is the contestant how many heights in centimeters are there?
|
CREATE TABLE table_18626383_2 (height__cm_ VARCHAR, contestant VARCHAR)
|
SELECT COUNT(height__cm_) FROM table_18626383_2 WHERE contestant = "Valora Roucek"
|
### Context: CREATE TABLE table_18626383_2 (height__cm_ VARCHAR, contestant VARCHAR) ### Question: When valora roucek is the contestant how many heights in centimeters are there? ### Answer: SELECT COUNT(height__cm_) FROM table_18626383_2 WHERE contestant = "Valora Roucek"
|
Name the round 1 for team event
|
CREATE TABLE table_18646111_13 (round_1 VARCHAR, event VARCHAR)
|
SELECT round_1 FROM table_18646111_13 WHERE event = "Team"
|
### Context: CREATE TABLE table_18646111_13 (round_1 VARCHAR, event VARCHAR) ### Question: Name the round 1 for team event ### Answer: SELECT round_1 FROM table_18646111_13 WHERE event = "Team"
|
Name the number of semifinals for tt2
|
CREATE TABLE table_18646111_13 (semifinals VARCHAR, class VARCHAR)
|
SELECT COUNT(semifinals) FROM table_18646111_13 WHERE class = "TT2"
|
### Context: CREATE TABLE table_18646111_13 (semifinals VARCHAR, class VARCHAR) ### Question: Name the number of semifinals for tt2 ### Answer: SELECT COUNT(semifinals) FROM table_18646111_13 WHERE class = "TT2"
|
Name the 1/8 finals for round 1 n/a
|
CREATE TABLE table_18646111_13 (round_1 VARCHAR)
|
SELECT 1 AS _8_finals FROM table_18646111_13 WHERE round_1 = "N/A"
|
### Context: CREATE TABLE table_18646111_13 (round_1 VARCHAR) ### Question: Name the 1/8 finals for round 1 n/a ### Answer: SELECT 1 AS _8_finals FROM table_18646111_13 WHERE round_1 = "N/A"
|
Name the total number of round 3 for class tt1
|
CREATE TABLE table_18646111_13 (round_3 VARCHAR, class VARCHAR)
|
SELECT COUNT(round_3) FROM table_18646111_13 WHERE class = "TT1"
|
### Context: CREATE TABLE table_18646111_13 (round_3 VARCHAR, class VARCHAR) ### Question: Name the total number of round 3 for class tt1 ### Answer: SELECT COUNT(round_3) FROM table_18646111_13 WHERE class = "TT1"
|
Name the event for hans ruep
|
CREATE TABLE table_18646111_13 (event VARCHAR, athlete VARCHAR)
|
SELECT event FROM table_18646111_13 WHERE athlete = "Hans Ruep"
|
### Context: CREATE TABLE table_18646111_13 (event VARCHAR, athlete VARCHAR) ### Question: Name the event for hans ruep ### Answer: SELECT event FROM table_18646111_13 WHERE athlete = "Hans Ruep"
|
When 4 is the v-band what is the overall amount of ka-bands?
|
CREATE TABLE table_186468_1 (ka_band VARCHAR, v_band VARCHAR)
|
SELECT COUNT(ka_band) FROM table_186468_1 WHERE v_band = "4"
|
### Context: CREATE TABLE table_186468_1 (ka_band VARCHAR, v_band VARCHAR) ### Question: When 4 is the v-band what is the overall amount of ka-bands? ### Answer: SELECT COUNT(ka_band) FROM table_186468_1 WHERE v_band = "4"
|
When 8.3 is the q-band what is the property?
|
CREATE TABLE table_186468_1 (property VARCHAR, q_band VARCHAR)
|
SELECT property FROM table_186468_1 WHERE q_band = "8.3"
|
### Context: CREATE TABLE table_186468_1 (property VARCHAR, q_band VARCHAR) ### Question: When 8.3 is the q-band what is the property? ### Answer: SELECT property FROM table_186468_1 WHERE q_band = "8.3"
|
When 5.5 is the l-band what is the v-band?
|
CREATE TABLE table_186468_1 (v_band VARCHAR, k_band VARCHAR)
|
SELECT v_band FROM table_186468_1 WHERE k_band = "5.5"
|
### Context: CREATE TABLE table_186468_1 (v_band VARCHAR, k_band VARCHAR) ### Question: When 5.5 is the l-band what is the v-band? ### Answer: SELECT v_band FROM table_186468_1 WHERE k_band = "5.5"
|
When 2 is the k-band what is the v-band?
|
CREATE TABLE table_186468_1 (v_band VARCHAR, k_band VARCHAR)
|
SELECT v_band FROM table_186468_1 WHERE k_band = "2"
|
### Context: CREATE TABLE table_186468_1 (v_band VARCHAR, k_band VARCHAR) ### Question: When 2 is the k-band what is the v-band? ### Answer: SELECT v_band FROM table_186468_1 WHERE k_band = "2"
|
When 2 is the ka-band how many properties are there?
|
CREATE TABLE table_186468_1 (property VARCHAR, ka_band VARCHAR)
|
SELECT COUNT(property) FROM table_186468_1 WHERE ka_band = "2"
|
### Context: CREATE TABLE table_186468_1 (property VARCHAR, ka_band VARCHAR) ### Question: When 2 is the ka-band how many properties are there? ### Answer: SELECT COUNT(property) FROM table_186468_1 WHERE ka_band = "2"
|
When olympikus is the main sponsor who is the secondary sponsor?
|
CREATE TABLE table_187239_1 (secondary_sponsor VARCHAR, main_sponsor VARCHAR)
|
SELECT secondary_sponsor FROM table_187239_1 WHERE main_sponsor = "Olympikus"
|
### Context: CREATE TABLE table_187239_1 (secondary_sponsor VARCHAR, main_sponsor VARCHAR) ### Question: When olympikus is the main sponsor who is the secondary sponsor? ### Answer: SELECT secondary_sponsor FROM table_187239_1 WHERE main_sponsor = "Olympikus"
|
When ale is the main sponsor who is the secondary sponsor?
|
CREATE TABLE table_187239_1 (secondary_sponsor VARCHAR, main_sponsor VARCHAR)
|
SELECT secondary_sponsor FROM table_187239_1 WHERE main_sponsor = "Ale"
|
### Context: CREATE TABLE table_187239_1 (secondary_sponsor VARCHAR, main_sponsor VARCHAR) ### Question: When ale is the main sponsor who is the secondary sponsor? ### Answer: SELECT secondary_sponsor FROM table_187239_1 WHERE main_sponsor = "Ale"
|
When tim brasil brokers are the minor sponsors who is the kit manufacturer?
|
CREATE TABLE table_187239_1 (kit_manufacturer VARCHAR, minor_sponsors VARCHAR)
|
SELECT kit_manufacturer FROM table_187239_1 WHERE minor_sponsors = "Tim Brasil Brokers"
|
### Context: CREATE TABLE table_187239_1 (kit_manufacturer VARCHAR, minor_sponsors VARCHAR) ### Question: When tim brasil brokers are the minor sponsors who is the kit manufacturer? ### Answer: SELECT kit_manufacturer FROM table_187239_1 WHERE minor_sponsors = "Tim Brasil Brokers"
|
When batavo is the main sponsor and olympikus is the kit manufacturer who are the minor sponsors?
|
CREATE TABLE table_187239_1 (minor_sponsors VARCHAR, kit_manufacturer VARCHAR, main_sponsor VARCHAR)
|
SELECT minor_sponsors FROM table_187239_1 WHERE kit_manufacturer = "Olympikus" AND main_sponsor = "Batavo"
|
### Context: CREATE TABLE table_187239_1 (minor_sponsors VARCHAR, kit_manufacturer VARCHAR, main_sponsor VARCHAR) ### Question: When batavo is the main sponsor and olympikus is the kit manufacturer who are the minor sponsors? ### Answer: SELECT minor_sponsors FROM table_187239_1 WHERE kit_manufacturer = "Olympikus" AND main_sponsor = "Batavo"
|
When 2011 is the period and olympikus is the kit manufacturer how many minor sponsors are there?
|
CREATE TABLE table_187239_1 (minor_sponsors VARCHAR, kit_manufacturer VARCHAR, period VARCHAR)
|
SELECT COUNT(minor_sponsors) FROM table_187239_1 WHERE kit_manufacturer = "Olympikus" AND period = "2011"
|
### Context: CREATE TABLE table_187239_1 (minor_sponsors VARCHAR, kit_manufacturer VARCHAR, period VARCHAR) ### Question: When 2011 is the period and olympikus is the kit manufacturer how many minor sponsors are there? ### Answer: SELECT COUNT(minor_sponsors) FROM table_187239_1 WHERE kit_manufacturer = "Olympikus" AND period = "2011"
|
What season episode is written by neil thompson?
|
CREATE TABLE table_1876825_6 (no_in_season INTEGER, written_by VARCHAR)
|
SELECT MIN(no_in_season) FROM table_1876825_6 WHERE written_by = "Neil Thompson"
|
### Context: CREATE TABLE table_1876825_6 (no_in_season INTEGER, written_by VARCHAR) ### Question: What season episode is written by neil thompson? ### Answer: SELECT MIN(no_in_season) FROM table_1876825_6 WHERE written_by = "Neil Thompson"
|
What was the original air for the 06-03-521 production code?
|
CREATE TABLE table_1876825_6 (original_air_date VARCHAR, production_code VARCHAR)
|
SELECT original_air_date FROM table_1876825_6 WHERE production_code = "06-03-521"
|
### Context: CREATE TABLE table_1876825_6 (original_air_date VARCHAR, production_code VARCHAR) ### Question: What was the original air for the 06-03-521 production code? ### Answer: SELECT original_air_date FROM table_1876825_6 WHERE production_code = "06-03-521"
|
What episode number in the series aired on February 8, 2004?
|
CREATE TABLE table_1876825_6 (no_in_series INTEGER, original_air_date VARCHAR)
|
SELECT MAX(no_in_series) FROM table_1876825_6 WHERE original_air_date = "February 8, 2004"
|
### Context: CREATE TABLE table_1876825_6 (no_in_series INTEGER, original_air_date VARCHAR) ### Question: What episode number in the series aired on February 8, 2004? ### Answer: SELECT MAX(no_in_series) FROM table_1876825_6 WHERE original_air_date = "February 8, 2004"
|
In season 5 what episode number was production 06-03-519?
|
CREATE TABLE table_1876825_6 (no_in_season VARCHAR, production_code VARCHAR)
|
SELECT COUNT(no_in_season) FROM table_1876825_6 WHERE production_code = "06-03-519"
|
### Context: CREATE TABLE table_1876825_6 (no_in_season VARCHAR, production_code VARCHAR) ### Question: In season 5 what episode number was production 06-03-519? ### Answer: SELECT COUNT(no_in_season) FROM table_1876825_6 WHERE production_code = "06-03-519"
|
What was the minimum score for r2?
|
CREATE TABLE table_18812411_3 (r2 INTEGER)
|
SELECT MIN(r2) FROM table_18812411_3
|
### Context: CREATE TABLE table_18812411_3 (r2 INTEGER) ### Question: What was the minimum score for r2? ### Answer: SELECT MIN(r2) FROM table_18812411_3
|
What country had a r3 at 72, by Larry Mize?
|
CREATE TABLE table_18812411_3 (country VARCHAR, r3 VARCHAR, player VARCHAR)
|
SELECT country FROM table_18812411_3 WHERE r3 = 72 AND player = "Larry Mize"
|
### Context: CREATE TABLE table_18812411_3 (country VARCHAR, r3 VARCHAR, player VARCHAR) ### Question: What country had a r3 at 72, by Larry Mize? ### Answer: SELECT country FROM table_18812411_3 WHERE r3 = 72 AND player = "Larry Mize"
|
How many times did Fiji win r1?
|
CREATE TABLE table_18812411_3 (r1 VARCHAR, country VARCHAR)
|
SELECT COUNT(r1) FROM table_18812411_3 WHERE country = "Fiji"
|
### Context: CREATE TABLE table_18812411_3 (r1 VARCHAR, country VARCHAR) ### Question: How many times did Fiji win r1? ### Answer: SELECT COUNT(r1) FROM table_18812411_3 WHERE country = "Fiji"
|
How many figures are given for the Socialists in the case where the Social Democrats received 42.2%?
|
CREATE TABLE table_1881642_1 (socialist VARCHAR, social_democratic VARCHAR)
|
SELECT COUNT(socialist) FROM table_1881642_1 WHERE social_democratic = "42.2%"
|
### Context: CREATE TABLE table_1881642_1 (socialist VARCHAR, social_democratic VARCHAR) ### Question: How many figures are given for the Socialists in the case where the Social Democrats received 42.2%? ### Answer: SELECT COUNT(socialist) FROM table_1881642_1 WHERE social_democratic = "42.2%"
|
What date did the Green-Communists receive 5.7%?
|
CREATE TABLE table_1881642_1 (date_released VARCHAR, green_communist VARCHAR)
|
SELECT date_released FROM table_1881642_1 WHERE green_communist = "5.7%"
|
### Context: CREATE TABLE table_1881642_1 (date_released VARCHAR, green_communist VARCHAR) ### Question: What date did the Green-Communists receive 5.7%? ### Answer: SELECT date_released FROM table_1881642_1 WHERE green_communist = "5.7%"
|
If the PCT is 0.514, what was the minimum OTL?
|
CREATE TABLE table_1888165_1 (Otl INTEGER, PCt VARCHAR)
|
SELECT MIN(Otl) FROM table_1888165_1 WHERE PCt = 0.514
|
### Context: CREATE TABLE table_1888165_1 (Otl INTEGER, PCt VARCHAR) ### Question: If the PCT is 0.514, what was the minimum OTL? ### Answer: SELECT MIN(Otl) FROM table_1888165_1 WHERE PCt = 0.514
|
What was the minimum OTL amount?
|
CREATE TABLE table_1888165_1 (Otl INTEGER)
|
SELECT MIN(Otl) FROM table_1888165_1
|
### Context: CREATE TABLE table_1888165_1 (Otl INTEGER) ### Question: What was the minimum OTL amount? ### Answer: SELECT MIN(Otl) FROM table_1888165_1
|
Name the least events for japan
|
CREATE TABLE table_18888159_1 (events INTEGER, country VARCHAR)
|
SELECT MIN(events) FROM table_18888159_1 WHERE country = "Japan"
|
### Context: CREATE TABLE table_18888159_1 (events INTEGER, country VARCHAR) ### Question: Name the least events for japan ### Answer: SELECT MIN(events) FROM table_18888159_1 WHERE country = "Japan"
|
Name the country for 22 events
|
CREATE TABLE table_18888159_1 (country VARCHAR, events VARCHAR)
|
SELECT country FROM table_18888159_1 WHERE events = 22
|
### Context: CREATE TABLE table_18888159_1 (country VARCHAR, events VARCHAR) ### Question: Name the country for 22 events ### Answer: SELECT country FROM table_18888159_1 WHERE events = 22
|
Name the number for fiji
|
CREATE TABLE table_18888159_1 (_number VARCHAR, country VARCHAR)
|
SELECT _number FROM table_18888159_1 WHERE country = "Fiji"
|
### Context: CREATE TABLE table_18888159_1 (_number VARCHAR, country VARCHAR) ### Question: Name the number for fiji ### Answer: SELECT _number FROM table_18888159_1 WHERE country = "Fiji"
|
Name the total number of points for number 6
|
CREATE TABLE table_18888159_1 (points VARCHAR, _number VARCHAR)
|
SELECT COUNT(points) FROM table_18888159_1 WHERE _number = 6
|
### Context: CREATE TABLE table_18888159_1 (points VARCHAR, _number VARCHAR) ### Question: Name the total number of points for number 6 ### Answer: SELECT COUNT(points) FROM table_18888159_1 WHERE _number = 6
|
What is the location that had a driver named Pierre de Caters?
|
CREATE TABLE table_18893428_1 (location VARCHAR, driver VARCHAR)
|
SELECT location FROM table_18893428_1 WHERE driver = "Pierre de Caters"
|
### Context: CREATE TABLE table_18893428_1 (location VARCHAR, driver VARCHAR) ### Question: What is the location that had a driver named Pierre de Caters? ### Answer: SELECT location FROM table_18893428_1 WHERE driver = "Pierre de Caters"
|
Who is the constructor for the car driven by George Heath?
|
CREATE TABLE table_18893428_1 (constructor VARCHAR, driver VARCHAR)
|
SELECT constructor FROM table_18893428_1 WHERE driver = "George Heath"
|
### Context: CREATE TABLE table_18893428_1 (constructor VARCHAR, driver VARCHAR) ### Question: Who is the constructor for the car driven by George Heath? ### Answer: SELECT constructor FROM table_18893428_1 WHERE driver = "George Heath"
|
What is the total number of drivers who have cars constructed by Mercedes-Benz?
|
CREATE TABLE table_18893428_1 (driver VARCHAR, constructor VARCHAR)
|
SELECT COUNT(driver) FROM table_18893428_1 WHERE constructor = "Mercedes-Benz"
|
### Context: CREATE TABLE table_18893428_1 (driver VARCHAR, constructor VARCHAR) ### Question: What is the total number of drivers who have cars constructed by Mercedes-Benz? ### Answer: SELECT COUNT(driver) FROM table_18893428_1 WHERE constructor = "Mercedes-Benz"
|
What is the location of the car that has a constructor of Lorraine-Dietrich?
|
CREATE TABLE table_18893428_1 (location VARCHAR, constructor VARCHAR)
|
SELECT location FROM table_18893428_1 WHERE constructor = "Lorraine-Dietrich"
|
### Context: CREATE TABLE table_18893428_1 (location VARCHAR, constructor VARCHAR) ### Question: What is the location of the car that has a constructor of Lorraine-Dietrich? ### Answer: SELECT location FROM table_18893428_1 WHERE constructor = "Lorraine-Dietrich"
|
How many times did Charles Jarrott report?
|
CREATE TABLE table_18893428_1 (report VARCHAR, driver VARCHAR)
|
SELECT COUNT(report) FROM table_18893428_1 WHERE driver = "Charles Jarrott"
|
### Context: CREATE TABLE table_18893428_1 (report VARCHAR, driver VARCHAR) ### Question: How many times did Charles Jarrott report? ### Answer: SELECT COUNT(report) FROM table_18893428_1 WHERE driver = "Charles Jarrott"
|
Who is the driver of the entry constructed by Mercedes-Benz?
|
CREATE TABLE table_18893428_1 (driver VARCHAR, constructor VARCHAR)
|
SELECT driver FROM table_18893428_1 WHERE constructor = "Mercedes-Benz"
|
### Context: CREATE TABLE table_18893428_1 (driver VARCHAR, constructor VARCHAR) ### Question: Who is the driver of the entry constructed by Mercedes-Benz? ### Answer: SELECT driver FROM table_18893428_1 WHERE constructor = "Mercedes-Benz"
|
What is the used (kb) when the graphics mode is 4?
|
CREATE TABLE table_18950885_3 (used__kb_ INTEGER, graphics_mode VARCHAR)
|
SELECT MIN(used__kb_) FROM table_18950885_3 WHERE graphics_mode = 4
|
### Context: CREATE TABLE table_18950885_3 (used__kb_ INTEGER, graphics_mode VARCHAR) ### Question: What is the used (kb) when the graphics mode is 4? ### Answer: SELECT MIN(used__kb_) FROM table_18950885_3 WHERE graphics_mode = 4
|
If graphics mode is less than 1.0, what are the char cells?
|
CREATE TABLE table_18950885_3 (char_cells VARCHAR, graphics_mode INTEGER)
|
SELECT char_cells FROM table_18950885_3 WHERE graphics_mode < 1.0
|
### Context: CREATE TABLE table_18950885_3 (char_cells VARCHAR, graphics_mode INTEGER) ### Question: If graphics mode is less than 1.0, what are the char cells? ### Answer: SELECT char_cells FROM table_18950885_3 WHERE graphics_mode < 1.0
|
What is the smallest converted value at number 19?
|
CREATE TABLE table_1895522_2 (converted INTEGER, number VARCHAR)
|
SELECT MIN(converted) FROM table_1895522_2 WHERE number = "19"
|
### Context: CREATE TABLE table_1895522_2 (converted INTEGER, number VARCHAR) ### Question: What is the smallest converted value at number 19? ### Answer: SELECT MIN(converted) FROM table_1895522_2 WHERE number = "19"
|
Name the original title for the last metro
|
CREATE TABLE table_18987377_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)
|
SELECT original_title FROM table_18987377_1 WHERE film_title_used_in_nomination = "The Last Metro"
|
### Context: CREATE TABLE table_18987377_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR) ### Question: Name the original title for the last metro ### Answer: SELECT original_title FROM table_18987377_1 WHERE film_title_used_in_nomination = "The Last Metro"
|
Name the film title for andré téchiné category:articles with hcards
|
CREATE TABLE table_18987377_1 (film_title_used_in_nomination VARCHAR, director VARCHAR)
|
SELECT film_title_used_in_nomination FROM table_18987377_1 WHERE director = "André Téchiné Category:Articles with hCards"
|
### Context: CREATE TABLE table_18987377_1 (film_title_used_in_nomination VARCHAR, director VARCHAR) ### Question: Name the film title for andré téchiné category:articles with hcards ### Answer: SELECT film_title_used_in_nomination FROM table_18987377_1 WHERE director = "André Téchiné Category:Articles with hCards"
|
Name the director for coup de torchon
|
CREATE TABLE table_18987377_1 (director VARCHAR, film_title_used_in_nomination VARCHAR)
|
SELECT director FROM table_18987377_1 WHERE film_title_used_in_nomination = "Coup de Torchon"
|
### Context: CREATE TABLE table_18987377_1 (director VARCHAR, film_title_used_in_nomination VARCHAR) ### Question: Name the director for coup de torchon ### Answer: SELECT director FROM table_18987377_1 WHERE film_title_used_in_nomination = "Coup de Torchon"
|
Name the film titled for marcel camus category:articles with hcards
|
CREATE TABLE table_18987377_1 (film_title_used_in_nomination VARCHAR, director VARCHAR)
|
SELECT film_title_used_in_nomination FROM table_18987377_1 WHERE director = "Marcel Camus Category:Articles with hCards"
|
### Context: CREATE TABLE table_18987377_1 (film_title_used_in_nomination VARCHAR, director VARCHAR) ### Question: Name the film titled for marcel camus category:articles with hcards ### Answer: SELECT film_title_used_in_nomination FROM table_18987377_1 WHERE director = "Marcel Camus Category:Articles with hCards"
|
When cindy miranda is the name what is the home or representative town or province?
|
CREATE TABLE table_19061741_1 (home_or_representative_town_or_province VARCHAR, name VARCHAR)
|
SELECT home_or_representative_town_or_province FROM table_19061741_1 WHERE name = "Cindy Miranda"
|
### Context: CREATE TABLE table_19061741_1 (home_or_representative_town_or_province VARCHAR, name VARCHAR) ### Question: When cindy miranda is the name what is the home or representative town or province? ### Answer: SELECT home_or_representative_town_or_province FROM table_19061741_1 WHERE name = "Cindy Miranda"
|
When nel rapiz is the name what is the status?
|
CREATE TABLE table_19061741_1 (status VARCHAR, name VARCHAR)
|
SELECT status FROM table_19061741_1 WHERE name = "Nel Rapiz"
|
### Context: CREATE TABLE table_19061741_1 (status VARCHAR, name VARCHAR) ### Question: When nel rapiz is the name what is the status? ### Answer: SELECT status FROM table_19061741_1 WHERE name = "Nel Rapiz"
|
When day 8-36 is the duration what is the season?
|
CREATE TABLE table_19061741_1 (season VARCHAR, duration VARCHAR)
|
SELECT season FROM table_19061741_1 WHERE duration = "Day 8-36"
|
### Context: CREATE TABLE table_19061741_1 (season VARCHAR, duration VARCHAR) ### Question: When day 8-36 is the duration what is the season? ### Answer: SELECT season FROM table_19061741_1 WHERE duration = "Day 8-36"
|
When luz mcclinton is the name what is the season?
|
CREATE TABLE table_19061741_1 (season VARCHAR, name VARCHAR)
|
SELECT season FROM table_19061741_1 WHERE name = "Luz McClinton"
|
### Context: CREATE TABLE table_19061741_1 (season VARCHAR, name VARCHAR) ### Question: When luz mcclinton is the name what is the season? ### Answer: SELECT season FROM table_19061741_1 WHERE name = "Luz McClinton"
|
When yen galagnara is the name what is the highest total days in the pbb house?
|
CREATE TABLE table_19061741_1 (total_days_in_pbb_house INTEGER, name VARCHAR)
|
SELECT MAX(total_days_in_pbb_house) FROM table_19061741_1 WHERE name = "Yen Galagnara"
|
### Context: CREATE TABLE table_19061741_1 (total_days_in_pbb_house INTEGER, name VARCHAR) ### Question: When yen galagnara is the name what is the highest total days in the pbb house? ### Answer: SELECT MAX(total_days_in_pbb_house) FROM table_19061741_1 WHERE name = "Yen Galagnara"
|
How many match numbers have team europe listed as osku palermaa?
|
CREATE TABLE table_19072602_2 (match_no VARCHAR, team_europe VARCHAR)
|
SELECT COUNT(match_no) FROM table_19072602_2 WHERE team_europe = "Osku Palermaa"
|
### Context: CREATE TABLE table_19072602_2 (match_no VARCHAR, team_europe VARCHAR) ### Question: How many match numbers have team europe listed as osku palermaa? ### Answer: SELECT COUNT(match_no) FROM table_19072602_2 WHERE team_europe = "Osku Palermaa"
|
When osku palermaa is on the europe team how many match numbers are there?
|
CREATE TABLE table_19072602_5 (match_no VARCHAR, team_europe VARCHAR)
|
SELECT COUNT(match_no) FROM table_19072602_5 WHERE team_europe = "Osku Palermaa"
|
### Context: CREATE TABLE table_19072602_5 (match_no VARCHAR, team_europe VARCHAR) ### Question: When osku palermaa is on the europe team how many match numbers are there? ### Answer: SELECT COUNT(match_no) FROM table_19072602_5 WHERE team_europe = "Osku Palermaa"
|
When paul moor is on the europe team who is on the usa team?
|
CREATE TABLE table_19072602_5 (team_usa VARCHAR, team_europe VARCHAR)
|
SELECT team_usa FROM table_19072602_5 WHERE team_europe = "Paul Moor"
|
### Context: CREATE TABLE table_19072602_5 (team_usa VARCHAR, team_europe VARCHAR) ### Question: When paul moor is on the europe team who is on the usa team? ### Answer: SELECT team_usa FROM table_19072602_5 WHERE team_europe = "Paul Moor"
|
Name the mountains classification for team columbia
|
CREATE TABLE table_19115414_4 (mountains_classification VARCHAR, team_classification VARCHAR)
|
SELECT mountains_classification FROM table_19115414_4 WHERE team_classification = "Team Columbia"
|
### Context: CREATE TABLE table_19115414_4 (mountains_classification VARCHAR, team_classification VARCHAR) ### Question: Name the mountains classification for team columbia ### Answer: SELECT mountains_classification FROM table_19115414_4 WHERE team_classification = "Team Columbia"
|
Name the number of stage winners for team columbia
|
CREATE TABLE table_19115414_4 (stage__winner_ VARCHAR, team_classification VARCHAR)
|
SELECT COUNT(stage__winner_) FROM table_19115414_4 WHERE team_classification = "Team Columbia"
|
### Context: CREATE TABLE table_19115414_4 (stage__winner_ VARCHAR, team_classification VARCHAR) ### Question: Name the number of stage winners for team columbia ### Answer: SELECT COUNT(stage__winner_) FROM table_19115414_4 WHERE team_classification = "Team Columbia"
|
Name the mountains classification for alexander kristoff
|
CREATE TABLE table_19115414_4 (mountains_classification VARCHAR, points_classification VARCHAR)
|
SELECT mountains_classification FROM table_19115414_4 WHERE points_classification = "Alexander Kristoff"
|
### Context: CREATE TABLE table_19115414_4 (mountains_classification VARCHAR, points_classification VARCHAR) ### Question: Name the mountains classification for alexander kristoff ### Answer: SELECT mountains_classification FROM table_19115414_4 WHERE points_classification = "Alexander Kristoff"
|
How much is the other black population when the black African population is 37811?
|
CREATE TABLE table_19149550_7 (other_black_population INTEGER, black_african_population VARCHAR)
|
SELECT MIN(other_black_population) FROM table_19149550_7 WHERE black_african_population = 37811
|
### Context: CREATE TABLE table_19149550_7 (other_black_population INTEGER, black_african_population VARCHAR) ### Question: How much is the other black population when the black African population is 37811? ### Answer: SELECT MIN(other_black_population) FROM table_19149550_7 WHERE black_african_population = 37811
|
Where are the london borough with the black caribbean population of 17974?
|
CREATE TABLE table_19149550_7 (london_borough VARCHAR, black_caribbean_population VARCHAR)
|
SELECT london_borough FROM table_19149550_7 WHERE black_caribbean_population = 17974
|
### Context: CREATE TABLE table_19149550_7 (london_borough VARCHAR, black_caribbean_population VARCHAR) ### Question: Where are the london borough with the black caribbean population of 17974? ### Answer: SELECT london_borough FROM table_19149550_7 WHERE black_caribbean_population = 17974
|
What is the rank of london borough in southwark?
|
CREATE TABLE table_19149550_7 (rank VARCHAR, london_borough VARCHAR)
|
SELECT rank FROM table_19149550_7 WHERE london_borough = "Southwark"
|
### Context: CREATE TABLE table_19149550_7 (rank VARCHAR, london_borough VARCHAR) ### Question: What is the rank of london borough in southwark? ### Answer: SELECT rank FROM table_19149550_7 WHERE london_borough = "Southwark"
|
What is the black caribbean population when the other black population is 2243?
|
CREATE TABLE table_19149550_7 (black_caribbean_population INTEGER, other_black_population VARCHAR)
|
SELECT MAX(black_caribbean_population) FROM table_19149550_7 WHERE other_black_population = 2243
|
### Context: CREATE TABLE table_19149550_7 (black_caribbean_population INTEGER, other_black_population VARCHAR) ### Question: What is the black caribbean population when the other black population is 2243? ### Answer: SELECT MAX(black_caribbean_population) FROM table_19149550_7 WHERE other_black_population = 2243
|
What is the black caribbean population when the black African population is less than 10552.0?
|
CREATE TABLE table_19149550_7 (black_caribbean_population INTEGER, black_african_population INTEGER)
|
SELECT MIN(black_caribbean_population) FROM table_19149550_7 WHERE black_african_population < 10552.0
|
### Context: CREATE TABLE table_19149550_7 (black_caribbean_population INTEGER, black_african_population INTEGER) ### Question: What is the black caribbean population when the black African population is less than 10552.0? ### Answer: SELECT MIN(black_caribbean_population) FROM table_19149550_7 WHERE black_african_population < 10552.0
|
What time slot had an adult rating of 0.6?
|
CREATE TABLE table_19188562_2 (timeslot VARCHAR, rating__adults_18_49_ VARCHAR)
|
SELECT timeslot FROM table_19188562_2 WHERE rating__adults_18_49_ = "0.6"
|
### Context: CREATE TABLE table_19188562_2 (timeslot VARCHAR, rating__adults_18_49_ VARCHAR) ### Question: What time slot had an adult rating of 0.6? ### Answer: SELECT timeslot FROM table_19188562_2 WHERE rating__adults_18_49_ = "0.6"
|
What season finale date has 2.02 million u.s. Viewers?
|
CREATE TABLE table_19188562_2 (season VARCHAR, us_viewers__in_millions_ VARCHAR)
|
SELECT season AS finale FROM table_19188562_2 WHERE us_viewers__in_millions_ = "2.02"
|
### Context: CREATE TABLE table_19188562_2 (season VARCHAR, us_viewers__in_millions_ VARCHAR) ### Question: What season finale date has 2.02 million u.s. Viewers? ### Answer: SELECT season AS finale FROM table_19188562_2 WHERE us_viewers__in_millions_ = "2.02"
|
How many million u.s. Viewers watched season 1?
|
CREATE TABLE table_19188562_2 (us_viewers__in_millions_ VARCHAR, season VARCHAR)
|
SELECT us_viewers__in_millions_ FROM table_19188562_2 WHERE season = 1
|
### Context: CREATE TABLE table_19188562_2 (us_viewers__in_millions_ VARCHAR, season VARCHAR) ### Question: How many million u.s. Viewers watched season 1? ### Answer: SELECT us_viewers__in_millions_ FROM table_19188562_2 WHERE season = 1
|
How many tv series had an adult rating of 1.2?
|
CREATE TABLE table_19188562_2 (tv_season VARCHAR, rating__adults_18_49_ VARCHAR)
|
SELECT COUNT(tv_season) FROM table_19188562_2 WHERE rating__adults_18_49_ = "1.2"
|
### Context: CREATE TABLE table_19188562_2 (tv_season VARCHAR, rating__adults_18_49_ VARCHAR) ### Question: How many tv series had an adult rating of 1.2? ### Answer: SELECT COUNT(tv_season) FROM table_19188562_2 WHERE rating__adults_18_49_ = "1.2"
|
Where is the University that is also called Hawks?
|
CREATE TABLE table_19210115_1 (location VARCHAR, nickname VARCHAR)
|
SELECT location FROM table_19210115_1 WHERE nickname = "Hawks"
|
### Context: CREATE TABLE table_19210115_1 (location VARCHAR, nickname VARCHAR) ### Question: Where is the University that is also called Hawks? ### Answer: SELECT location FROM table_19210115_1 WHERE nickname = "Hawks"
|
Where is the University that is also called Owls?
|
CREATE TABLE table_19210115_1 (location VARCHAR, nickname VARCHAR)
|
SELECT location FROM table_19210115_1 WHERE nickname = "Owls"
|
### Context: CREATE TABLE table_19210115_1 (location VARCHAR, nickname VARCHAR) ### Question: Where is the University that is also called Owls? ### Answer: SELECT location FROM table_19210115_1 WHERE nickname = "Owls"
|
How many University founded in 1863?
|
CREATE TABLE table_19210115_1 (enrollment VARCHAR, founded VARCHAR)
|
SELECT COUNT(enrollment) FROM table_19210115_1 WHERE founded = 1863
|
### Context: CREATE TABLE table_19210115_1 (enrollment VARCHAR, founded VARCHAR) ### Question: How many University founded in 1863? ### Answer: SELECT COUNT(enrollment) FROM table_19210115_1 WHERE founded = 1863
|
Where is the University that plays in the American Athletic Conference?
|
CREATE TABLE table_19210115_1 (location VARCHAR, conference VARCHAR)
|
SELECT location FROM table_19210115_1 WHERE conference = "American Athletic conference"
|
### Context: CREATE TABLE table_19210115_1 (location VARCHAR, conference VARCHAR) ### Question: Where is the University that plays in the American Athletic Conference? ### Answer: SELECT location FROM table_19210115_1 WHERE conference = "American Athletic conference"
|
What is the affiliation of the University called Explorers?
|
CREATE TABLE table_19210115_1 (affiliation VARCHAR, nickname VARCHAR)
|
SELECT affiliation FROM table_19210115_1 WHERE nickname = "Explorers"
|
### Context: CREATE TABLE table_19210115_1 (affiliation VARCHAR, nickname VARCHAR) ### Question: What is the affiliation of the University called Explorers? ### Answer: SELECT affiliation FROM table_19210115_1 WHERE nickname = "Explorers"
|
What is the nickname of Drexel University?
|
CREATE TABLE table_19210115_1 (nickname VARCHAR, institution VARCHAR)
|
SELECT nickname FROM table_19210115_1 WHERE institution = "Drexel University"
|
### Context: CREATE TABLE table_19210115_1 (nickname VARCHAR, institution VARCHAR) ### Question: What is the nickname of Drexel University? ### Answer: SELECT nickname FROM table_19210115_1 WHERE institution = "Drexel University"
|
What is the brand in Metro Manila?
|
CREATE TABLE table_19215259_1 (branding VARCHAR, location VARCHAR)
|
SELECT branding FROM table_19215259_1 WHERE location = "Metro Manila"
|
### Context: CREATE TABLE table_19215259_1 (branding VARCHAR, location VARCHAR) ### Question: What is the brand in Metro Manila? ### Answer: SELECT branding FROM table_19215259_1 WHERE location = "Metro Manila"
|
What is the brand in Cabanatuan?
|
CREATE TABLE table_19215259_1 (branding VARCHAR, location VARCHAR)
|
SELECT branding FROM table_19215259_1 WHERE location = "Cabanatuan"
|
### Context: CREATE TABLE table_19215259_1 (branding VARCHAR, location VARCHAR) ### Question: What is the brand in Cabanatuan? ### Answer: SELECT branding FROM table_19215259_1 WHERE location = "Cabanatuan"
|
What is the power at the cebu station?
|
CREATE TABLE table_19215259_1 (power__kw_ VARCHAR, location VARCHAR)
|
SELECT power__kw_ FROM table_19215259_1 WHERE location = "Cebu"
|
### Context: CREATE TABLE table_19215259_1 (power__kw_ VARCHAR, location VARCHAR) ### Question: What is the power at the cebu station? ### Answer: SELECT power__kw_ FROM table_19215259_1 WHERE location = "Cebu"
|
What is the frequency of 101.5 News FM?
|
CREATE TABLE table_19215259_1 (frequency VARCHAR, branding VARCHAR)
|
SELECT frequency FROM table_19215259_1 WHERE branding = "101.5 News FM"
|
### Context: CREATE TABLE table_19215259_1 (frequency VARCHAR, branding VARCHAR) ### Question: What is the frequency of 101.5 News FM? ### Answer: SELECT frequency FROM table_19215259_1 WHERE branding = "101.5 News FM"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.