question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Name the least podiums for 9th position
CREATE TABLE table_25375093_1 (podiums INTEGER, position VARCHAR)
SELECT MIN(podiums) FROM table_25375093_1 WHERE position = "9th"
### Context: CREATE TABLE table_25375093_1 (podiums INTEGER, position VARCHAR) ### Question: Name the least podiums for 9th position ### Answer: SELECT MIN(podiums) FROM table_25375093_1 WHERE position = "9th"
How many results are listed for shot PCT Where PA is 79?
CREATE TABLE table_25381437_2 (shot_pct VARCHAR, pa VARCHAR)
SELECT COUNT(shot_pct) FROM table_25381437_2 WHERE pa = 79
### Context: CREATE TABLE table_25381437_2 (shot_pct VARCHAR, pa VARCHAR) ### Question: How many results are listed for shot PCT Where PA is 79? ### Answer: SELECT COUNT(shot_pct) FROM table_25381437_2 WHERE pa = 79
Where were stolen ends recorded as 15?
CREATE TABLE table_25381437_2 (locale VARCHAR, stolen_ends VARCHAR)
SELECT locale FROM table_25381437_2 WHERE stolen_ends = 15
### Context: CREATE TABLE table_25381437_2 (locale VARCHAR, stolen_ends VARCHAR) ### Question: Where were stolen ends recorded as 15? ### Answer: SELECT locale FROM table_25381437_2 WHERE stolen_ends = 15
What was the SlNo no of contact person SDE (P), Thiruppattur?
CREATE TABLE table_25383715_1 (slno VARCHAR, contact_person VARCHAR)
SELECT slno FROM table_25383715_1 WHERE contact_person = "SDE (P), Thiruppattur"
### Context: CREATE TABLE table_25383715_1 (slno VARCHAR, contact_person VARCHAR) ### Question: What was the SlNo no of contact person SDE (P), Thiruppattur? ### Answer: SELECT slno FROM table_25383715_1 WHERE contact_person = "SDE (P), Thiruppattur"
What was the production code of the episode written by Brendan Cowell?
CREATE TABLE table_25390694_2 (production_code VARCHAR, writer VARCHAR)
SELECT production_code FROM table_25390694_2 WHERE writer = "Brendan Cowell"
### Context: CREATE TABLE table_25390694_2 (production_code VARCHAR, writer VARCHAR) ### Question: What was the production code of the episode written by Brendan Cowell? ### Answer: SELECT production_code FROM table_25390694_2 WHERE writer = "Brendan Cowell"
How many f/laps did Pedro Nunes have when he was in 20th position?
CREATE TABLE table_25386974_1 (f_laps VARCHAR, position VARCHAR)
SELECT COUNT(f_laps) FROM table_25386974_1 WHERE position = "20th"
### Context: CREATE TABLE table_25386974_1 (f_laps VARCHAR, position VARCHAR) ### Question: How many f/laps did Pedro Nunes have when he was in 20th position? ### Answer: SELECT COUNT(f_laps) FROM table_25386974_1 WHERE position = "20th"
How many f/laps did Pedro Nunes have when he was at the gp3 series?
CREATE TABLE table_25386974_1 (f_laps VARCHAR, series VARCHAR)
SELECT f_laps FROM table_25386974_1 WHERE series = "GP3 series"
### Context: CREATE TABLE table_25386974_1 (f_laps VARCHAR, series VARCHAR) ### Question: How many f/laps did Pedro Nunes have when he was at the gp3 series? ### Answer: SELECT f_laps FROM table_25386974_1 WHERE series = "GP3 series"
What is the fewest number of races Pedro Nunes completed in any series?
CREATE TABLE table_25386974_1 (races INTEGER)
SELECT MIN(races) FROM table_25386974_1
### Context: CREATE TABLE table_25386974_1 (races INTEGER) ### Question: What is the fewest number of races Pedro Nunes completed in any series? ### Answer: SELECT MIN(races) FROM table_25386974_1
What is the most podiums Pedro Nunes had when in 17th position?
CREATE TABLE table_25386974_1 (podiums INTEGER, position VARCHAR)
SELECT MAX(podiums) FROM table_25386974_1 WHERE position = "17th"
### Context: CREATE TABLE table_25386974_1 (podiums INTEGER, position VARCHAR) ### Question: What is the most podiums Pedro Nunes had when in 17th position? ### Answer: SELECT MAX(podiums) FROM table_25386974_1 WHERE position = "17th"
What was the founding university of the organization Tau Epsilon Phi 1?
CREATE TABLE table_2538117_5 (founding_university VARCHAR, organization VARCHAR)
SELECT founding_university FROM table_2538117_5 WHERE organization = "Tau Epsilon Phi 1"
### Context: CREATE TABLE table_2538117_5 (founding_university VARCHAR, organization VARCHAR) ### Question: What was the founding university of the organization Tau Epsilon Phi 1? ### Answer: SELECT founding_university FROM table_2538117_5 WHERE organization = "Tau Epsilon Phi 1"
What type is σαεπ?
CREATE TABLE table_2538117_5 (type VARCHAR, letters VARCHAR)
SELECT type FROM table_2538117_5 WHERE letters = "ΣΑΕΠ"
### Context: CREATE TABLE table_2538117_5 (type VARCHAR, letters VARCHAR) ### Question: What type is σαεπ? ### Answer: SELECT type FROM table_2538117_5 WHERE letters = "ΣΑΕΠ"
What was the founding university of αεφ?
CREATE TABLE table_2538117_5 (founding_university VARCHAR, letters VARCHAR)
SELECT founding_university FROM table_2538117_5 WHERE letters = "ΑΕΦ"
### Context: CREATE TABLE table_2538117_5 (founding_university VARCHAR, letters VARCHAR) ### Question: What was the founding university of αεφ? ### Answer: SELECT founding_university FROM table_2538117_5 WHERE letters = "ΑΕΦ"
What is the type if the organization name is Gamma RHO Lambda 1?
CREATE TABLE table_2538117_7 (type VARCHAR, organization VARCHAR)
SELECT type FROM table_2538117_7 WHERE organization = "Gamma Rho Lambda 1"
### Context: CREATE TABLE table_2538117_7 (type VARCHAR, organization VARCHAR) ### Question: What is the type if the organization name is Gamma RHO Lambda 1? ### Answer: SELECT type FROM table_2538117_7 WHERE organization = "Gamma Rho Lambda 1"
If the letters is φαν, what is the founding date?
CREATE TABLE table_2538117_7 (founding_date VARCHAR, letters VARCHAR)
SELECT founding_date FROM table_2538117_7 WHERE letters = "ΦΑΝ"
### Context: CREATE TABLE table_2538117_7 (founding_date VARCHAR, letters VARCHAR) ### Question: If the letters is φαν, what is the founding date? ### Answer: SELECT founding_date FROM table_2538117_7 WHERE letters = "ΦΑΝ"
If the founding university is in Charlotte, NC, what is the nickname?
CREATE TABLE table_2538117_7 (nickname VARCHAR, founding_university VARCHAR)
SELECT nickname FROM table_2538117_7 WHERE founding_university = "Charlotte, NC"
### Context: CREATE TABLE table_2538117_7 (nickname VARCHAR, founding_university VARCHAR) ### Question: If the founding university is in Charlotte, NC, what is the nickname? ### Answer: SELECT nickname FROM table_2538117_7 WHERE founding_university = "Charlotte, NC"
What is the founding date if the letters are κψκ?
CREATE TABLE table_2538117_7 (founding_date VARCHAR, letters VARCHAR)
SELECT founding_date FROM table_2538117_7 WHERE letters = "ΚΨΚ"
### Context: CREATE TABLE table_2538117_7 (founding_date VARCHAR, letters VARCHAR) ### Question: What is the founding date if the letters are κψκ? ### Answer: SELECT founding_date FROM table_2538117_7 WHERE letters = "ΚΨΚ"
If the founding university is in Washington, D.C., what was the founding date?
CREATE TABLE table_2538117_7 (founding_date VARCHAR, founding_university VARCHAR)
SELECT founding_date FROM table_2538117_7 WHERE founding_university = "Washington, D.C."
### Context: CREATE TABLE table_2538117_7 (founding_date VARCHAR, founding_university VARCHAR) ### Question: If the founding university is in Washington, D.C., what was the founding date? ### Answer: SELECT founding_date FROM table_2538117_7 WHERE founding_university = "Washington, D.C."
What is the rank by average for the team who averaged 22.8?
CREATE TABLE table_25391981_3 (rank_by_average INTEGER, average VARCHAR)
SELECT MIN(rank_by_average) FROM table_25391981_3 WHERE average = "22.8"
### Context: CREATE TABLE table_25391981_3 (rank_by_average INTEGER, average VARCHAR) ### Question: What is the rank by average for the team who averaged 22.8? ### Answer: SELECT MIN(rank_by_average) FROM table_25391981_3 WHERE average = "22.8"
What is the number of dances for the team that averages 20.6?
CREATE TABLE table_25391981_3 (number_of_dances VARCHAR, average VARCHAR)
SELECT number_of_dances FROM table_25391981_3 WHERE average = "20.6"
### Context: CREATE TABLE table_25391981_3 (number_of_dances VARCHAR, average VARCHAR) ### Question: What is the number of dances for the team that averages 20.6? ### Answer: SELECT number_of_dances FROM table_25391981_3 WHERE average = "20.6"
What couple averaged 15.5?
CREATE TABLE table_25391981_3 (couple VARCHAR, average VARCHAR)
SELECT couple FROM table_25391981_3 WHERE average = "15.5"
### Context: CREATE TABLE table_25391981_3 (couple VARCHAR, average VARCHAR) ### Question: What couple averaged 15.5? ### Answer: SELECT couple FROM table_25391981_3 WHERE average = "15.5"
What is every value for Italian when the part is English?
CREATE TABLE table_25401_15 (italian VARCHAR, english VARCHAR)
SELECT italian FROM table_25401_15 WHERE english = "part"
### Context: CREATE TABLE table_25401_15 (italian VARCHAR, english VARCHAR) ### Question: What is every value for Italian when the part is English? ### Answer: SELECT italian FROM table_25401_15 WHERE english = "part"
What is every entry for Proto-Italo-Western 1 when door is English?
CREATE TABLE table_25401_15 (proto_italo_western_1 VARCHAR, english VARCHAR)
SELECT proto_italo_western_1 FROM table_25401_15 WHERE english = "door"
### Context: CREATE TABLE table_25401_15 (proto_italo_western_1 VARCHAR, english VARCHAR) ### Question: What is every entry for Proto-Italo-Western 1 when door is English? ### Answer: SELECT proto_italo_western_1 FROM table_25401_15 WHERE english = "door"
How many entries for Italian correspond to the Conservative Central Italian of Unu?
CREATE TABLE table_25401_15 (italian VARCHAR, conservative_central_italian_1 VARCHAR)
SELECT COUNT(italian) FROM table_25401_15 WHERE conservative_central_italian_1 = "unu"
### Context: CREATE TABLE table_25401_15 (italian VARCHAR, conservative_central_italian_1 VARCHAR) ### Question: How many entries for Italian correspond to the Conservative Central Italian of Unu? ### Answer: SELECT COUNT(italian) FROM table_25401_15 WHERE conservative_central_italian_1 = "unu"
What is every entry for Latin when Catalan is Mar?
CREATE TABLE table_25401_15 (latin VARCHAR, catalan VARCHAR)
SELECT latin FROM table_25401_15 WHERE catalan = "mar"
### Context: CREATE TABLE table_25401_15 (latin VARCHAR, catalan VARCHAR) ### Question: What is every entry for Latin when Catalan is Mar? ### Answer: SELECT latin FROM table_25401_15 WHERE catalan = "mar"
If the stadium name is the Thuwunna Stadium, what is the date?
CREATE TABLE table_25428629_1 (date VARCHAR, stadium VARCHAR)
SELECT date FROM table_25428629_1 WHERE stadium = "Thuwunna stadium"
### Context: CREATE TABLE table_25428629_1 (date VARCHAR, stadium VARCHAR) ### Question: If the stadium name is the Thuwunna Stadium, what is the date? ### Answer: SELECT date FROM table_25428629_1 WHERE stadium = "Thuwunna stadium"
If the location is Yangon, Myanmar, what is the opponent total number?
CREATE TABLE table_25428629_1 (opponent VARCHAR, location VARCHAR)
SELECT COUNT(opponent) FROM table_25428629_1 WHERE location = "Yangon, Myanmar"
### Context: CREATE TABLE table_25428629_1 (opponent VARCHAR, location VARCHAR) ### Question: If the location is Yangon, Myanmar, what is the opponent total number? ### Answer: SELECT COUNT(opponent) FROM table_25428629_1 WHERE location = "Yangon, Myanmar"
How many provinces are named 青海省 qīnghǎi shěng?
CREATE TABLE table_254234_1 (iso_ VARCHAR, chinese_name VARCHAR)
SELECT COUNT(iso_) AS № FROM table_254234_1 WHERE chinese_name = "青海省 Qīnghǎi Shěng"
### Context: CREATE TABLE table_254234_1 (iso_ VARCHAR, chinese_name VARCHAR) ### Question: How many provinces are named 青海省 qīnghǎi shěng? ### Answer: SELECT COUNT(iso_) AS № FROM table_254234_1 WHERE chinese_name = "青海省 Qīnghǎi Shěng"
What is the area of the province with a density of 533.59?
CREATE TABLE table_254234_1 (area³ INTEGER, density² VARCHAR)
SELECT MAX(area³) FROM table_254234_1 WHERE density² = "533.59"
### Context: CREATE TABLE table_254234_1 (area³ INTEGER, density² VARCHAR) ### Question: What is the area of the province with a density of 533.59? ### Answer: SELECT MAX(area³) FROM table_254234_1 WHERE density² = "533.59"
How many provinces have a density of 165.81?
CREATE TABLE table_254234_1 (iso_ VARCHAR, density² VARCHAR)
SELECT COUNT(iso_) AS № FROM table_254234_1 WHERE density² = "165.81"
### Context: CREATE TABLE table_254234_1 (iso_ VARCHAR, density² VARCHAR) ### Question: How many provinces have a density of 165.81? ### Answer: SELECT COUNT(iso_) AS № FROM table_254234_1 WHERE density² = "165.81"
What is the abbreviation/symbol of 辽宁省 liáoníng shěng?
CREATE TABLE table_254234_1 (abbreviation_symbol VARCHAR, chinese_name VARCHAR)
SELECT abbreviation_symbol FROM table_254234_1 WHERE chinese_name = "辽宁省 Liáoníng Shěng"
### Context: CREATE TABLE table_254234_1 (abbreviation_symbol VARCHAR, chinese_name VARCHAR) ### Question: What is the abbreviation/symbol of 辽宁省 liáoníng shěng? ### Answer: SELECT abbreviation_symbol FROM table_254234_1 WHERE chinese_name = "辽宁省 Liáoníng Shěng"
How many gb's have an iso number of cn-65?
CREATE TABLE table_254234_1 (gb VARCHAR, iso_№ VARCHAR)
SELECT COUNT(gb) FROM table_254234_1 WHERE iso_№ = "CN-65"
### Context: CREATE TABLE table_254234_1 (gb VARCHAR, iso_№ VARCHAR) ### Question: How many gb's have an iso number of cn-65? ### Answer: SELECT COUNT(gb) FROM table_254234_1 WHERE iso_№ = "CN-65"
What is the chinese name of the province whose capital is hangzhou?
CREATE TABLE table_254234_1 (chinese_name VARCHAR, capital VARCHAR)
SELECT chinese_name FROM table_254234_1 WHERE capital = "Hangzhou"
### Context: CREATE TABLE table_254234_1 (chinese_name VARCHAR, capital VARCHAR) ### Question: What is the chinese name of the province whose capital is hangzhou? ### Answer: SELECT chinese_name FROM table_254234_1 WHERE capital = "Hangzhou"
What is the fewest amount of races in any season?
CREATE TABLE table_25421463_1 (races INTEGER)
SELECT MIN(races) FROM table_25421463_1
### Context: CREATE TABLE table_25421463_1 (races INTEGER) ### Question: What is the fewest amount of races in any season? ### Answer: SELECT MIN(races) FROM table_25421463_1
How many races were there when Sigachev had 38 points?
CREATE TABLE table_25421463_1 (races INTEGER, points VARCHAR)
SELECT MIN(races) FROM table_25421463_1 WHERE points = "38"
### Context: CREATE TABLE table_25421463_1 (races INTEGER, points VARCHAR) ### Question: How many races were there when Sigachev had 38 points? ### Answer: SELECT MIN(races) FROM table_25421463_1 WHERE points = "38"
What team was Sigachev on when he had 38 points?
CREATE TABLE table_25421463_1 (team_name VARCHAR, points VARCHAR)
SELECT team_name FROM table_25421463_1 WHERE points = "38"
### Context: CREATE TABLE table_25421463_1 (team_name VARCHAR, points VARCHAR) ### Question: What team was Sigachev on when he had 38 points? ### Answer: SELECT team_name FROM table_25421463_1 WHERE points = "38"
In what season was the final placing NC† and the team SL Formula Racing?
CREATE TABLE table_25421463_1 (season VARCHAR, final_placing VARCHAR, team_name VARCHAR)
SELECT season FROM table_25421463_1 WHERE final_placing = "NC†" AND team_name = "SL Formula Racing"
### Context: CREATE TABLE table_25421463_1 (season VARCHAR, final_placing VARCHAR, team_name VARCHAR) ### Question: In what season was the final placing NC† and the team SL Formula Racing? ### Answer: SELECT season FROM table_25421463_1 WHERE final_placing = "NC†" AND team_name = "SL Formula Racing"
what is distance for the 7th position?
CREATE TABLE table_25429986_1 (distance VARCHAR, position VARCHAR)
SELECT COUNT(distance) FROM table_25429986_1 WHERE position = "7th"
### Context: CREATE TABLE table_25429986_1 (distance VARCHAR, position VARCHAR) ### Question: what is distance for the 7th position? ### Answer: SELECT COUNT(distance) FROM table_25429986_1 WHERE position = "7th"
who isthe jockey in 10th position?
CREATE TABLE table_25429986_1 (jockey VARCHAR, position VARCHAR)
SELECT jockey FROM table_25429986_1 WHERE position = "10th"
### Context: CREATE TABLE table_25429986_1 (jockey VARCHAR, position VARCHAR) ### Question: who isthe jockey in 10th position? ### Answer: SELECT jockey FROM table_25429986_1 WHERE position = "10th"
what position is number 22?
CREATE TABLE table_25429986_1 (position VARCHAR, number VARCHAR)
SELECT position FROM table_25429986_1 WHERE number = 22
### Context: CREATE TABLE table_25429986_1 (position VARCHAR, number VARCHAR) ### Question: what position is number 22? ### Answer: SELECT position FROM table_25429986_1 WHERE number = 22
what horse is in the 6th position?
CREATE TABLE table_25429986_1 (horse VARCHAR, position VARCHAR)
SELECT horse FROM table_25429986_1 WHERE position = "6th"
### Context: CREATE TABLE table_25429986_1 (horse VARCHAR, position VARCHAR) ### Question: what horse is in the 6th position? ### Answer: SELECT horse FROM table_25429986_1 WHERE position = "6th"
what position has a handicap of 10-2?
CREATE TABLE table_25429986_1 (position VARCHAR, handicap VARCHAR)
SELECT position FROM table_25429986_1 WHERE handicap = "10-2"
### Context: CREATE TABLE table_25429986_1 (position VARCHAR, handicap VARCHAR) ### Question: what position has a handicap of 10-2? ### Answer: SELECT position FROM table_25429986_1 WHERE handicap = "10-2"
what is the handicap where the distance is 9 lengths?
CREATE TABLE table_25429986_1 (handicap VARCHAR, distance VARCHAR)
SELECT handicap FROM table_25429986_1 WHERE distance = "9 lengths"
### Context: CREATE TABLE table_25429986_1 (handicap VARCHAR, distance VARCHAR) ### Question: what is the handicap where the distance is 9 lengths? ### Answer: SELECT handicap FROM table_25429986_1 WHERE distance = "9 lengths"
Which series occurred when the 7800 was 5040.00?
CREATE TABLE table_2544694_3 (indonesia_super_series_2008 VARCHAR)
SELECT indonesia_super_series_2008 FROM table_2544694_3 WHERE 780000 = "5040.00"
### Context: CREATE TABLE table_2544694_3 (indonesia_super_series_2008 VARCHAR) ### Question: Which series occurred when the 7800 was 5040.00? ### Answer: SELECT indonesia_super_series_2008 FROM table_2544694_3 WHERE 780000 = "5040.00"
Which series occurred in which the semi-finalist was runner-up and the 7800.00 was 6420.00?
CREATE TABLE table_2544694_3 (indonesia_super_series_2008 VARCHAR, runner_up VARCHAR)
SELECT indonesia_super_series_2008 FROM table_2544694_3 WHERE runner_up = "Semi-Finalist" AND 780000 = "6420.00"
### Context: CREATE TABLE table_2544694_3 (indonesia_super_series_2008 VARCHAR, runner_up VARCHAR) ### Question: Which series occurred in which the semi-finalist was runner-up and the 7800.00 was 6420.00? ### Answer: SELECT indonesia_super_series_2008 FROM table_2544694_3 WHERE runner_up = "Semi-Finalist" AND 780000 = ...
What road is associated with Carson Valley county?
CREATE TABLE table_25438110_5 (road VARCHAR, county VARCHAR)
SELECT road FROM table_25438110_5 WHERE county = "Carson Valley"
### Context: CREATE TABLE table_25438110_5 (road VARCHAR, county VARCHAR) ### Question: What road is associated with Carson Valley county? ### Answer: SELECT road FROM table_25438110_5 WHERE county = "Carson Valley"
What county has exactly 17 casinos?
CREATE TABLE table_25438110_5 (county VARCHAR, casinos VARCHAR)
SELECT county FROM table_25438110_5 WHERE casinos = 17
### Context: CREATE TABLE table_25438110_5 (county VARCHAR, casinos VARCHAR) ### Question: What county has exactly 17 casinos? ### Answer: SELECT county FROM table_25438110_5 WHERE casinos = 17
How many casinos are associated with a FY2009 $mil value of exactly $279?
CREATE TABLE table_25438110_5 (casinos VARCHAR, fy09_$millions VARCHAR)
SELECT COUNT(casinos) FROM table_25438110_5 WHERE fy09_$millions = "$279"
### Context: CREATE TABLE table_25438110_5 (casinos VARCHAR, fy09_$millions VARCHAR) ### Question: How many casinos are associated with a FY2009 $mil value of exactly $279? ### Answer: SELECT COUNT(casinos) FROM table_25438110_5 WHERE fy09_$millions = "$279"
What is the FY2008 $mil value associated with a FY2007 $mil value of exactly $120?
CREATE TABLE table_25438110_5 (fy08_$millions VARCHAR, fy07_$millions VARCHAR)
SELECT fy08_$millions FROM table_25438110_5 WHERE fy07_$millions = "$120"
### Context: CREATE TABLE table_25438110_5 (fy08_$millions VARCHAR, fy07_$millions VARCHAR) ### Question: What is the FY2008 $mil value associated with a FY2007 $mil value of exactly $120? ### Answer: SELECT fy08_$millions FROM table_25438110_5 WHERE fy07_$millions = "$120"
What country was Danissa Zurek from?
CREATE TABLE table_25461827_2 (country VARCHAR, contestant VARCHAR)
SELECT country FROM table_25461827_2 WHERE contestant = "Danissa Zurek"
### Context: CREATE TABLE table_25461827_2 (country VARCHAR, contestant VARCHAR) ### Question: What country was Danissa Zurek from? ### Answer: SELECT country FROM table_25461827_2 WHERE contestant = "Danissa Zurek"
What is the smallest height associated with Honduras?
CREATE TABLE table_25461827_2 (height__cm_ INTEGER, country VARCHAR)
SELECT MIN(height__cm_) FROM table_25461827_2 WHERE country = "Honduras"
### Context: CREATE TABLE table_25461827_2 (height__cm_ INTEGER, country VARCHAR) ### Question: What is the smallest height associated with Honduras? ### Answer: SELECT MIN(height__cm_) FROM table_25461827_2 WHERE country = "Honduras"
What is the height associated with Paraguay?
CREATE TABLE table_25461827_2 (height__ft_ VARCHAR, country VARCHAR)
SELECT height__ft_ FROM table_25461827_2 WHERE country = "Paraguay"
### Context: CREATE TABLE table_25461827_2 (height__ft_ VARCHAR, country VARCHAR) ### Question: What is the height associated with Paraguay? ### Answer: SELECT height__ft_ FROM table_25461827_2 WHERE country = "Paraguay"
What is the number of contestants who are aged exactly 18?
CREATE TABLE table_25461827_2 (contestant VARCHAR, age VARCHAR)
SELECT COUNT(contestant) FROM table_25461827_2 WHERE age = 18
### Context: CREATE TABLE table_25461827_2 (contestant VARCHAR, age VARCHAR) ### Question: What is the number of contestants who are aged exactly 18? ### Answer: SELECT COUNT(contestant) FROM table_25461827_2 WHERE age = 18
Who scored the most points on November 17?
CREATE TABLE table_25461946_5 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_25461946_5 WHERE date = "November 17"
### Context: CREATE TABLE table_25461946_5 (high_points VARCHAR, date VARCHAR) ### Question: Who scored the most points on November 17? ### Answer: SELECT high_points FROM table_25461946_5 WHERE date = "November 17"
What was the final score when the Temple Owls beat Virginia Tech?
CREATE TABLE table_25461946_5 (score VARCHAR, team VARCHAR)
SELECT score FROM table_25461946_5 WHERE team = "Virginia Tech"
### Context: CREATE TABLE table_25461946_5 (score VARCHAR, team VARCHAR) ### Question: What was the final score when the Temple Owls beat Virginia Tech? ### Answer: SELECT score FROM table_25461946_5 WHERE team = "Virginia Tech"
How many games were played on november 27?
CREATE TABLE table_25461946_5 (record VARCHAR, date VARCHAR)
SELECT COUNT(record) FROM table_25461946_5 WHERE date = "November 27"
### Context: CREATE TABLE table_25461946_5 (record VARCHAR, date VARCHAR) ### Question: How many games were played on november 27? ### Answer: SELECT COUNT(record) FROM table_25461946_5 WHERE date = "November 27"
Who got the pole position if the supporting is USAC National Midget Series?
CREATE TABLE table_25459168_2 (pole_position VARCHAR, supporting VARCHAR)
SELECT pole_position FROM table_25459168_2 WHERE supporting = "USAC National Midget Series"
### Context: CREATE TABLE table_25459168_2 (pole_position VARCHAR, supporting VARCHAR) ### Question: Who got the pole position if the supporting is USAC National Midget Series? ### Answer: SELECT pole_position FROM table_25459168_2 WHERE supporting = "USAC National Midget Series"
Who won the fastest lap if Anders Krohn won the pole position?
CREATE TABLE table_25459168_2 (fastest_lap VARCHAR, pole_position VARCHAR)
SELECT fastest_lap FROM table_25459168_2 WHERE pole_position = "Anders Krohn"
### Context: CREATE TABLE table_25459168_2 (fastest_lap VARCHAR, pole_position VARCHAR) ### Question: Who won the fastest lap if Anders Krohn won the pole position? ### Answer: SELECT fastest_lap FROM table_25459168_2 WHERE pole_position = "Anders Krohn"
How many rounds did João Victor Horto achieved the fastest lap?
CREATE TABLE table_25459168_2 (round VARCHAR, fastest_lap VARCHAR)
SELECT COUNT(round) FROM table_25459168_2 WHERE fastest_lap = "João Victor Horto"
### Context: CREATE TABLE table_25459168_2 (round VARCHAR, fastest_lap VARCHAR) ### Question: How many rounds did João Victor Horto achieved the fastest lap? ### Answer: SELECT COUNT(round) FROM table_25459168_2 WHERE fastest_lap = "João Victor Horto"
What circuit was used on August 21?
CREATE TABLE table_25459168_2 (circuit VARCHAR, date VARCHAR)
SELECT circuit FROM table_25459168_2 WHERE date = "August 21"
### Context: CREATE TABLE table_25459168_2 (circuit VARCHAR, date VARCHAR) ### Question: What circuit was used on August 21? ### Answer: SELECT circuit FROM table_25459168_2 WHERE date = "August 21"
How many rounds did Alex Ardoin achieved a fastest lap?
CREATE TABLE table_25459168_2 (round VARCHAR, fastest_lap VARCHAR)
SELECT COUNT(round) FROM table_25459168_2 WHERE fastest_lap = "Alex Ardoin"
### Context: CREATE TABLE table_25459168_2 (round VARCHAR, fastest_lap VARCHAR) ### Question: How many rounds did Alex Ardoin achieved a fastest lap? ### Answer: SELECT COUNT(round) FROM table_25459168_2 WHERE fastest_lap = "Alex Ardoin"
What is the design when quantity is 5,000,000?
CREATE TABLE table_25468520_1 (design VARCHAR, quantity VARCHAR)
SELECT design FROM table_25468520_1 WHERE quantity = "5,000,000"
### Context: CREATE TABLE table_25468520_1 (design VARCHAR, quantity VARCHAR) ### Question: What is the design when quantity is 5,000,000? ### Answer: SELECT design FROM table_25468520_1 WHERE quantity = "5,000,000"
How many time is the theme rotary international : 100 years in canada?
CREATE TABLE table_25468520_1 (printing_process VARCHAR, theme VARCHAR)
SELECT COUNT(printing_process) FROM table_25468520_1 WHERE theme = "Rotary International : 100 Years in Canada"
### Context: CREATE TABLE table_25468520_1 (printing_process VARCHAR, theme VARCHAR) ### Question: How many time is the theme rotary international : 100 years in canada? ### Answer: SELECT COUNT(printing_process) FROM table_25468520_1 WHERE theme = "Rotary International : 100 Years in Canada"
What is the paper type for the date of issue July 8?
CREATE TABLE table_25468520_1 (paper_type VARCHAR, date_of_issue VARCHAR)
SELECT paper_type FROM table_25468520_1 WHERE date_of_issue = "July 8"
### Context: CREATE TABLE table_25468520_1 (paper_type VARCHAR, date_of_issue VARCHAR) ### Question: What is the paper type for the date of issue July 8? ### Answer: SELECT paper_type FROM table_25468520_1 WHERE date_of_issue = "July 8"
What is the theme when the printing process is litho in 3 cols and intaglio?
CREATE TABLE table_25468520_1 (theme VARCHAR, printing_process VARCHAR)
SELECT theme FROM table_25468520_1 WHERE printing_process = "Litho in 3 cols and intaglio"
### Context: CREATE TABLE table_25468520_1 (theme VARCHAR, printing_process VARCHAR) ### Question: What is the theme when the printing process is litho in 3 cols and intaglio? ### Answer: SELECT theme FROM table_25468520_1 WHERE printing_process = "Litho in 3 cols and intaglio"
How many times is the theme roadside attractions: wawa goose?
CREATE TABLE table_25468520_1 (quantity VARCHAR, theme VARCHAR)
SELECT COUNT(quantity) FROM table_25468520_1 WHERE theme = "Roadside Attractions: Wawa Goose"
### Context: CREATE TABLE table_25468520_1 (quantity VARCHAR, theme VARCHAR) ### Question: How many times is the theme roadside attractions: wawa goose? ### Answer: SELECT COUNT(quantity) FROM table_25468520_1 WHERE theme = "Roadside Attractions: Wawa Goose"
What is the theme when the date of issue is 11 january 2010?
CREATE TABLE table_25468520_1 (theme VARCHAR, date_of_issue VARCHAR)
SELECT theme FROM table_25468520_1 WHERE date_of_issue = "11 January 2010"
### Context: CREATE TABLE table_25468520_1 (theme VARCHAR, date_of_issue VARCHAR) ### Question: What is the theme when the date of issue is 11 january 2010? ### Answer: SELECT theme FROM table_25468520_1 WHERE date_of_issue = "11 January 2010"
When did they play Dayton?
CREATE TABLE table_25461946_8 (date VARCHAR, team VARCHAR)
SELECT date FROM table_25461946_8 WHERE team = "Dayton"
### Context: CREATE TABLE table_25461946_8 (date VARCHAR, team VARCHAR) ### Question: When did they play Dayton? ### Answer: SELECT date FROM table_25461946_8 WHERE team = "Dayton"
What is the platform of Geworkbench?
CREATE TABLE table_25474825_1 (platform VARCHAR, software VARCHAR)
SELECT platform FROM table_25474825_1 WHERE software = "GeWorkbench"
### Context: CREATE TABLE table_25474825_1 (platform VARCHAR, software VARCHAR) ### Question: What is the platform of Geworkbench? ### Answer: SELECT platform FROM table_25474825_1 WHERE software = "GeWorkbench"
What is the description of the license for GNU GPL v2 or Ruby license?
CREATE TABLE table_25474825_1 (description VARCHAR, license VARCHAR)
SELECT description FROM table_25474825_1 WHERE license = "GNU GPL v2 or Ruby license"
### Context: CREATE TABLE table_25474825_1 (description VARCHAR, license VARCHAR) ### Question: What is the description of the license for GNU GPL v2 or Ruby license? ### Answer: SELECT description FROM table_25474825_1 WHERE license = "GNU GPL v2 or Ruby license"
What is the license that is described as a tool for designing and executing workflows?
CREATE TABLE table_25474825_1 (license VARCHAR, description VARCHAR)
SELECT license FROM table_25474825_1 WHERE description = "Tool for designing and executing workflows"
### Context: CREATE TABLE table_25474825_1 (license VARCHAR, description VARCHAR) ### Question: What is the license that is described as a tool for designing and executing workflows? ### Answer: SELECT license FROM table_25474825_1 WHERE description = "Tool for designing and executing workflows"
What is the description of the intact software?
CREATE TABLE table_25474825_1 (description VARCHAR, software VARCHAR)
SELECT description FROM table_25474825_1 WHERE software = "IntAct"
### Context: CREATE TABLE table_25474825_1 (description VARCHAR, software VARCHAR) ### Question: What is the description of the intact software? ### Answer: SELECT description FROM table_25474825_1 WHERE software = "IntAct"
What user had a max demand charge of 1,100 and a unit/time range of h-2: off-peak (22:30-05:30)?
CREATE TABLE table_25479607_3 (user VARCHAR, max_demand_charge___rs__kva_ VARCHAR, unit__kwh__time_range VARCHAR)
SELECT user FROM table_25479607_3 WHERE max_demand_charge___rs__kva_ = "1,100" AND unit__kwh__time_range = "H-2: Off-peak (22:30-05:30)"
### Context: CREATE TABLE table_25479607_3 (user VARCHAR, max_demand_charge___rs__kva_ VARCHAR, unit__kwh__time_range VARCHAR) ### Question: What user had a max demand charge of 1,100 and a unit/time range of h-2: off-peak (22:30-05:30)? ### Answer: SELECT user FROM table_25479607_3 WHERE max_demand_charge___rs__kva_ =...
What is the fixed charge for the user who had a tariff of 11.30?
CREATE TABLE table_25479607_3 (fixed_charge___rs__kwh_ VARCHAR, tariff___rs__kwh_ VARCHAR)
SELECT fixed_charge___rs__kwh_ FROM table_25479607_3 WHERE tariff___rs__kwh_ = "11.30"
### Context: CREATE TABLE table_25479607_3 (fixed_charge___rs__kwh_ VARCHAR, tariff___rs__kwh_ VARCHAR) ### Question: What is the fixed charge for the user who had a tariff of 11.30? ### Answer: SELECT fixed_charge___rs__kwh_ FROM table_25479607_3 WHERE tariff___rs__kwh_ = "11.30"
What is the fixed charge for the user with a unit/time range of i-2: peak (18:30-22:30)?
CREATE TABLE table_25479607_3 (fixed_charge___rs__kwh_ VARCHAR, unit__kwh__time_range VARCHAR)
SELECT fixed_charge___rs__kwh_ FROM table_25479607_3 WHERE unit__kwh__time_range = "I-2: Peak (18:30-22:30)"
### Context: CREATE TABLE table_25479607_3 (fixed_charge___rs__kwh_ VARCHAR, unit__kwh__time_range VARCHAR) ### Question: What is the fixed charge for the user with a unit/time range of i-2: peak (18:30-22:30)? ### Answer: SELECT fixed_charge___rs__kwh_ FROM table_25479607_3 WHERE unit__kwh__time_range = "I-2: Peak (18...
What was the max demand charge for the user with a tariff of 8.85?
CREATE TABLE table_25479607_3 (max_demand_charge___rs__kva_ VARCHAR, tariff___rs__kwh_ VARCHAR)
SELECT max_demand_charge___rs__kva_ FROM table_25479607_3 WHERE tariff___rs__kwh_ = "8.85"
### Context: CREATE TABLE table_25479607_3 (max_demand_charge___rs__kva_ VARCHAR, tariff___rs__kwh_ VARCHAR) ### Question: What was the max demand charge for the user with a tariff of 8.85? ### Answer: SELECT max_demand_charge___rs__kva_ FROM table_25479607_3 WHERE tariff___rs__kwh_ = "8.85"
How many picks are there with an affiliation is the University of California Norcal Lamorinda United?
CREATE TABLE table_25518547_2 (pick__number VARCHAR, affiliation VARCHAR)
SELECT COUNT(pick__number) FROM table_25518547_2 WHERE affiliation = "University of California NorCal Lamorinda United"
### Context: CREATE TABLE table_25518547_2 (pick__number VARCHAR, affiliation VARCHAR) ### Question: How many picks are there with an affiliation is the University of California Norcal Lamorinda United? ### Answer: SELECT COUNT(pick__number) FROM table_25518547_2 WHERE affiliation = "University of California NorCal Lam...
What team does Seth Sinovic play for?
CREATE TABLE table_25518547_2 (mls_team VARCHAR, player VARCHAR)
SELECT mls_team FROM table_25518547_2 WHERE player = "Seth Sinovic"
### Context: CREATE TABLE table_25518547_2 (mls_team VARCHAR, player VARCHAR) ### Question: What team does Seth Sinovic play for? ### Answer: SELECT mls_team FROM table_25518547_2 WHERE player = "Seth Sinovic"
How many players have an affiliation with University of Maryland?
CREATE TABLE table_25518547_2 (player VARCHAR, affiliation VARCHAR)
SELECT COUNT(player) FROM table_25518547_2 WHERE affiliation = "University of Maryland"
### Context: CREATE TABLE table_25518547_2 (player VARCHAR, affiliation VARCHAR) ### Question: How many players have an affiliation with University of Maryland? ### Answer: SELECT COUNT(player) FROM table_25518547_2 WHERE affiliation = "University of Maryland"
in what round types did the opponent come from south africa?
CREATE TABLE table_25505246_8 (round VARCHAR, against VARCHAR)
SELECT round FROM table_25505246_8 WHERE against = "South Africa"
### Context: CREATE TABLE table_25505246_8 (round VARCHAR, against VARCHAR) ### Question: in what round types did the opponent come from south africa? ### Answer: SELECT round FROM table_25505246_8 WHERE against = "South Africa"
How did the match end when she played with caroline wozniacki?
CREATE TABLE table_25505246_8 (outcome VARCHAR, partner VARCHAR)
SELECT outcome FROM table_25505246_8 WHERE partner = "Caroline Wozniacki"
### Context: CREATE TABLE table_25505246_8 (outcome VARCHAR, partner VARCHAR) ### Question: How did the match end when she played with caroline wozniacki? ### Answer: SELECT outcome FROM table_25505246_8 WHERE partner = "Caroline Wozniacki"
When was the University founded that joined in 1978?
CREATE TABLE table_255188_1 (founded INTEGER, joined VARCHAR)
SELECT MAX(founded) FROM table_255188_1 WHERE joined = 1978
### Context: CREATE TABLE table_255188_1 (founded INTEGER, joined VARCHAR) ### Question: When was the University founded that joined in 1978? ### Answer: SELECT MAX(founded) FROM table_255188_1 WHERE joined = 1978
When was Piedmont College founded?
CREATE TABLE table_255188_1 (founded INTEGER, institution VARCHAR)
SELECT MAX(founded) FROM table_255188_1 WHERE institution = "Piedmont College"
### Context: CREATE TABLE table_255188_1 (founded INTEGER, institution VARCHAR) ### Question: When was Piedmont College founded? ### Answer: SELECT MAX(founded) FROM table_255188_1 WHERE institution = "Piedmont College"
When were the Avenging Angels founded?
CREATE TABLE table_255188_1 (founded INTEGER, nickname VARCHAR)
SELECT MAX(founded) FROM table_255188_1 WHERE nickname = "Avenging Angels"
### Context: CREATE TABLE table_255188_1 (founded INTEGER, nickname VARCHAR) ### Question: When were the Avenging Angels founded? ### Answer: SELECT MAX(founded) FROM table_255188_1 WHERE nickname = "Avenging Angels"
What institution joined in 1988?
CREATE TABLE table_255188_1 (institution VARCHAR, joined VARCHAR)
SELECT institution FROM table_255188_1 WHERE joined = 1988
### Context: CREATE TABLE table_255188_1 (institution VARCHAR, joined VARCHAR) ### Question: What institution joined in 1988? ### Answer: SELECT institution FROM table_255188_1 WHERE joined = 1988
What location is nicknamed the 49ers?
CREATE TABLE table_255188_3 (location VARCHAR, nickname VARCHAR)
SELECT location FROM table_255188_3 WHERE nickname = "49ers"
### Context: CREATE TABLE table_255188_3 (location VARCHAR, nickname VARCHAR) ### Question: What location is nicknamed the 49ers? ### Answer: SELECT location FROM table_255188_3 WHERE nickname = "49ers"
Where is the University of North Carolina at Greensboro located?
CREATE TABLE table_255188_3 (location VARCHAR, institution VARCHAR)
SELECT location FROM table_255188_3 WHERE institution = "University of North Carolina at Greensboro"
### Context: CREATE TABLE table_255188_3 (location VARCHAR, institution VARCHAR) ### Question: Where is the University of North Carolina at Greensboro located? ### Answer: SELECT location FROM table_255188_3 WHERE institution = "University of North Carolina at Greensboro"
Name the hypotenuse for vertices 月山泛 δymf
CREATE TABLE table_25519358_1 (hypotenuse_0_c VARCHAR, vertices VARCHAR)
SELECT hypotenuse_0_c FROM table_25519358_1 WHERE vertices = "月山泛 ΔYMF"
### Context: CREATE TABLE table_25519358_1 (hypotenuse_0_c VARCHAR, vertices VARCHAR) ### Question: Name the hypotenuse for vertices 月山泛 δymf ### Answer: SELECT hypotenuse_0_c FROM table_25519358_1 WHERE vertices = "月山泛 ΔYMF"
Name the vertical for 边 bian
CREATE TABLE table_25519358_1 (vertical_0_b VARCHAR, name VARCHAR)
SELECT vertical_0_b FROM table_25519358_1 WHERE name = "边 BIAN"
### Context: CREATE TABLE table_25519358_1 (vertical_0_b VARCHAR, name VARCHAR) ### Question: Name the vertical for 边 bian ### Answer: SELECT vertical_0_b FROM table_25519358_1 WHERE name = "边 BIAN"
Name the horizontal 0 for 通 tong
CREATE TABLE table_25519358_1 (horizontal_0_a VARCHAR, name VARCHAR)
SELECT horizontal_0_a FROM table_25519358_1 WHERE name = "通 TONG"
### Context: CREATE TABLE table_25519358_1 (horizontal_0_a VARCHAR, name VARCHAR) ### Question: Name the horizontal 0 for 通 tong ### Answer: SELECT horizontal_0_a FROM table_25519358_1 WHERE name = "通 TONG"
Name the horizontal 0 for 明弦(ry日月)
CREATE TABLE table_25519358_1 (horizontal_0_a VARCHAR, hypotenuse_0_c VARCHAR)
SELECT horizontal_0_a FROM table_25519358_1 WHERE hypotenuse_0_c = "明弦(RY日月)"
### Context: CREATE TABLE table_25519358_1 (horizontal_0_a VARCHAR, hypotenuse_0_c VARCHAR) ### Question: Name the horizontal 0 for 明弦(ry日月) ### Answer: SELECT horizontal_0_a FROM table_25519358_1 WHERE hypotenuse_0_c = "明弦(RY日月)"
Name the vertical for 明勾(ys月南)
CREATE TABLE table_25519358_1 (vertical_0_b VARCHAR, horizontal_0_a VARCHAR)
SELECT vertical_0_b FROM table_25519358_1 WHERE horizontal_0_a = "明勾(YS月南)"
### Context: CREATE TABLE table_25519358_1 (vertical_0_b VARCHAR, horizontal_0_a VARCHAR) ### Question: Name the vertical for 明勾(ys月南) ### Answer: SELECT vertical_0_b FROM table_25519358_1 WHERE horizontal_0_a = "明勾(YS月南)"
Name the horizontal number for number 10
CREATE TABLE table_25519358_1 (horizontal_0_a VARCHAR, number VARCHAR)
SELECT COUNT(horizontal_0_a) FROM table_25519358_1 WHERE number = 10
### Context: CREATE TABLE table_25519358_1 (horizontal_0_a VARCHAR, number VARCHAR) ### Question: Name the horizontal number for number 10 ### Answer: SELECT COUNT(horizontal_0_a) FROM table_25519358_1 WHERE number = 10
How many teams drafted players from the University of Maryland?
CREATE TABLE table_25518547_3 (mls_team VARCHAR, affiliation VARCHAR)
SELECT COUNT(mls_team) FROM table_25518547_3 WHERE affiliation = "University of Maryland"
### Context: CREATE TABLE table_25518547_3 (mls_team VARCHAR, affiliation VARCHAR) ### Question: How many teams drafted players from the University of Maryland? ### Answer: SELECT COUNT(mls_team) FROM table_25518547_3 WHERE affiliation = "University of Maryland"
What MLS team drafted samuel appiah?
CREATE TABLE table_25518547_3 (mls_team VARCHAR, player VARCHAR)
SELECT mls_team FROM table_25518547_3 WHERE player = "Samuel Appiah"
### Context: CREATE TABLE table_25518547_3 (mls_team VARCHAR, player VARCHAR) ### Question: What MLS team drafted samuel appiah? ### Answer: SELECT mls_team FROM table_25518547_3 WHERE player = "Samuel Appiah"
What player was drafted by the philadelphia union?
CREATE TABLE table_25518547_3 (player VARCHAR, mls_team VARCHAR)
SELECT player FROM table_25518547_3 WHERE mls_team = "Philadelphia Union"
### Context: CREATE TABLE table_25518547_3 (player VARCHAR, mls_team VARCHAR) ### Question: What player was drafted by the philadelphia union? ### Answer: SELECT player FROM table_25518547_3 WHERE mls_team = "Philadelphia Union"
This institution nicknamed Fightin' engineers was founded on what year?
CREATE TABLE table_255205_1 (founded VARCHAR, nickname VARCHAR)
SELECT founded FROM table_255205_1 WHERE nickname = "Fightin' Engineers"
### Context: CREATE TABLE table_255205_1 (founded VARCHAR, nickname VARCHAR) ### Question: This institution nicknamed Fightin' engineers was founded on what year? ### Answer: SELECT founded FROM table_255205_1 WHERE nickname = "Fightin' Engineers"
How many inputs joined this institution located in Franklin, Indiana?
CREATE TABLE table_255205_1 (joined VARCHAR, location VARCHAR)
SELECT COUNT(joined) FROM table_255205_1 WHERE location = "Franklin, Indiana"
### Context: CREATE TABLE table_255205_1 (joined VARCHAR, location VARCHAR) ### Question: How many inputs joined this institution located in Franklin, Indiana? ### Answer: SELECT COUNT(joined) FROM table_255205_1 WHERE location = "Franklin, Indiana"
How many times this institution was founded that was nicknamed Beavers?
CREATE TABLE table_255205_1 (founded VARCHAR, nickname VARCHAR)
SELECT COUNT(founded) FROM table_255205_1 WHERE nickname = "Beavers"
### Context: CREATE TABLE table_255205_1 (founded VARCHAR, nickname VARCHAR) ### Question: How many times this institution was founded that was nicknamed Beavers? ### Answer: SELECT COUNT(founded) FROM table_255205_1 WHERE nickname = "Beavers"
How many joined this Private/Church of God institution?
CREATE TABLE table_255205_1 (joined VARCHAR, type VARCHAR)
SELECT joined FROM table_255205_1 WHERE type = "Private/Church of God"
### Context: CREATE TABLE table_255205_1 (joined VARCHAR, type VARCHAR) ### Question: How many joined this Private/Church of God institution? ### Answer: SELECT joined FROM table_255205_1 WHERE type = "Private/Church of God"
How many joined Manchester University?
CREATE TABLE table_255205_1 (joined VARCHAR, institution VARCHAR)
SELECT joined FROM table_255205_1 WHERE institution = "Manchester University"
### Context: CREATE TABLE table_255205_1 (joined VARCHAR, institution VARCHAR) ### Question: How many joined Manchester University? ### Answer: SELECT joined FROM table_255205_1 WHERE institution = "Manchester University"