question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
When was the incumbent first elected in the district where the result was a democratic-republican gain?
CREATE TABLE table_2668401_17 (first_elected VARCHAR, result VARCHAR)
SELECT first_elected FROM table_2668401_17 WHERE result = "Democratic-Republican gain"
### Context: CREATE TABLE table_2668401_17 (first_elected VARCHAR, result VARCHAR) ### Question: When was the incumbent first elected in the district where the result was a democratic-republican gain? ### Answer: SELECT first_elected FROM table_2668401_17 WHERE result = "Democratic-Republican gain"
In what district was the incumbent Edwin Gray?
CREATE TABLE table_2668401_17 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_2668401_17 WHERE incumbent = "Edwin Gray"
### Context: CREATE TABLE table_2668401_17 (district VARCHAR, incumbent VARCHAR) ### Question: In what district was the incumbent Edwin Gray? ### Answer: SELECT district FROM table_2668401_17 WHERE incumbent = "Edwin Gray"
When was the incumbent from the Virginia 10 district first elected?
CREATE TABLE table_2668401_17 (first_elected VARCHAR, district VARCHAR)
SELECT first_elected FROM table_2668401_17 WHERE district = "Virginia 10"
### Context: CREATE TABLE table_2668401_17 (first_elected VARCHAR, district VARCHAR) ### Question: When was the incumbent from the Virginia 10 district first elected? ### Answer: SELECT first_elected FROM table_2668401_17 WHERE district = "Virginia 10"
Name the result for walter jones (dr) 99.0% henry lee (f) 1.0%
CREATE TABLE table_2668387_18 (result VARCHAR, candidates VARCHAR)
SELECT result FROM table_2668387_18 WHERE candidates = "Walter Jones (DR) 99.0% Henry Lee (F) 1.0%"
### Context: CREATE TABLE table_2668387_18 (result VARCHAR, candidates VARCHAR) ### Question: Name the result for walter jones (dr) 99.0% henry lee (f) 1.0% ### Answer: SELECT result FROM table_2668387_18 WHERE candidates = "Walter Jones (DR) 99.0% Henry Lee (F) 1.0%"
Name the district for matthew clay
CREATE TABLE table_2668387_18 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_2668387_18 WHERE incumbent = "Matthew Clay"
### Context: CREATE TABLE table_2668387_18 (district VARCHAR, incumbent VARCHAR) ### Question: Name the district for matthew clay ### Answer: SELECT district FROM table_2668387_18 WHERE incumbent = "Matthew Clay"
Name the number of first elected for john smith
CREATE TABLE table_2668387_18 (first_elected VARCHAR, incumbent VARCHAR)
SELECT COUNT(first_elected) FROM table_2668387_18 WHERE incumbent = "John Smith"
### Context: CREATE TABLE table_2668387_18 (first_elected VARCHAR, incumbent VARCHAR) ### Question: Name the number of first elected for john smith ### Answer: SELECT COUNT(first_elected) FROM table_2668387_18 WHERE incumbent = "John Smith"
Name the incumbent for virginia 18
CREATE TABLE table_2668387_18 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_2668387_18 WHERE district = "Virginia 18"
### Context: CREATE TABLE table_2668387_18 (incumbent VARCHAR, district VARCHAR) ### Question: Name the incumbent for virginia 18 ### Answer: SELECT incumbent FROM table_2668387_18 WHERE district = "Virginia 18"
Name the district for john randolph (dr)
CREATE TABLE table_2668387_18 (district VARCHAR, candidates VARCHAR)
SELECT district FROM table_2668387_18 WHERE candidates = "John Randolph (DR)"
### Context: CREATE TABLE table_2668387_18 (district VARCHAR, candidates VARCHAR) ### Question: Name the district for john randolph (dr) ### Answer: SELECT district FROM table_2668387_18 WHERE candidates = "John Randolph (DR)"
Name the incumbent for virginia 4
CREATE TABLE table_2668387_18 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_2668387_18 WHERE district = "Virginia 4"
### Context: CREATE TABLE table_2668387_18 (incumbent VARCHAR, district VARCHAR) ### Question: Name the incumbent for virginia 4 ### Answer: SELECT incumbent FROM table_2668387_18 WHERE district = "Virginia 4"
When was the earliest person elected?
CREATE TABLE table_2668420_17 (first_elected INTEGER)
SELECT MIN(first_elected) FROM table_2668420_17
### Context: CREATE TABLE table_2668420_17 (first_elected INTEGER) ### Question: When was the earliest person elected? ### Answer: SELECT MIN(first_elected) FROM table_2668420_17
What party was re-elected to Virginia 12?
CREATE TABLE table_2668420_17 (party VARCHAR, result VARCHAR, district VARCHAR)
SELECT party FROM table_2668420_17 WHERE result = "Re-elected" AND district = "Virginia 12"
### Context: CREATE TABLE table_2668420_17 (party VARCHAR, result VARCHAR, district VARCHAR) ### Question: What party was re-elected to Virginia 12? ### Answer: SELECT party FROM table_2668420_17 WHERE result = "Re-elected" AND district = "Virginia 12"
What is the latest first elected?
CREATE TABLE table_2668405_17 (first_elected INTEGER)
SELECT MAX(first_elected) FROM table_2668405_17
### Context: CREATE TABLE table_2668405_17 (first_elected INTEGER) ### Question: What is the latest first elected? ### Answer: SELECT MAX(first_elected) FROM table_2668405_17
How many times were the candidates leven powell (f) 63.8% roger west (dr) 36.4%?
CREATE TABLE table_2668405_17 (first_elected VARCHAR, candidates VARCHAR)
SELECT COUNT(first_elected) FROM table_2668405_17 WHERE candidates = "Leven Powell (F) 63.8% Roger West (DR) 36.4%"
### Context: CREATE TABLE table_2668405_17 (first_elected VARCHAR, candidates VARCHAR) ### Question: How many times were the candidates leven powell (f) 63.8% roger west (dr) 36.4%? ### Answer: SELECT COUNT(first_elected) FROM table_2668405_17 WHERE candidates = "Leven Powell (F) 63.8% Roger West (DR) 36.4%"
What is the district with the candidates leven powell (f) 63.8% roger west (dr) 36.4%?
CREATE TABLE table_2668405_17 (district VARCHAR, candidates VARCHAR)
SELECT district FROM table_2668405_17 WHERE candidates = "Leven Powell (F) 63.8% Roger West (DR) 36.4%"
### Context: CREATE TABLE table_2668405_17 (district VARCHAR, candidates VARCHAR) ### Question: What is the district with the candidates leven powell (f) 63.8% roger west (dr) 36.4%? ### Answer: SELECT district FROM table_2668405_17 WHERE candidates = "Leven Powell (F) 63.8% Roger West (DR) 36.4%"
What is the district with the incumbent john nicholas?
CREATE TABLE table_2668405_17 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_2668405_17 WHERE incumbent = "John Nicholas"
### Context: CREATE TABLE table_2668405_17 (district VARCHAR, incumbent VARCHAR) ### Question: What is the district with the incumbent john nicholas? ### Answer: SELECT district FROM table_2668405_17 WHERE incumbent = "John Nicholas"
How many were in district virginia 6?
CREATE TABLE table_2668405_17 (candidates VARCHAR, district VARCHAR)
SELECT COUNT(candidates) FROM table_2668405_17 WHERE district = "Virginia 6"
### Context: CREATE TABLE table_2668405_17 (candidates VARCHAR, district VARCHAR) ### Question: How many were in district virginia 6? ### Answer: SELECT COUNT(candidates) FROM table_2668405_17 WHERE district = "Virginia 6"
If the district is Virginia 8, who is the Incumbent?
CREATE TABLE table_2668416_18 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_2668416_18 WHERE district = "Virginia 8"
### Context: CREATE TABLE table_2668416_18 (incumbent VARCHAR, district VARCHAR) ### Question: If the district is Virginia 8, who is the Incumbent? ### Answer: SELECT incumbent FROM table_2668416_18 WHERE district = "Virginia 8"
If the district is Virginia 17, who are the candidates?
CREATE TABLE table_2668416_18 (candidates VARCHAR, district VARCHAR)
SELECT candidates FROM table_2668416_18 WHERE district = "Virginia 17"
### Context: CREATE TABLE table_2668416_18 (candidates VARCHAR, district VARCHAR) ### Question: If the district is Virginia 17, who are the candidates? ### Answer: SELECT candidates FROM table_2668416_18 WHERE district = "Virginia 17"
In how many different parts was the incumbent Abraham B. Venable?
CREATE TABLE table_2668416_18 (party VARCHAR, incumbent VARCHAR)
SELECT COUNT(party) FROM table_2668416_18 WHERE incumbent = "Abraham B. Venable"
### Context: CREATE TABLE table_2668416_18 (party VARCHAR, incumbent VARCHAR) ### Question: In how many different parts was the incumbent Abraham B. Venable? ### Answer: SELECT COUNT(party) FROM table_2668416_18 WHERE incumbent = "Abraham B. Venable"
What is the date for the mount panorama circuit?
CREATE TABLE table_26686908_2 (date VARCHAR, circuit VARCHAR)
SELECT date FROM table_26686908_2 WHERE circuit = "Mount Panorama circuit"
### Context: CREATE TABLE table_26686908_2 (date VARCHAR, circuit VARCHAR) ### Question: What is the date for the mount panorama circuit? ### Answer: SELECT date FROM table_26686908_2 WHERE circuit = "Mount Panorama circuit"
What was the location for the date 7–10 october?
CREATE TABLE table_26686908_2 (city___state VARCHAR, date VARCHAR)
SELECT city___state FROM table_26686908_2 WHERE date = "7–10 October"
### Context: CREATE TABLE table_26686908_2 (city___state VARCHAR, date VARCHAR) ### Question: What was the location for the date 7–10 october? ### Answer: SELECT city___state FROM table_26686908_2 WHERE date = "7–10 October"
Who handled production for the race when the championship went to david wall and challenge was jordan ormsby?
CREATE TABLE table_26686908_2 (production VARCHAR, championship VARCHAR, challenge VARCHAR)
SELECT production FROM table_26686908_2 WHERE championship = "David Wall" AND challenge = "Jordan Ormsby"
### Context: CREATE TABLE table_26686908_2 (production VARCHAR, championship VARCHAR, challenge VARCHAR) ### Question: Who handled production for the race when the championship went to david wall and challenge was jordan ormsby? ### Answer: SELECT production FROM table_26686908_2 WHERE championship = "David Wall" AND challenge = "Jordan Ormsby"
Which city and state hosted the adelaide street circuit?
CREATE TABLE table_26686908_2 (city___state VARCHAR, circuit VARCHAR)
SELECT city___state FROM table_26686908_2 WHERE circuit = "Adelaide Street circuit"
### Context: CREATE TABLE table_26686908_2 (city___state VARCHAR, circuit VARCHAR) ### Question: Which city and state hosted the adelaide street circuit? ### Answer: SELECT city___state FROM table_26686908_2 WHERE circuit = "Adelaide Street circuit"
Which circuit was held on 25–28 march?
CREATE TABLE table_26686908_2 (circuit VARCHAR, date VARCHAR)
SELECT circuit FROM table_26686908_2 WHERE date = "25–28 March"
### Context: CREATE TABLE table_26686908_2 (circuit VARCHAR, date VARCHAR) ### Question: Which circuit was held on 25–28 march? ### Answer: SELECT circuit FROM table_26686908_2 WHERE date = "25–28 March"
How many productions are shown for rd 2?
CREATE TABLE table_26686908_2 (production VARCHAR, rd VARCHAR)
SELECT COUNT(production) FROM table_26686908_2 WHERE rd = "Rd 2"
### Context: CREATE TABLE table_26686908_2 (production VARCHAR, rd VARCHAR) ### Question: How many productions are shown for rd 2? ### Answer: SELECT COUNT(production) FROM table_26686908_2 WHERE rd = "Rd 2"
Name the writers for 46 in series
CREATE TABLE table_26702078_1 (writer_s_ VARCHAR, no_in_series VARCHAR)
SELECT writer_s_ FROM table_26702078_1 WHERE no_in_series = 46
### Context: CREATE TABLE table_26702078_1 (writer_s_ VARCHAR, no_in_series VARCHAR) ### Question: Name the writers for 46 in series ### Answer: SELECT writer_s_ FROM table_26702078_1 WHERE no_in_series = 46
Name the production code for 60 number in series
CREATE TABLE table_26702078_1 (production_code VARCHAR, no_in_series VARCHAR)
SELECT production_code FROM table_26702078_1 WHERE no_in_series = 60
### Context: CREATE TABLE table_26702078_1 (production_code VARCHAR, no_in_series VARCHAR) ### Question: Name the production code for 60 number in series ### Answer: SELECT production_code FROM table_26702078_1 WHERE no_in_series = 60
what is the title of the episode with the director pamela fryman and the production code 2alh07?
CREATE TABLE table_26701861_1 (title VARCHAR, director VARCHAR, production_code VARCHAR)
SELECT title FROM table_26701861_1 WHERE director = "Pamela Fryman" AND production_code = "2ALH07"
### Context: CREATE TABLE table_26701861_1 (title VARCHAR, director VARCHAR, production_code VARCHAR) ### Question: what is the title of the episode with the director pamela fryman and the production code 2alh07? ### Answer: SELECT title FROM table_26701861_1 WHERE director = "Pamela Fryman" AND production_code = "2ALH07"
Which occurence has the matrix sim marked as 0.925?
CREATE TABLE table_26708105_2 (occurrence VARCHAR, matrix_sim VARCHAR)
SELECT occurrence FROM table_26708105_2 WHERE matrix_sim = "0.925"
### Context: CREATE TABLE table_26708105_2 (occurrence VARCHAR, matrix_sim VARCHAR) ### Question: Which occurence has the matrix sim marked as 0.925? ### Answer: SELECT occurrence FROM table_26708105_2 WHERE matrix_sim = "0.925"
What is the detailed family information where the sequence is aagtact?
CREATE TABLE table_26708105_2 (detailed_family_information VARCHAR, sequence VARCHAR)
SELECT COUNT(detailed_family_information) FROM table_26708105_2 WHERE sequence = "aAGTAct"
### Context: CREATE TABLE table_26708105_2 (detailed_family_information VARCHAR, sequence VARCHAR) ### Question: What is the detailed family information where the sequence is aagtact? ### Answer: SELECT COUNT(detailed_family_information) FROM table_26708105_2 WHERE sequence = "aAGTAct"
What occurence has 0.925 listed as the matrix sim?
CREATE TABLE table_26708105_2 (occurrence INTEGER, matrix_sim VARCHAR)
SELECT MAX(occurrence) FROM table_26708105_2 WHERE matrix_sim = "0.925"
### Context: CREATE TABLE table_26708105_2 (occurrence INTEGER, matrix_sim VARCHAR) ### Question: What occurence has 0.925 listed as the matrix sim? ### Answer: SELECT MAX(occurrence) FROM table_26708105_2 WHERE matrix_sim = "0.925"
What is the conserved in mus musculus listing for sequence aagtact?
CREATE TABLE table_26708105_2 (conserved_in_mus_musculus VARCHAR, sequence VARCHAR)
SELECT conserved_in_mus_musculus FROM table_26708105_2 WHERE sequence = "aAGTAct"
### Context: CREATE TABLE table_26708105_2 (conserved_in_mus_musculus VARCHAR, sequence VARCHAR) ### Question: What is the conserved in mus musculus listing for sequence aagtact? ### Answer: SELECT conserved_in_mus_musculus FROM table_26708105_2 WHERE sequence = "aAGTAct"
What is the nt identity when the species is drosophilia melanogaster?
CREATE TABLE table_26708105_5 (nt_identity VARCHAR, species VARCHAR)
SELECT nt_identity FROM table_26708105_5 WHERE species = "Drosophilia melanogaster"
### Context: CREATE TABLE table_26708105_5 (nt_identity VARCHAR, species VARCHAR) ### Question: What is the nt identity when the species is drosophilia melanogaster? ### Answer: SELECT nt_identity FROM table_26708105_5 WHERE species = "Drosophilia melanogaster"
What is the protein name when aa length is 202 aa?
CREATE TABLE table_26708105_5 (protein_name VARCHAR, aa_length VARCHAR)
SELECT protein_name FROM table_26708105_5 WHERE aa_length = "202 aa"
### Context: CREATE TABLE table_26708105_5 (protein_name VARCHAR, aa_length VARCHAR) ### Question: What is the protein name when aa length is 202 aa? ### Answer: SELECT protein_name FROM table_26708105_5 WHERE aa_length = "202 aa"
What is the protein name when the e-value is 2.50e-41?
CREATE TABLE table_26708105_5 (protein_name VARCHAR, e_value VARCHAR)
SELECT protein_name FROM table_26708105_5 WHERE e_value = "2.50E-41"
### Context: CREATE TABLE table_26708105_5 (protein_name VARCHAR, e_value VARCHAR) ### Question: What is the protein name when the e-value is 2.50e-41? ### Answer: SELECT protein_name FROM table_26708105_5 WHERE e_value = "2.50E-41"
What is the aa length when the protein name is c11orf73?
CREATE TABLE table_26708105_5 (aa_length VARCHAR, protein_name VARCHAR)
SELECT aa_length FROM table_26708105_5 WHERE protein_name = "C11orf73"
### Context: CREATE TABLE table_26708105_5 (aa_length VARCHAR, protein_name VARCHAR) ### Question: What is the aa length when the protein name is c11orf73? ### Answer: SELECT aa_length FROM table_26708105_5 WHERE protein_name = "C11orf73"
How many times is the accession number xp_001843282?
CREATE TABLE table_26708105_5 (common_name VARCHAR, accession_number VARCHAR)
SELECT COUNT(common_name) FROM table_26708105_5 WHERE accession_number = "XP_001843282"
### Context: CREATE TABLE table_26708105_5 (common_name VARCHAR, accession_number VARCHAR) ### Question: How many times is the accession number xp_001843282? ### Answer: SELECT COUNT(common_name) FROM table_26708105_5 WHERE accession_number = "XP_001843282"
How many titles have U.S. viewers 1.66 million.
CREATE TABLE table_26736040_1 (title VARCHAR, us_viewers__millions_ VARCHAR)
SELECT COUNT(title) FROM table_26736040_1 WHERE us_viewers__millions_ = "1.66"
### Context: CREATE TABLE table_26736040_1 (title VARCHAR, us_viewers__millions_ VARCHAR) ### Question: How many titles have U.S. viewers 1.66 million. ### Answer: SELECT COUNT(title) FROM table_26736040_1 WHERE us_viewers__millions_ = "1.66"
What is every title when U.S. viewers is 1.04 million.
CREATE TABLE table_26736040_1 (title VARCHAR, us_viewers__millions_ VARCHAR)
SELECT title FROM table_26736040_1 WHERE us_viewers__millions_ = "1.04"
### Context: CREATE TABLE table_26736040_1 (title VARCHAR, us_viewers__millions_ VARCHAR) ### Question: What is every title when U.S. viewers is 1.04 million. ### Answer: SELECT title FROM table_26736040_1 WHERE us_viewers__millions_ = "1.04"
What is the highest number in series with director as Phil Abraham?
CREATE TABLE table_26736040_1 (no_in_series INTEGER, directed_by VARCHAR)
SELECT MAX(no_in_series) FROM table_26736040_1 WHERE directed_by = "Phil Abraham"
### Context: CREATE TABLE table_26736040_1 (no_in_series INTEGER, directed_by VARCHAR) ### Question: What is the highest number in series with director as Phil Abraham? ### Answer: SELECT MAX(no_in_series) FROM table_26736040_1 WHERE directed_by = "Phil Abraham"
How many entries for number in series when director is Bryan Cranston?
CREATE TABLE table_26736040_1 (no_in_series VARCHAR, directed_by VARCHAR)
SELECT COUNT(no_in_series) FROM table_26736040_1 WHERE directed_by = "Bryan Cranston"
### Context: CREATE TABLE table_26736040_1 (no_in_series VARCHAR, directed_by VARCHAR) ### Question: How many entries for number in series when director is Bryan Cranston? ### Answer: SELECT COUNT(no_in_series) FROM table_26736040_1 WHERE directed_by = "Bryan Cranston"
What is the earliest episode that was watched by 1.32 million viewers?
CREATE TABLE table_26736342_1 (no_in_series INTEGER, us_viewers__millions_ VARCHAR)
SELECT MIN(no_in_series) FROM table_26736342_1 WHERE us_viewers__millions_ = "1.32"
### Context: CREATE TABLE table_26736342_1 (no_in_series INTEGER, us_viewers__millions_ VARCHAR) ### Question: What is the earliest episode that was watched by 1.32 million viewers? ### Answer: SELECT MIN(no_in_series) FROM table_26736342_1 WHERE us_viewers__millions_ = "1.32"
What is the latest episode written by John Shiban & Thomas Schnauz?
CREATE TABLE table_26736342_1 (no_in_series INTEGER, written_by VARCHAR)
SELECT MAX(no_in_series) FROM table_26736342_1 WHERE written_by = "John Shiban & Thomas Schnauz"
### Context: CREATE TABLE table_26736342_1 (no_in_series INTEGER, written_by VARCHAR) ### Question: What is the latest episode written by John Shiban & Thomas Schnauz? ### Answer: SELECT MAX(no_in_series) FROM table_26736342_1 WHERE written_by = "John Shiban & Thomas Schnauz"
Who directed the eposide that was watched by 1.95 million US viewers?
CREATE TABLE table_26736342_1 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)
SELECT directed_by FROM table_26736342_1 WHERE us_viewers__millions_ = "1.95"
### Context: CREATE TABLE table_26736342_1 (directed_by VARCHAR, us_viewers__millions_ VARCHAR) ### Question: Who directed the eposide that was watched by 1.95 million US viewers? ### Answer: SELECT directed_by FROM table_26736342_1 WHERE us_viewers__millions_ = "1.95"
How many episodes are there for the three darts challenge with Sharon Osbourne?
CREATE TABLE table_26733129_1 (episode_number INTEGER, three_darts_challenge VARCHAR)
SELECT MAX(episode_number) FROM table_26733129_1 WHERE three_darts_challenge = "Sharon Osbourne"
### Context: CREATE TABLE table_26733129_1 (episode_number INTEGER, three_darts_challenge VARCHAR) ### Question: How many episodes are there for the three darts challenge with Sharon Osbourne? ### Answer: SELECT MAX(episode_number) FROM table_26733129_1 WHERE three_darts_challenge = "Sharon Osbourne"
What musical performances aired on 5 April 2010?
CREATE TABLE table_26733129_1 (musical_performance VARCHAR, air_date VARCHAR)
SELECT musical_performance FROM table_26733129_1 WHERE air_date = "5 April 2010"
### Context: CREATE TABLE table_26733129_1 (musical_performance VARCHAR, air_date VARCHAR) ### Question: What musical performances aired on 5 April 2010? ### Answer: SELECT musical_performance FROM table_26733129_1 WHERE air_date = "5 April 2010"
What were the guests that aired on 7 June 2010?
CREATE TABLE table_26733129_1 (guests VARCHAR, air_date VARCHAR)
SELECT guests FROM table_26733129_1 WHERE air_date = "7 June 2010"
### Context: CREATE TABLE table_26733129_1 (guests VARCHAR, air_date VARCHAR) ### Question: What were the guests that aired on 7 June 2010? ### Answer: SELECT guests FROM table_26733129_1 WHERE air_date = "7 June 2010"
Who was in the three darts challenge that aired on 10 may 2010?
CREATE TABLE table_26733129_1 (three_darts_challenge VARCHAR, air_date VARCHAR)
SELECT three_darts_challenge FROM table_26733129_1 WHERE air_date = "10 May 2010"
### Context: CREATE TABLE table_26733129_1 (three_darts_challenge VARCHAR, air_date VARCHAR) ### Question: Who was in the three darts challenge that aired on 10 may 2010? ### Answer: SELECT three_darts_challenge FROM table_26733129_1 WHERE air_date = "10 May 2010"
Name the ends lost for canada
CREATE TABLE table_26745426_2 (Ends VARCHAR, country VARCHAR, Canada VARCHAR)
SELECT Ends AS lost FROM table_26745426_2 WHERE country = Canada
### Context: CREATE TABLE table_26745426_2 (Ends VARCHAR, country VARCHAR, Canada VARCHAR) ### Question: Name the ends lost for canada ### Answer: SELECT Ends AS lost FROM table_26745426_2 WHERE country = Canada
Name the number of ends lost for 6 stolen ends
CREATE TABLE table_26745426_2 (Ends VARCHAR, stolen_ends VARCHAR)
SELECT COUNT(Ends) AS lost FROM table_26745426_2 WHERE stolen_ends = 6
### Context: CREATE TABLE table_26745426_2 (Ends VARCHAR, stolen_ends VARCHAR) ### Question: Name the number of ends lost for 6 stolen ends ### Answer: SELECT COUNT(Ends) AS lost FROM table_26745426_2 WHERE stolen_ends = 6
When gniazdo is polish what is proto-slavic?
CREATE TABLE table_26757_4 (proto_slavic VARCHAR, polish VARCHAR)
SELECT proto_slavic FROM table_26757_4 WHERE polish = "gniazdo"
### Context: CREATE TABLE table_26757_4 (proto_slavic VARCHAR, polish VARCHAR) ### Question: When gniazdo is polish what is proto-slavic? ### Answer: SELECT proto_slavic FROM table_26757_4 WHERE polish = "gniazdo"
When рука / ruka is the serbo-croatian what is the macedonian?
CREATE TABLE table_26757_4 (macedonian VARCHAR, serbo_croatian VARCHAR)
SELECT macedonian FROM table_26757_4 WHERE serbo_croatian = "рука / ruka"
### Context: CREATE TABLE table_26757_4 (macedonian VARCHAR, serbo_croatian VARCHAR) ### Question: When рука / ruka is the serbo-croatian what is the macedonian? ### Answer: SELECT macedonian FROM table_26757_4 WHERE serbo_croatian = "рука / ruka"
When риба (ríba) is the macedonian what is the proto-slavic?
CREATE TABLE table_26757_4 (proto_slavic VARCHAR, macedonian VARCHAR)
SELECT proto_slavic FROM table_26757_4 WHERE macedonian = "риба (ríba)"
### Context: CREATE TABLE table_26757_4 (proto_slavic VARCHAR, macedonian VARCHAR) ### Question: When риба (ríba) is the macedonian what is the proto-slavic? ### Answer: SELECT proto_slavic FROM table_26757_4 WHERE macedonian = "риба (ríba)"
When гн(иј)ездо / gn(ij)ezdo is the serbo-croatian how many proto-slavics are there?
CREATE TABLE table_26757_4 (proto_slavic VARCHAR, serbo_croatian VARCHAR)
SELECT COUNT(proto_slavic) FROM table_26757_4 WHERE serbo_croatian = "гн(иј)ездо / gn(ij)ezdo"
### Context: CREATE TABLE table_26757_4 (proto_slavic VARCHAR, serbo_croatian VARCHAR) ### Question: When гн(иј)ездо / gn(ij)ezdo is the serbo-croatian how many proto-slavics are there? ### Answer: SELECT COUNT(proto_slavic) FROM table_26757_4 WHERE serbo_croatian = "гн(иј)ездо / gn(ij)ezdo"
When рыба (rýba) is the belarusian how many slovenes are there?
CREATE TABLE table_26757_4 (slovene VARCHAR, belarusian VARCHAR)
SELECT COUNT(slovene) FROM table_26757_4 WHERE belarusian = "рыба (rýba)"
### Context: CREATE TABLE table_26757_4 (slovene VARCHAR, belarusian VARCHAR) ### Question: When рыба (rýba) is the belarusian how many slovenes are there? ### Answer: SELECT COUNT(slovene) FROM table_26757_4 WHERE belarusian = "рыба (rýba)"
When вуха (vúkha) is the belarusian how many slovaks are there?
CREATE TABLE table_26757_4 (slovak VARCHAR, belarusian VARCHAR)
SELECT COUNT(slovak) FROM table_26757_4 WHERE belarusian = "вуха (vúkha)"
### Context: CREATE TABLE table_26757_4 (slovak VARCHAR, belarusian VARCHAR) ### Question: When вуха (vúkha) is the belarusian how many slovaks are there? ### Answer: SELECT COUNT(slovak) FROM table_26757_4 WHERE belarusian = "вуха (vúkha)"
What is the name of the only route that runs to bhavnagar?
CREATE TABLE table_26745820_5 (vivek_express__15905_15906 VARCHAR, kanyakumari VARCHAR)
SELECT vivek_express__15905_15906 FROM table_26745820_5 WHERE kanyakumari = "Bhavnagar"
### Context: CREATE TABLE table_26745820_5 (vivek_express__15905_15906 VARCHAR, kanyakumari VARCHAR) ### Question: What is the name of the only route that runs to bhavnagar? ### Answer: SELECT vivek_express__15905_15906 FROM table_26745820_5 WHERE kanyakumari = "Bhavnagar"
What is every original air date for the number in season of 7?
CREATE TABLE table_26748314_1 (original_air_date VARCHAR, no_in_season VARCHAR)
SELECT original_air_date FROM table_26748314_1 WHERE no_in_season = 7
### Context: CREATE TABLE table_26748314_1 (original_air_date VARCHAR, no_in_season VARCHAR) ### Question: What is every original air date for the number in season of 7? ### Answer: SELECT original_air_date FROM table_26748314_1 WHERE no_in_season = 7
What is the number of participating parties when registered voters totaled 643629?
CREATE TABLE table_2676980_4 (participating_parties VARCHAR, registered_voters VARCHAR)
SELECT COUNT(participating_parties) FROM table_2676980_4 WHERE registered_voters = 643629
### Context: CREATE TABLE table_2676980_4 (participating_parties VARCHAR, registered_voters VARCHAR) ### Question: What is the number of participating parties when registered voters totaled 643629? ### Answer: SELECT COUNT(participating_parties) FROM table_2676980_4 WHERE registered_voters = 643629
What is the electoral district when total candidates were 35?
CREATE TABLE table_2676980_4 (electoral_district VARCHAR, total_candidates VARCHAR)
SELECT electoral_district FROM table_2676980_4 WHERE total_candidates = 35
### Context: CREATE TABLE table_2676980_4 (electoral_district VARCHAR, total_candidates VARCHAR) ### Question: What is the electoral district when total candidates were 35? ### Answer: SELECT electoral_district FROM table_2676980_4 WHERE total_candidates = 35
What is the number of seats in congress when the electoral district is Ucayali?
CREATE TABLE table_2676980_4 (seats_in_congress VARCHAR, electoral_district VARCHAR)
SELECT COUNT(seats_in_congress) FROM table_2676980_4 WHERE electoral_district = "Ucayali"
### Context: CREATE TABLE table_2676980_4 (seats_in_congress VARCHAR, electoral_district VARCHAR) ### Question: What is the number of seats in congress when the electoral district is Ucayali? ### Answer: SELECT COUNT(seats_in_congress) FROM table_2676980_4 WHERE electoral_district = "Ucayali"
What is the number of seats in congress when the candidates per party is 6?
CREATE TABLE table_2676980_4 (seats_in_congress VARCHAR, candidates_per_party VARCHAR)
SELECT COUNT(seats_in_congress) FROM table_2676980_4 WHERE candidates_per_party = 6
### Context: CREATE TABLE table_2676980_4 (seats_in_congress VARCHAR, candidates_per_party VARCHAR) ### Question: What is the number of seats in congress when the candidates per party is 6? ### Answer: SELECT COUNT(seats_in_congress) FROM table_2676980_4 WHERE candidates_per_party = 6
What is the number of total candidates when registered voters is 47742?
CREATE TABLE table_2676980_4 (total_candidates VARCHAR, registered_voters VARCHAR)
SELECT total_candidates FROM table_2676980_4 WHERE registered_voters = 47742
### Context: CREATE TABLE table_2676980_4 (total_candidates VARCHAR, registered_voters VARCHAR) ### Question: What is the number of total candidates when registered voters is 47742? ### Answer: SELECT total_candidates FROM table_2676980_4 WHERE registered_voters = 47742
Where does the judge who serves Beacon Falls , Naugatuck , Middlebury , Prospect reside?
CREATE TABLE table_26758262_1 (judges_residence VARCHAR, municipalities_served VARCHAR)
SELECT judges_residence FROM table_26758262_1 WHERE municipalities_served = "Beacon Falls , Naugatuck , Middlebury , Prospect"
### Context: CREATE TABLE table_26758262_1 (judges_residence VARCHAR, municipalities_served VARCHAR) ### Question: Where does the judge who serves Beacon Falls , Naugatuck , Middlebury , Prospect reside? ### Answer: SELECT judges_residence FROM table_26758262_1 WHERE municipalities_served = "Beacon Falls , Naugatuck , Middlebury , Prospect"
What district is the court located in Tolland?
CREATE TABLE table_26758262_1 (district INTEGER, location_of_court VARCHAR)
SELECT MAX(district) FROM table_26758262_1 WHERE location_of_court = "Tolland"
### Context: CREATE TABLE table_26758262_1 (district INTEGER, location_of_court VARCHAR) ### Question: What district is the court located in Tolland? ### Answer: SELECT MAX(district) FROM table_26758262_1 WHERE location_of_court = "Tolland"
Where does the judge whose court is in Groton reside?
CREATE TABLE table_26758262_1 (judges_residence VARCHAR, location_of_court VARCHAR)
SELECT judges_residence FROM table_26758262_1 WHERE location_of_court = "Groton"
### Context: CREATE TABLE table_26758262_1 (judges_residence VARCHAR, location_of_court VARCHAR) ### Question: Where does the judge whose court is in Groton reside? ### Answer: SELECT judges_residence FROM table_26758262_1 WHERE location_of_court = "Groton"
what is the nhl team for the player john maclean?
CREATE TABLE table_2679061_1 (nhl_team VARCHAR, player VARCHAR)
SELECT nhl_team FROM table_2679061_1 WHERE player = "John MacLean"
### Context: CREATE TABLE table_2679061_1 (nhl_team VARCHAR, player VARCHAR) ### Question: what is the nhl team for the player john maclean? ### Answer: SELECT nhl_team FROM table_2679061_1 WHERE player = "John MacLean"
who is the player for the position defence and the college/junior/club team is ottawa 67's (ohl)?
CREATE TABLE table_2679061_1 (player VARCHAR, position VARCHAR, college_junior_club_team VARCHAR)
SELECT player FROM table_2679061_1 WHERE position = "Defence" AND college_junior_club_team = "Ottawa 67's (OHL)"
### Context: CREATE TABLE table_2679061_1 (player VARCHAR, position VARCHAR, college_junior_club_team VARCHAR) ### Question: who is the player for the position defence and the college/junior/club team is ottawa 67's (ohl)? ### Answer: SELECT player FROM table_2679061_1 WHERE position = "Defence" AND college_junior_club_team = "Ottawa 67's (OHL)"
what is the college/junior/club team for the player alfie turcotte?
CREATE TABLE table_2679061_1 (college_junior_club_team VARCHAR, player VARCHAR)
SELECT college_junior_club_team FROM table_2679061_1 WHERE player = "Alfie Turcotte"
### Context: CREATE TABLE table_2679061_1 (college_junior_club_team VARCHAR, player VARCHAR) ### Question: what is the college/junior/club team for the player alfie turcotte? ### Answer: SELECT college_junior_club_team FROM table_2679061_1 WHERE player = "Alfie Turcotte"
What is the name of the college/junior/club team of the Buffalo Sabres?
CREATE TABLE table_2679061_10 (college_junior_club_team VARCHAR, nhl_team VARCHAR)
SELECT college_junior_club_team FROM table_2679061_10 WHERE nhl_team = "Buffalo Sabres"
### Context: CREATE TABLE table_2679061_10 (college_junior_club_team VARCHAR, nhl_team VARCHAR) ### Question: What is the name of the college/junior/club team of the Buffalo Sabres? ### Answer: SELECT college_junior_club_team FROM table_2679061_10 WHERE nhl_team = "Buffalo Sabres"
What is Reine Karlsson's nationality?
CREATE TABLE table_2679061_10 (nationality VARCHAR, player VARCHAR)
SELECT nationality FROM table_2679061_10 WHERE player = "Reine Karlsson"
### Context: CREATE TABLE table_2679061_10 (nationality VARCHAR, player VARCHAR) ### Question: What is Reine Karlsson's nationality? ### Answer: SELECT nationality FROM table_2679061_10 WHERE player = "Reine Karlsson"
How many players were drafted by the Philadelphia Flyers?
CREATE TABLE table_2679061_11 (nationality VARCHAR, nhl_team VARCHAR)
SELECT COUNT(nationality) FROM table_2679061_11 WHERE nhl_team = "Philadelphia Flyers"
### Context: CREATE TABLE table_2679061_11 (nationality VARCHAR, nhl_team VARCHAR) ### Question: How many players were drafted by the Philadelphia Flyers? ### Answer: SELECT COUNT(nationality) FROM table_2679061_11 WHERE nhl_team = "Philadelphia Flyers"
How many picks did the Chicago Black Hawks get?
CREATE TABLE table_2679061_11 (pick__number VARCHAR, nhl_team VARCHAR)
SELECT COUNT(pick__number) FROM table_2679061_11 WHERE nhl_team = "Chicago Black Hawks"
### Context: CREATE TABLE table_2679061_11 (pick__number VARCHAR, nhl_team VARCHAR) ### Question: How many picks did the Chicago Black Hawks get? ### Answer: SELECT COUNT(pick__number) FROM table_2679061_11 WHERE nhl_team = "Chicago Black Hawks"
What team had pick 203?
CREATE TABLE table_2679061_11 (nhl_team VARCHAR, pick__number VARCHAR)
SELECT nhl_team FROM table_2679061_11 WHERE pick__number = 203
### Context: CREATE TABLE table_2679061_11 (nhl_team VARCHAR, pick__number VARCHAR) ### Question: What team had pick 203? ### Answer: SELECT nhl_team FROM table_2679061_11 WHERE pick__number = 203
Which school did harold duvall attend?
CREATE TABLE table_2679061_12 (college_junior_club_team VARCHAR, player VARCHAR)
SELECT college_junior_club_team FROM table_2679061_12 WHERE player = "Harold Duvall"
### Context: CREATE TABLE table_2679061_12 (college_junior_club_team VARCHAR, player VARCHAR) ### Question: Which school did harold duvall attend? ### Answer: SELECT college_junior_club_team FROM table_2679061_12 WHERE player = "Harold Duvall"
List the position for the boston bruins.
CREATE TABLE table_2679061_12 (position VARCHAR, nhl_team VARCHAR)
SELECT position FROM table_2679061_12 WHERE nhl_team = "Boston Bruins"
### Context: CREATE TABLE table_2679061_12 (position VARCHAR, nhl_team VARCHAR) ### Question: List the position for the boston bruins. ### Answer: SELECT position FROM table_2679061_12 WHERE nhl_team = "Boston Bruins"
Who was drafted to litvinov (czechoslovakia)?
CREATE TABLE table_2679061_12 (player VARCHAR, college_junior_club_team VARCHAR)
SELECT player FROM table_2679061_12 WHERE college_junior_club_team = "Litvinov (Czechoslovakia)"
### Context: CREATE TABLE table_2679061_12 (player VARCHAR, college_junior_club_team VARCHAR) ### Question: Who was drafted to litvinov (czechoslovakia)? ### Answer: SELECT player FROM table_2679061_12 WHERE college_junior_club_team = "Litvinov (Czechoslovakia)"
What position does peter mcgeough cover?
CREATE TABLE table_2679061_12 (position VARCHAR, player VARCHAR)
SELECT position FROM table_2679061_12 WHERE player = "Peter McGeough"
### Context: CREATE TABLE table_2679061_12 (position VARCHAR, player VARCHAR) ### Question: What position does peter mcgeough cover? ### Answer: SELECT position FROM table_2679061_12 WHERE player = "Peter McGeough"
Which player was drafted by the Minnesota North Stars?
CREATE TABLE table_2679061_4 (player VARCHAR, nhl_team VARCHAR)
SELECT player FROM table_2679061_4 WHERE nhl_team = "Minnesota North Stars"
### Context: CREATE TABLE table_2679061_4 (player VARCHAR, nhl_team VARCHAR) ### Question: Which player was drafted by the Minnesota North Stars? ### Answer: SELECT player FROM table_2679061_4 WHERE nhl_team = "Minnesota North Stars"
What is the nationality of Bob Essensa?
CREATE TABLE table_2679061_4 (nationality VARCHAR, player VARCHAR)
SELECT nationality FROM table_2679061_4 WHERE player = "Bob Essensa"
### Context: CREATE TABLE table_2679061_4 (nationality VARCHAR, player VARCHAR) ### Question: What is the nationality of Bob Essensa? ### Answer: SELECT nationality FROM table_2679061_4 WHERE player = "Bob Essensa"
What position is the player from the Regina Pats (WHL)?
CREATE TABLE table_2679061_4 (position VARCHAR, college_junior_club_team VARCHAR)
SELECT position FROM table_2679061_4 WHERE college_junior_club_team = "Regina Pats (WHL)"
### Context: CREATE TABLE table_2679061_4 (position VARCHAR, college_junior_club_team VARCHAR) ### Question: What position is the player from the Regina Pats (WHL)? ### Answer: SELECT position FROM table_2679061_4 WHERE college_junior_club_team = "Regina Pats (WHL)"
What number pick was the player from HIFK Helsinki (Finland)?
CREATE TABLE table_2679061_4 (pick__number VARCHAR, college_junior_club_team VARCHAR)
SELECT pick__number FROM table_2679061_4 WHERE college_junior_club_team = "HIFK Helsinki (Finland)"
### Context: CREATE TABLE table_2679061_4 (pick__number VARCHAR, college_junior_club_team VARCHAR) ### Question: What number pick was the player from HIFK Helsinki (Finland)? ### Answer: SELECT pick__number FROM table_2679061_4 WHERE college_junior_club_team = "HIFK Helsinki (Finland)"
Which team drafted Esa Tikkanen?
CREATE TABLE table_2679061_4 (nhl_team VARCHAR, player VARCHAR)
SELECT nhl_team FROM table_2679061_4 WHERE player = "Esa Tikkanen"
### Context: CREATE TABLE table_2679061_4 (nhl_team VARCHAR, player VARCHAR) ### Question: Which team drafted Esa Tikkanen? ### Answer: SELECT nhl_team FROM table_2679061_4 WHERE player = "Esa Tikkanen"
What was the nationality of player picked no. 168?
CREATE TABLE table_2679061_9 (nationality VARCHAR, pick__number VARCHAR)
SELECT nationality FROM table_2679061_9 WHERE pick__number = 168
### Context: CREATE TABLE table_2679061_9 (nationality VARCHAR, pick__number VARCHAR) ### Question: What was the nationality of player picked no. 168? ### Answer: SELECT nationality FROM table_2679061_9 WHERE pick__number = 168
What was the nationality of player picked no. 179?
CREATE TABLE table_2679061_9 (nationality VARCHAR, pick__number VARCHAR)
SELECT nationality FROM table_2679061_9 WHERE pick__number = 179
### Context: CREATE TABLE table_2679061_9 (nationality VARCHAR, pick__number VARCHAR) ### Question: What was the nationality of player picked no. 179? ### Answer: SELECT nationality FROM table_2679061_9 WHERE pick__number = 179
Who was the player who played for Hartford Whalers NHL Team?
CREATE TABLE table_2679061_9 (player VARCHAR, nhl_team VARCHAR)
SELECT player FROM table_2679061_9 WHERE nhl_team = "Hartford Whalers"
### Context: CREATE TABLE table_2679061_9 (player VARCHAR, nhl_team VARCHAR) ### Question: Who was the player who played for Hartford Whalers NHL Team? ### Answer: SELECT player FROM table_2679061_9 WHERE nhl_team = "Hartford Whalers"
What was the position of the player who played for New York Islanders NHL Team?
CREATE TABLE table_2679061_9 (position VARCHAR, nhl_team VARCHAR)
SELECT position FROM table_2679061_9 WHERE nhl_team = "New York Islanders"
### Context: CREATE TABLE table_2679061_9 (position VARCHAR, nhl_team VARCHAR) ### Question: What was the position of the player who played for New York Islanders NHL Team? ### Answer: SELECT position FROM table_2679061_9 WHERE nhl_team = "New York Islanders"
What was the nationality of player Cliff Abrecht?
CREATE TABLE table_2679061_9 (nationality VARCHAR, player VARCHAR)
SELECT nationality FROM table_2679061_9 WHERE player = "Cliff Abrecht"
### Context: CREATE TABLE table_2679061_9 (nationality VARCHAR, player VARCHAR) ### Question: What was the nationality of player Cliff Abrecht? ### Answer: SELECT nationality FROM table_2679061_9 WHERE player = "Cliff Abrecht"
What is the highest number of poles?
CREATE TABLE table_26794530_1 (poles INTEGER)
SELECT MAX(poles) FROM table_26794530_1
### Context: CREATE TABLE table_26794530_1 (poles INTEGER) ### Question: What is the highest number of poles? ### Answer: SELECT MAX(poles) FROM table_26794530_1
How many f/laps were there when he scored 170 points?
CREATE TABLE table_26794530_1 (f_laps VARCHAR, points VARCHAR)
SELECT COUNT(f_laps) FROM table_26794530_1 WHERE points = "170"
### Context: CREATE TABLE table_26794530_1 (f_laps VARCHAR, points VARCHAR) ### Question: How many f/laps were there when he scored 170 points? ### Answer: SELECT COUNT(f_laps) FROM table_26794530_1 WHERE points = "170"
When there were 30 races and the final placing was 13th, how many points were scored?
CREATE TABLE table_26794530_1 (points VARCHAR, final_placing VARCHAR, races VARCHAR)
SELECT points FROM table_26794530_1 WHERE final_placing = "13th" AND races = 30
### Context: CREATE TABLE table_26794530_1 (points VARCHAR, final_placing VARCHAR, races VARCHAR) ### Question: When there were 30 races and the final placing was 13th, how many points were scored? ### Answer: SELECT points FROM table_26794530_1 WHERE final_placing = "13th" AND races = 30
What club is associated with draft number 155?
CREATE TABLE table_2679061_8 (nhl_team VARCHAR, pick__number VARCHAR)
SELECT nhl_team FROM table_2679061_8 WHERE pick__number = 155
### Context: CREATE TABLE table_2679061_8 (nhl_team VARCHAR, pick__number VARCHAR) ### Question: What club is associated with draft number 155? ### Answer: SELECT nhl_team FROM table_2679061_8 WHERE pick__number = 155
What is the production code for the number 5 series ?
CREATE TABLE table_26801821_1 (production_code VARCHAR, no_in_series VARCHAR)
SELECT production_code FROM table_26801821_1 WHERE no_in_series = 5
### Context: CREATE TABLE table_26801821_1 (production_code VARCHAR, no_in_series VARCHAR) ### Question: What is the production code for the number 5 series ? ### Answer: SELECT production_code FROM table_26801821_1 WHERE no_in_series = 5
What is the number of the series written by Teresa Lin?
CREATE TABLE table_26801821_1 (no_in_series VARCHAR, written_by VARCHAR)
SELECT COUNT(no_in_series) FROM table_26801821_1 WHERE written_by = "Teresa Lin"
### Context: CREATE TABLE table_26801821_1 (no_in_series VARCHAR, written_by VARCHAR) ### Question: What is the number of the series written by Teresa Lin? ### Answer: SELECT COUNT(no_in_series) FROM table_26801821_1 WHERE written_by = "Teresa Lin"
Which series # had 0.852 U.S. viewers(millions)?
CREATE TABLE table_26808178_3 (series__number INTEGER, us_viewers__millions_ VARCHAR)
SELECT MAX(series__number) FROM table_26808178_3 WHERE us_viewers__millions_ = "0.852"
### Context: CREATE TABLE table_26808178_3 (series__number INTEGER, us_viewers__millions_ VARCHAR) ### Question: Which series # had 0.852 U.S. viewers(millions)? ### Answer: SELECT MAX(series__number) FROM table_26808178_3 WHERE us_viewers__millions_ = "0.852"
Which original air date had 0.871 U.S. viewers (millions)?
CREATE TABLE table_26808178_3 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)
SELECT original_air_date FROM table_26808178_3 WHERE us_viewers__millions_ = "0.871"
### Context: CREATE TABLE table_26808178_3 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR) ### Question: Which original air date had 0.871 U.S. viewers (millions)? ### Answer: SELECT original_air_date FROM table_26808178_3 WHERE us_viewers__millions_ = "0.871"
Which series # had 0.645 U.S. viewers(millions)?
CREATE TABLE table_26808178_3 (series__number INTEGER, us_viewers__millions_ VARCHAR)
SELECT MAX(series__number) FROM table_26808178_3 WHERE us_viewers__millions_ = "0.645"
### Context: CREATE TABLE table_26808178_3 (series__number INTEGER, us_viewers__millions_ VARCHAR) ### Question: Which series # had 0.645 U.S. viewers(millions)? ### Answer: SELECT MAX(series__number) FROM table_26808178_3 WHERE us_viewers__millions_ = "0.645"
When 12th is the final placing what is the wins?
CREATE TABLE table_26815674_1 (wins VARCHAR, final_placing VARCHAR)
SELECT wins FROM table_26815674_1 WHERE final_placing = "12th"
### Context: CREATE TABLE table_26815674_1 (wins VARCHAR, final_placing VARCHAR) ### Question: When 12th is the final placing what is the wins? ### Answer: SELECT wins FROM table_26815674_1 WHERE final_placing = "12th"
When 24th is the final placing how many wins are there?
CREATE TABLE table_26815674_1 (wins VARCHAR, final_placing VARCHAR)
SELECT COUNT(wins) FROM table_26815674_1 WHERE final_placing = "24th"
### Context: CREATE TABLE table_26815674_1 (wins VARCHAR, final_placing VARCHAR) ### Question: When 24th is the final placing how many wins are there? ### Answer: SELECT COUNT(wins) FROM table_26815674_1 WHERE final_placing = "24th"
What is the lowest overall amount of wins?
CREATE TABLE table_26815674_1 (wins INTEGER)
SELECT MIN(wins) FROM table_26815674_1
### Context: CREATE TABLE table_26815674_1 (wins INTEGER) ### Question: What is the lowest overall amount of wins? ### Answer: SELECT MIN(wins) FROM table_26815674_1