question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the Launched which is on 3 may 2001?
CREATE TABLE table_name_31 (launched VARCHAR, date_of_commission VARCHAR)
SELECT launched FROM table_name_31 WHERE date_of_commission = "3 may 2001"
### Context: CREATE TABLE table_name_31 (launched VARCHAR, date_of_commission VARCHAR) ### Question: What is the Launched which is on 3 may 2001? ### Answer: SELECT launched FROM table_name_31 WHERE date_of_commission = "3 may 2001"
What is the Homeport that has a Laid down on 14 december 1985?
CREATE TABLE table_name_73 (homeport__as_of_july_2013_ VARCHAR, laid_down VARCHAR)
SELECT homeport__as_of_july_2013_ FROM table_name_73 WHERE laid_down = "14 december 1985"
### Context: CREATE TABLE table_name_73 (homeport__as_of_july_2013_ VARCHAR, laid_down VARCHAR) ### Question: What is the Homeport that has a Laid down on 14 december 1985? ### Answer: SELECT homeport__as_of_july_2013_ FROM table_name_73 WHERE laid_down = "14 december 1985"
What kind of Launched has a Homeport (as of July 2013) of sold to chile, and a Pennant number of f80?
CREATE TABLE table_name_65 (launched VARCHAR, homeport__as_of_july_2013_ VARCHAR, pennant_number VARCHAR)
SELECT launched FROM table_name_65 WHERE homeport__as_of_july_2013_ = "sold to chile" AND pennant_number = "f80"
### Context: CREATE TABLE table_name_65 (launched VARCHAR, homeport__as_of_july_2013_ VARCHAR, pennant_number VARCHAR) ### Question: What kind of Launched has a Homeport (as of July 2013) of sold to chile, and a Pennant number of f80? ### Answer: SELECT launched FROM table_name_65 WHERE homeport__as_of_july_2013_ = "sold to chile" AND pennant_number = "f80"
Which player had more than 25 events?
CREATE TABLE table_name_60 (player VARCHAR, events INTEGER)
SELECT player FROM table_name_60 WHERE events > 25
### Context: CREATE TABLE table_name_60 (player VARCHAR, events INTEGER) ### Question: Which player had more than 25 events? ### Answer: SELECT player FROM table_name_60 WHERE events > 25
What amount of prize money was there when the rank was less than 7, there were more than 6 events, and the country was Fiji?
CREATE TABLE table_name_94 (prize_money___$__ VARCHAR, country VARCHAR, rank VARCHAR, events VARCHAR)
SELECT prize_money___$__ FROM table_name_94 WHERE rank < 7 AND events > 6 AND country = "fiji"
### Context: CREATE TABLE table_name_94 (prize_money___$__ VARCHAR, country VARCHAR, rank VARCHAR, events VARCHAR) ### Question: What amount of prize money was there when the rank was less than 7, there were more than 6 events, and the country was Fiji? ### Answer: SELECT prize_money___$__ FROM table_name_94 WHERE rank < 7 AND events > 6 AND country = "fiji"
What is the least amount of prize money when there are 21 events?
CREATE TABLE table_name_96 (prize_money___ INTEGER, events VARCHAR)
SELECT MIN(prize_money___) AS $__ FROM table_name_96 WHERE events = 21
### Context: CREATE TABLE table_name_96 (prize_money___ INTEGER, events VARCHAR) ### Question: What is the least amount of prize money when there are 21 events? ### Answer: SELECT MIN(prize_money___) AS $__ FROM table_name_96 WHERE events = 21
Which series episode has a netflix figure of s04e21?
CREATE TABLE table_name_45 (series_ep VARCHAR, netflix VARCHAR)
SELECT series_ep FROM table_name_45 WHERE netflix = "s04e21"
### Context: CREATE TABLE table_name_45 (series_ep VARCHAR, netflix VARCHAR) ### Question: Which series episode has a netflix figure of s04e21? ### Answer: SELECT series_ep FROM table_name_45 WHERE netflix = "s04e21"
Which segment a's netflix figure is s04e24?
CREATE TABLE table_name_77 (segment_a VARCHAR, netflix VARCHAR)
SELECT segment_a FROM table_name_77 WHERE netflix = "s04e24"
### Context: CREATE TABLE table_name_77 (segment_a VARCHAR, netflix VARCHAR) ### Question: Which segment a's netflix figure is s04e24? ### Answer: SELECT segment_a FROM table_name_77 WHERE netflix = "s04e24"
How many episodes have a segment d that is goalie masks (part 2)?
CREATE TABLE table_name_53 (episode VARCHAR, segment_d VARCHAR)
SELECT COUNT(episode) FROM table_name_53 WHERE segment_d = "goalie masks (part 2)"
### Context: CREATE TABLE table_name_53 (episode VARCHAR, segment_d VARCHAR) ### Question: How many episodes have a segment d that is goalie masks (part 2)? ### Answer: SELECT COUNT(episode) FROM table_name_53 WHERE segment_d = "goalie masks (part 2)"
Which episode's segment b is s hacksaw?
CREATE TABLE table_name_67 (episode VARCHAR, segment_b VARCHAR)
SELECT episode FROM table_name_67 WHERE segment_b = "s hacksaw"
### Context: CREATE TABLE table_name_67 (episode VARCHAR, segment_b VARCHAR) ### Question: Which episode's segment b is s hacksaw? ### Answer: SELECT episode FROM table_name_67 WHERE segment_b = "s hacksaw"
When was Lachlan Dale born?
CREATE TABLE table_name_47 (dob VARCHAR, surname VARCHAR, first VARCHAR)
SELECT dob FROM table_name_47 WHERE surname = "dale" AND first = "lachlan"
### Context: CREATE TABLE table_name_47 (dob VARCHAR, surname VARCHAR, first VARCHAR) ### Question: When was Lachlan Dale born? ### Answer: SELECT dob FROM table_name_47 WHERE surname = "dale" AND first = "lachlan"
Which batter played P and was born 18 April 1984?
CREATE TABLE table_name_12 (bats VARCHAR, position VARCHAR, dob VARCHAR)
SELECT bats FROM table_name_12 WHERE position = "p" AND dob = "18 april 1984"
### Context: CREATE TABLE table_name_12 (bats VARCHAR, position VARCHAR, dob VARCHAR) ### Question: Which batter played P and was born 18 April 1984? ### Answer: SELECT bats FROM table_name_12 WHERE position = "p" AND dob = "18 april 1984"
Which Surname has Bats of r, and a Position of p, and a DOB of 20 may 1989?
CREATE TABLE table_name_73 (surname VARCHAR, dob VARCHAR, bats VARCHAR, position VARCHAR)
SELECT surname FROM table_name_73 WHERE bats = "r" AND position = "p" AND dob = "20 may 1989"
### Context: CREATE TABLE table_name_73 (surname VARCHAR, dob VARCHAR, bats VARCHAR, position VARCHAR) ### Question: Which Surname has Bats of r, and a Position of p, and a DOB of 20 may 1989? ### Answer: SELECT surname FROM table_name_73 WHERE bats = "r" AND position = "p" AND dob = "20 may 1989"
Which Position has Throws of r, and a DOB of 12 february 1983?
CREATE TABLE table_name_59 (position VARCHAR, throws VARCHAR, dob VARCHAR)
SELECT position FROM table_name_59 WHERE throws = "r" AND dob = "12 february 1983"
### Context: CREATE TABLE table_name_59 (position VARCHAR, throws VARCHAR, dob VARCHAR) ### Question: Which Position has Throws of r, and a DOB of 12 february 1983? ### Answer: SELECT position FROM table_name_59 WHERE throws = "r" AND dob = "12 february 1983"
How many throws did Needle have?
CREATE TABLE table_name_10 (throws VARCHAR, surname VARCHAR)
SELECT throws FROM table_name_10 WHERE surname = "needle"
### Context: CREATE TABLE table_name_10 (throws VARCHAR, surname VARCHAR) ### Question: How many throws did Needle have? ### Answer: SELECT throws FROM table_name_10 WHERE surname = "needle"
Which DOB has Bats of s, and a Position of inf?
CREATE TABLE table_name_8 (dob VARCHAR, bats VARCHAR, position VARCHAR)
SELECT dob FROM table_name_8 WHERE bats = "s" AND position = "inf"
### Context: CREATE TABLE table_name_8 (dob VARCHAR, bats VARCHAR, position VARCHAR) ### Question: Which DOB has Bats of s, and a Position of inf? ### Answer: SELECT dob FROM table_name_8 WHERE bats = "s" AND position = "inf"
What is the Lap Length of the race with a Grand Prix Fia Category?
CREATE TABLE table_name_50 (lap_length VARCHAR, category VARCHAR)
SELECT lap_length FROM table_name_50 WHERE category = "grand prix fia"
### Context: CREATE TABLE table_name_50 (lap_length VARCHAR, category VARCHAR) ### Question: What is the Lap Length of the race with a Grand Prix Fia Category? ### Answer: SELECT lap_length FROM table_name_50 WHERE category = "grand prix fia"
What is the Race on July 30, 1950 with a Formula 2 Fia, non-championship?
CREATE TABLE table_name_47 (race VARCHAR, category VARCHAR, date VARCHAR)
SELECT race FROM table_name_47 WHERE category = "formula 2 fia, non-championship" AND date = "july 30, 1950"
### Context: CREATE TABLE table_name_47 (race VARCHAR, category VARCHAR, date VARCHAR) ### Question: What is the Race on July 30, 1950 with a Formula 2 Fia, non-championship? ### Answer: SELECT race FROM table_name_47 WHERE category = "formula 2 fia, non-championship" AND date = "july 30, 1950"
What was his record when the match went for 3:05?
CREATE TABLE table_name_62 (record VARCHAR, time VARCHAR)
SELECT record FROM table_name_62 WHERE time = "3:05"
### Context: CREATE TABLE table_name_62 (record VARCHAR, time VARCHAR) ### Question: What was his record when the match went for 3:05? ### Answer: SELECT record FROM table_name_62 WHERE time = "3:05"
How many rounds did the match go for the Bellator 72 event?
CREATE TABLE table_name_62 (round INTEGER, event VARCHAR)
SELECT SUM(round) FROM table_name_62 WHERE event = "bellator 72"
### Context: CREATE TABLE table_name_62 (round INTEGER, event VARCHAR) ### Question: How many rounds did the match go for the Bellator 72 event? ### Answer: SELECT SUM(round) FROM table_name_62 WHERE event = "bellator 72"
What is the sum of the live viewers for episodes with share over 5?
CREATE TABLE table_name_77 (live VARCHAR, share INTEGER, viewers_ INTEGER)
SELECT SUM(viewers_)[live] AS __m_ FROM table_name_77 WHERE share > 5
### Context: CREATE TABLE table_name_77 (live VARCHAR, share INTEGER, viewers_ INTEGER) ### Question: What is the sum of the live viewers for episodes with share over 5? ### Answer: SELECT SUM(viewers_)[live] AS __m_ FROM table_name_77 WHERE share > 5
Which Callsign includes a frequency under 1210, Newsradio 740 KTRH, and webcasts with listen live?
CREATE TABLE table_name_97 (callsign VARCHAR, brand VARCHAR, webcast VARCHAR, frequency VARCHAR)
SELECT callsign FROM table_name_97 WHERE webcast = "listen live" AND frequency < 1210 AND brand = "newsradio 740 ktrh"
### Context: CREATE TABLE table_name_97 (callsign VARCHAR, brand VARCHAR, webcast VARCHAR, frequency VARCHAR) ### Question: Which Callsign includes a frequency under 1210, Newsradio 740 KTRH, and webcasts with listen live? ### Answer: SELECT callsign FROM table_name_97 WHERE webcast = "listen live" AND frequency < 1210 AND brand = "newsradio 740 ktrh"
Which website includes a webcast of listen live, a frequency under 1050, and is licensed in the city of Monterrey?
CREATE TABLE table_name_64 (website VARCHAR, frequency VARCHAR, city_of_license VARCHAR, webcast VARCHAR)
SELECT website FROM table_name_64 WHERE city_of_license = "monterrey" AND webcast = "listen live" AND frequency < 1050
### Context: CREATE TABLE table_name_64 (website VARCHAR, frequency VARCHAR, city_of_license VARCHAR, webcast VARCHAR) ### Question: Which website includes a webcast of listen live, a frequency under 1050, and is licensed in the city of Monterrey? ### Answer: SELECT website FROM table_name_64 WHERE city_of_license = "monterrey" AND webcast = "listen live" AND frequency < 1050
The KTRH.com website includes which type of webcast?
CREATE TABLE table_name_54 (webcast VARCHAR, website VARCHAR)
SELECT webcast FROM table_name_54 WHERE website = "ktrh.com"
### Context: CREATE TABLE table_name_54 (webcast VARCHAR, website VARCHAR) ### Question: The KTRH.com website includes which type of webcast? ### Answer: SELECT webcast FROM table_name_54 WHERE website = "ktrh.com"
Which website includes a webcast of listen live, a frequency under 680, and was licensed in the city of San Antonio.
CREATE TABLE table_name_53 (website VARCHAR, frequency VARCHAR, city_of_license VARCHAR, webcast VARCHAR)
SELECT website FROM table_name_53 WHERE city_of_license = "san antonio" AND webcast = "listen live" AND frequency = 680
### Context: CREATE TABLE table_name_53 (website VARCHAR, frequency VARCHAR, city_of_license VARCHAR, webcast VARCHAR) ### Question: Which website includes a webcast of listen live, a frequency under 680, and was licensed in the city of San Antonio. ### Answer: SELECT website FROM table_name_53 WHERE city_of_license = "san antonio" AND webcast = "listen live" AND frequency = 680
Which long range AM station has the lowest frequency and includes a webcast of listen live, was licensed in the city of Monterrey, and uses the Callsign of xet?
CREATE TABLE table_name_2 (frequency INTEGER, callsign VARCHAR, webcast VARCHAR, city_of_license VARCHAR)
SELECT MIN(frequency) FROM table_name_2 WHERE webcast = "listen live" AND city_of_license = "monterrey" AND callsign = "xet"
### Context: CREATE TABLE table_name_2 (frequency INTEGER, callsign VARCHAR, webcast VARCHAR, city_of_license VARCHAR) ### Question: Which long range AM station has the lowest frequency and includes a webcast of listen live, was licensed in the city of Monterrey, and uses the Callsign of xet? ### Answer: SELECT MIN(frequency) FROM table_name_2 WHERE webcast = "listen live" AND city_of_license = "monterrey" AND callsign = "xet"
Which Games is the highest one that has a Drawn smaller than 0?
CREATE TABLE table_name_26 (games INTEGER, drawn INTEGER)
SELECT MAX(games) FROM table_name_26 WHERE drawn < 0
### Context: CREATE TABLE table_name_26 (games INTEGER, drawn INTEGER) ### Question: Which Games is the highest one that has a Drawn smaller than 0? ### Answer: SELECT MAX(games) FROM table_name_26 WHERE drawn < 0
What is the score for game 6?
CREATE TABLE table_name_11 (score VARCHAR, game VARCHAR)
SELECT score FROM table_name_11 WHERE game = 6
### Context: CREATE TABLE table_name_11 (score VARCHAR, game VARCHAR) ### Question: What is the score for game 6? ### Answer: SELECT score FROM table_name_11 WHERE game = 6
Which Capacity has a Location of mogilev?
CREATE TABLE table_name_38 (capacity INTEGER, location VARCHAR)
SELECT SUM(capacity) FROM table_name_38 WHERE location = "mogilev"
### Context: CREATE TABLE table_name_38 (capacity INTEGER, location VARCHAR) ### Question: Which Capacity has a Location of mogilev? ### Answer: SELECT SUM(capacity) FROM table_name_38 WHERE location = "mogilev"
What was the District of California 2 result?
CREATE TABLE table_name_93 (result VARCHAR, district VARCHAR)
SELECT result FROM table_name_93 WHERE district = "california 2"
### Context: CREATE TABLE table_name_93 (result VARCHAR, district VARCHAR) ### Question: What was the District of California 2 result? ### Answer: SELECT result FROM table_name_93 WHERE district = "california 2"
What was the district Incumbent Julius Kahn was in that was smaller than 1906?
CREATE TABLE table_name_74 (district VARCHAR, first_elected VARCHAR, incumbent VARCHAR)
SELECT district FROM table_name_74 WHERE first_elected < 1906 AND incumbent = "julius kahn"
### Context: CREATE TABLE table_name_74 (district VARCHAR, first_elected VARCHAR, incumbent VARCHAR) ### Question: What was the district Incumbent Julius Kahn was in that was smaller than 1906? ### Answer: SELECT district FROM table_name_74 WHERE first_elected < 1906 AND incumbent = "julius kahn"
What was the lowest re-elected result for Sylvester C. Smith?
CREATE TABLE table_name_47 (first_elected INTEGER, result VARCHAR, incumbent VARCHAR)
SELECT MIN(first_elected) FROM table_name_47 WHERE result = "re-elected" AND incumbent = "sylvester c. smith"
### Context: CREATE TABLE table_name_47 (first_elected INTEGER, result VARCHAR, incumbent VARCHAR) ### Question: What was the lowest re-elected result for Sylvester C. Smith? ### Answer: SELECT MIN(first_elected) FROM table_name_47 WHERE result = "re-elected" AND incumbent = "sylvester c. smith"
What was the result for Julius Kahn's first election of 1898?
CREATE TABLE table_name_6 (result VARCHAR, first_elected VARCHAR, incumbent VARCHAR)
SELECT result FROM table_name_6 WHERE first_elected = 1898 AND incumbent = "julius kahn"
### Context: CREATE TABLE table_name_6 (result VARCHAR, first_elected VARCHAR, incumbent VARCHAR) ### Question: What was the result for Julius Kahn's first election of 1898? ### Answer: SELECT result FROM table_name_6 WHERE first_elected = 1898 AND incumbent = "julius kahn"
Which party had a result of retired democratic hold and a first elected earlier than 1884 with an incumbent of samuel dibble?
CREATE TABLE table_name_32 (party VARCHAR, incumbent VARCHAR, result VARCHAR, first_elected VARCHAR)
SELECT party FROM table_name_32 WHERE result = "retired democratic hold" AND first_elected < 1884 AND incumbent = "samuel dibble"
### Context: CREATE TABLE table_name_32 (party VARCHAR, incumbent VARCHAR, result VARCHAR, first_elected VARCHAR) ### Question: Which party had a result of retired democratic hold and a first elected earlier than 1884 with an incumbent of samuel dibble? ### Answer: SELECT party FROM table_name_32 WHERE result = "retired democratic hold" AND first_elected < 1884 AND incumbent = "samuel dibble"
Which district had a first elected in 1882 with a result of re-elected?
CREATE TABLE table_name_7 (district VARCHAR, first_elected VARCHAR, result VARCHAR)
SELECT district FROM table_name_7 WHERE first_elected = 1882 AND result = "re-elected"
### Context: CREATE TABLE table_name_7 (district VARCHAR, first_elected VARCHAR, result VARCHAR) ### Question: Which district had a first elected in 1882 with a result of re-elected? ### Answer: SELECT district FROM table_name_7 WHERE first_elected = 1882 AND result = "re-elected"
Which Average is the lowest one that has a Total smaller than 134, and a Number of dances smaller than 3, and a Rank by average smaller than 12?
CREATE TABLE table_name_38 (average INTEGER, rank_by_average VARCHAR, total VARCHAR, number_of_dances VARCHAR)
SELECT MIN(average) FROM table_name_38 WHERE total < 134 AND number_of_dances < 3 AND rank_by_average < 12
### Context: CREATE TABLE table_name_38 (average INTEGER, rank_by_average VARCHAR, total VARCHAR, number_of_dances VARCHAR) ### Question: Which Average is the lowest one that has a Total smaller than 134, and a Number of dances smaller than 3, and a Rank by average smaller than 12? ### Answer: SELECT MIN(average) FROM table_name_38 WHERE total < 134 AND number_of_dances < 3 AND rank_by_average < 12
Which Couple has a Rank by average larger than 3, and an Average larger than 16.5, and a Total smaller than 195, and a Number of dances larger than 3?
CREATE TABLE table_name_20 (couple VARCHAR, number_of_dances VARCHAR, total VARCHAR, rank_by_average VARCHAR, average VARCHAR)
SELECT couple FROM table_name_20 WHERE rank_by_average > 3 AND average > 16.5 AND total < 195 AND number_of_dances > 3
### Context: CREATE TABLE table_name_20 (couple VARCHAR, number_of_dances VARCHAR, total VARCHAR, rank_by_average VARCHAR, average VARCHAR) ### Question: Which Couple has a Rank by average larger than 3, and an Average larger than 16.5, and a Total smaller than 195, and a Number of dances larger than 3? ### Answer: SELECT couple FROM table_name_20 WHERE rank_by_average > 3 AND average > 16.5 AND total < 195 AND number_of_dances > 3
Which Rank by average is the lowest one that has a Total of 425, and a Place larger than 1?
CREATE TABLE table_name_54 (rank_by_average INTEGER, total VARCHAR, place VARCHAR)
SELECT MIN(rank_by_average) FROM table_name_54 WHERE total = 425 AND place > 1
### Context: CREATE TABLE table_name_54 (rank_by_average INTEGER, total VARCHAR, place VARCHAR) ### Question: Which Rank by average is the lowest one that has a Total of 425, and a Place larger than 1? ### Answer: SELECT MIN(rank_by_average) FROM table_name_54 WHERE total = 425 AND place > 1
What nation are carolina hermann / daniel hermann from?
CREATE TABLE table_name_64 (nation VARCHAR, name VARCHAR)
SELECT nation FROM table_name_64 WHERE name = "carolina hermann / daniel hermann"
### Context: CREATE TABLE table_name_64 (nation VARCHAR, name VARCHAR) ### Question: What nation are carolina hermann / daniel hermann from? ### Answer: SELECT nation FROM table_name_64 WHERE name = "carolina hermann / daniel hermann"
What is the rank associated with 141.48 points?
CREATE TABLE table_name_71 (rank VARCHAR, points VARCHAR)
SELECT rank FROM table_name_71 WHERE points = 141.48
### Context: CREATE TABLE table_name_71 (rank VARCHAR, points VARCHAR) ### Question: What is the rank associated with 141.48 points? ### Answer: SELECT rank FROM table_name_71 WHERE points = 141.48
What competitors are scored 124.51 points?
CREATE TABLE table_name_88 (name VARCHAR, points VARCHAR)
SELECT name FROM table_name_88 WHERE points = 124.51
### Context: CREATE TABLE table_name_88 (name VARCHAR, points VARCHAR) ### Question: What competitors are scored 124.51 points? ### Answer: SELECT name FROM table_name_88 WHERE points = 124.51
At what percent was Pat Robertson when George H.W. Bush had 76%?
CREATE TABLE table_name_64 (pat_robertson VARCHAR, george_hw_bush VARCHAR)
SELECT pat_robertson FROM table_name_64 WHERE george_hw_bush = "76%"
### Context: CREATE TABLE table_name_64 (pat_robertson VARCHAR, george_hw_bush VARCHAR) ### Question: At what percent was Pat Robertson when George H.W. Bush had 76%? ### Answer: SELECT pat_robertson FROM table_name_64 WHERE george_hw_bush = "76%"
When George H.W. Bush had 81%, and Pat Robertson had 9%, what did Bob Dole have?
CREATE TABLE table_name_67 (bob_dole VARCHAR, george_hw_bush VARCHAR, pat_robertson VARCHAR)
SELECT bob_dole FROM table_name_67 WHERE george_hw_bush = "81%" AND pat_robertson = "9%"
### Context: CREATE TABLE table_name_67 (bob_dole VARCHAR, george_hw_bush VARCHAR, pat_robertson VARCHAR) ### Question: When George H.W. Bush had 81%, and Pat Robertson had 9%, what did Bob Dole have? ### Answer: SELECT bob_dole FROM table_name_67 WHERE george_hw_bush = "81%" AND pat_robertson = "9%"
When Pat Robertson was at 16%, what did Pete du Pont have?
CREATE TABLE table_name_13 (pete_du_pont VARCHAR, pat_robertson VARCHAR)
SELECT pete_du_pont FROM table_name_13 WHERE pat_robertson = "16%"
### Context: CREATE TABLE table_name_13 (pete_du_pont VARCHAR, pat_robertson VARCHAR) ### Question: When Pat Robertson was at 16%, what did Pete du Pont have? ### Answer: SELECT pete_du_pont FROM table_name_13 WHERE pat_robertson = "16%"
When Bob Dole had 26%, and George H.W. Bush had 47%, what did Pat Robertson have?
CREATE TABLE table_name_12 (pat_robertson VARCHAR, bob_dole VARCHAR, george_hw_bush VARCHAR)
SELECT pat_robertson FROM table_name_12 WHERE bob_dole = "26%" AND george_hw_bush = "47%"
### Context: CREATE TABLE table_name_12 (pat_robertson VARCHAR, bob_dole VARCHAR, george_hw_bush VARCHAR) ### Question: When Bob Dole had 26%, and George H.W. Bush had 47%, what did Pat Robertson have? ### Answer: SELECT pat_robertson FROM table_name_12 WHERE bob_dole = "26%" AND george_hw_bush = "47%"
When Bob Dole had 26%, and Pete du Pont had 0%, what did Pat Robertson have?
CREATE TABLE table_name_43 (pat_robertson VARCHAR, bob_dole VARCHAR, pete_du_pont VARCHAR)
SELECT pat_robertson FROM table_name_43 WHERE bob_dole = "26%" AND pete_du_pont = "0%"
### Context: CREATE TABLE table_name_43 (pat_robertson VARCHAR, bob_dole VARCHAR, pete_du_pont VARCHAR) ### Question: When Bob Dole had 26%, and Pete du Pont had 0%, what did Pat Robertson have? ### Answer: SELECT pat_robertson FROM table_name_43 WHERE bob_dole = "26%" AND pete_du_pont = "0%"
When Pat Robertson had 19%, and Bob Dole had 26%, what did George H.W. Bush have?
CREATE TABLE table_name_43 (george_hw_bush VARCHAR, pat_robertson VARCHAR, bob_dole VARCHAR)
SELECT george_hw_bush FROM table_name_43 WHERE pat_robertson = "19%" AND bob_dole = "26%"
### Context: CREATE TABLE table_name_43 (george_hw_bush VARCHAR, pat_robertson VARCHAR, bob_dole VARCHAR) ### Question: When Pat Robertson had 19%, and Bob Dole had 26%, what did George H.W. Bush have? ### Answer: SELECT george_hw_bush FROM table_name_43 WHERE pat_robertson = "19%" AND bob_dole = "26%"
Date of october 10, 1965 had what lowest attendance?
CREATE TABLE table_name_59 (attendance INTEGER, date VARCHAR)
SELECT MIN(attendance) FROM table_name_59 WHERE date = "october 10, 1965"
### Context: CREATE TABLE table_name_59 (attendance INTEGER, date VARCHAR) ### Question: Date of october 10, 1965 had what lowest attendance? ### Answer: SELECT MIN(attendance) FROM table_name_59 WHERE date = "october 10, 1965"
Opponent of chicago bears involved what date?
CREATE TABLE table_name_95 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_95 WHERE opponent = "chicago bears"
### Context: CREATE TABLE table_name_95 (date VARCHAR, opponent VARCHAR) ### Question: Opponent of chicago bears involved what date? ### Answer: SELECT date FROM table_name_95 WHERE opponent = "chicago bears"
Performer 2 of compilation 2 is what performer 1?
CREATE TABLE table_name_91 (performer_1 VARCHAR, performer_2 VARCHAR)
SELECT performer_1 FROM table_name_91 WHERE performer_2 = "compilation 2"
### Context: CREATE TABLE table_name_91 (performer_1 VARCHAR, performer_2 VARCHAR) ### Question: Performer 2 of compilation 2 is what performer 1? ### Answer: SELECT performer_1 FROM table_name_91 WHERE performer_2 = "compilation 2"
Performer 1 of greg proops, and a Date of 25 august 1995 is what performer 4?
CREATE TABLE table_name_76 (performer_4 VARCHAR, performer_1 VARCHAR, date VARCHAR)
SELECT performer_4 FROM table_name_76 WHERE performer_1 = "greg proops" AND date = "25 august 1995"
### Context: CREATE TABLE table_name_76 (performer_4 VARCHAR, performer_1 VARCHAR, date VARCHAR) ### Question: Performer 1 of greg proops, and a Date of 25 august 1995 is what performer 4? ### Answer: SELECT performer_4 FROM table_name_76 WHERE performer_1 = "greg proops" AND date = "25 august 1995"
Performer 1 of greg proops, and a Performer 3 of ryan stiles, and a Date of 25 august 1995 is which average episode?
CREATE TABLE table_name_74 (episode INTEGER, date VARCHAR, performer_1 VARCHAR, performer_3 VARCHAR)
SELECT AVG(episode) FROM table_name_74 WHERE performer_1 = "greg proops" AND performer_3 = "ryan stiles" AND date = "25 august 1995"
### Context: CREATE TABLE table_name_74 (episode INTEGER, date VARCHAR, performer_1 VARCHAR, performer_3 VARCHAR) ### Question: Performer 1 of greg proops, and a Performer 3 of ryan stiles, and a Date of 25 august 1995 is which average episode? ### Answer: SELECT AVG(episode) FROM table_name_74 WHERE performer_1 = "greg proops" AND performer_3 = "ryan stiles" AND date = "25 august 1995"
Performer 1 of Stephen Frost, and a Performer 2 of Josie Lawrence, and a Date of 15 September 1995 is what performer 3?
CREATE TABLE table_name_79 (performer_3 VARCHAR, date VARCHAR, performer_1 VARCHAR, performer_2 VARCHAR)
SELECT performer_3 FROM table_name_79 WHERE performer_1 = "stephen frost" AND performer_2 = "josie lawrence" AND date = "15 september 1995"
### Context: CREATE TABLE table_name_79 (performer_3 VARCHAR, date VARCHAR, performer_1 VARCHAR, performer_2 VARCHAR) ### Question: Performer 1 of Stephen Frost, and a Performer 2 of Josie Lawrence, and a Date of 15 September 1995 is what performer 3? ### Answer: SELECT performer_3 FROM table_name_79 WHERE performer_1 = "stephen frost" AND performer_2 = "josie lawrence" AND date = "15 september 1995"
WHich Mountains classification has an Asian team classification of seoul cycling team, and a Winner of alexandre usov?
CREATE TABLE table_name_99 (mountains_classification VARCHAR, asian_team_classification VARCHAR, winner VARCHAR)
SELECT mountains_classification FROM table_name_99 WHERE asian_team_classification = "seoul cycling team" AND winner = "alexandre usov"
### Context: CREATE TABLE table_name_99 (mountains_classification VARCHAR, asian_team_classification VARCHAR, winner VARCHAR) ### Question: WHich Mountains classification has an Asian team classification of seoul cycling team, and a Winner of alexandre usov? ### Answer: SELECT mountains_classification FROM table_name_99 WHERE asian_team_classification = "seoul cycling team" AND winner = "alexandre usov"
WHo is the Asian rider classification that has ruslan ivanov on the Stage of 9?
CREATE TABLE table_name_43 (asian_rider_classification VARCHAR, general_classification VARCHAR, stage VARCHAR)
SELECT asian_rider_classification FROM table_name_43 WHERE general_classification = "ruslan ivanov" AND stage = "9"
### Context: CREATE TABLE table_name_43 (asian_rider_classification VARCHAR, general_classification VARCHAR, stage VARCHAR) ### Question: WHo is the Asian rider classification that has ruslan ivanov on the Stage of 9? ### Answer: SELECT asian_rider_classification FROM table_name_43 WHERE general_classification = "ruslan ivanov" AND stage = "9"
WHich General classification has an Asian rider classification of shinichi fukushima, and a Winner of jeremy hunt?
CREATE TABLE table_name_1 (general_classification VARCHAR, asian_rider_classification VARCHAR, winner VARCHAR)
SELECT general_classification FROM table_name_1 WHERE asian_rider_classification = "shinichi fukushima" AND winner = "jeremy hunt"
### Context: CREATE TABLE table_name_1 (general_classification VARCHAR, asian_rider_classification VARCHAR, winner VARCHAR) ### Question: WHich General classification has an Asian rider classification of shinichi fukushima, and a Winner of jeremy hunt? ### Answer: SELECT general_classification FROM table_name_1 WHERE asian_rider_classification = "shinichi fukushima" AND winner = "jeremy hunt"
Which Stage has a Mountains classification of filippo savini?
CREATE TABLE table_name_79 (stage VARCHAR, mountains_classification VARCHAR)
SELECT stage FROM table_name_79 WHERE mountains_classification = "filippo savini"
### Context: CREATE TABLE table_name_79 (stage VARCHAR, mountains_classification VARCHAR) ### Question: Which Stage has a Mountains classification of filippo savini? ### Answer: SELECT stage FROM table_name_79 WHERE mountains_classification = "filippo savini"
Which Stage has a Winner of jeremy hunt?
CREATE TABLE table_name_21 (stage VARCHAR, winner VARCHAR)
SELECT stage FROM table_name_21 WHERE winner = "jeremy hunt"
### Context: CREATE TABLE table_name_21 (stage VARCHAR, winner VARCHAR) ### Question: Which Stage has a Winner of jeremy hunt? ### Answer: SELECT stage FROM table_name_21 WHERE winner = "jeremy hunt"
Which winning team has Iowa city as the site, and december 3, 2006 as the date?
CREATE TABLE table_name_42 (winning_team VARCHAR, site VARCHAR, date VARCHAR)
SELECT winning_team FROM table_name_42 WHERE site = "iowa city" AND date = "december 3, 2006"
### Context: CREATE TABLE table_name_42 (winning_team VARCHAR, site VARCHAR, date VARCHAR) ### Question: Which winning team has Iowa city as the site, and december 3, 2006 as the date? ### Answer: SELECT winning_team FROM table_name_42 WHERE site = "iowa city" AND date = "december 3, 2006"
What site has november 30, 2006 as the date?
CREATE TABLE table_name_25 (site VARCHAR, date VARCHAR)
SELECT site FROM table_name_25 WHERE date = "november 30, 2006"
### Context: CREATE TABLE table_name_25 (site VARCHAR, date VARCHAR) ### Question: What site has november 30, 2006 as the date? ### Answer: SELECT site FROM table_name_25 WHERE date = "november 30, 2006"
What winning team has volleyball as the sport?
CREATE TABLE table_name_91 (winning_team VARCHAR, sport VARCHAR)
SELECT winning_team FROM table_name_91 WHERE sport = "volleyball"
### Context: CREATE TABLE table_name_91 (winning_team VARCHAR, sport VARCHAR) ### Question: What winning team has volleyball as the sport? ### Answer: SELECT winning_team FROM table_name_91 WHERE sport = "volleyball"
What is the total number in January when the St. Louis Blues had a game smaller than 42?
CREATE TABLE table_name_83 (january VARCHAR, opponent VARCHAR, game VARCHAR)
SELECT COUNT(january) FROM table_name_83 WHERE opponent = "st. louis blues" AND game < 42
### Context: CREATE TABLE table_name_83 (january VARCHAR, opponent VARCHAR, game VARCHAR) ### Question: What is the total number in January when the St. Louis Blues had a game smaller than 42? ### Answer: SELECT COUNT(january) FROM table_name_83 WHERE opponent = "st. louis blues" AND game < 42
What is the January sum with the record of 17-20-2 with a game smaller than 39?
CREATE TABLE table_name_70 (january INTEGER, record VARCHAR, game VARCHAR)
SELECT SUM(january) FROM table_name_70 WHERE record = "17-20-2" AND game < 39
### Context: CREATE TABLE table_name_70 (january INTEGER, record VARCHAR, game VARCHAR) ### Question: What is the January sum with the record of 17-20-2 with a game smaller than 39? ### Answer: SELECT SUM(january) FROM table_name_70 WHERE record = "17-20-2" AND game < 39
What was the record when the New York Knicks played at the Boston Garden?
CREATE TABLE table_name_51 (record VARCHAR, location VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_51 WHERE location = "boston garden" AND opponent = "new york knicks"
### Context: CREATE TABLE table_name_51 (record VARCHAR, location VARCHAR, opponent VARCHAR) ### Question: What was the record when the New York Knicks played at the Boston Garden? ### Answer: SELECT record FROM table_name_51 WHERE location = "boston garden" AND opponent = "new york knicks"
When the record was 7-2, what was the score for the game?
CREATE TABLE table_name_94 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_94 WHERE record = "7-2"
### Context: CREATE TABLE table_name_94 (score VARCHAR, record VARCHAR) ### Question: When the record was 7-2, what was the score for the game? ### Answer: SELECT score FROM table_name_94 WHERE record = "7-2"
On what date was the record 4-2?
CREATE TABLE table_name_66 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_66 WHERE record = "4-2"
### Context: CREATE TABLE table_name_66 (date VARCHAR, record VARCHAR) ### Question: On what date was the record 4-2? ### Answer: SELECT date FROM table_name_66 WHERE record = "4-2"
Which Females Rank is the highest one that has Females (%) larger than 53, and an HIV awareness (males%) smaller than 89, and a State of odisha?
CREATE TABLE table_name_2 (females_rank INTEGER, state VARCHAR, females___percentage_ VARCHAR, hiv_awareness__males_percentage_ VARCHAR)
SELECT MAX(females_rank) FROM table_name_2 WHERE females___percentage_ > 53 AND hiv_awareness__males_percentage_ < 89 AND state = "odisha"
### Context: CREATE TABLE table_name_2 (females_rank INTEGER, state VARCHAR, females___percentage_ VARCHAR, hiv_awareness__males_percentage_ VARCHAR) ### Question: Which Females Rank is the highest one that has Females (%) larger than 53, and an HIV awareness (males%) smaller than 89, and a State of odisha? ### Answer: SELECT MAX(females_rank) FROM table_name_2 WHERE females___percentage_ > 53 AND hiv_awareness__males_percentage_ < 89 AND state = "odisha"
How many Females (%) have Females Rank smaller than 21, and a State of kerala, and Males Rank larger than 1?
CREATE TABLE table_name_1 (females___percentage_ VARCHAR, males_rank VARCHAR, females_rank VARCHAR, state VARCHAR)
SELECT COUNT(females___percentage_) FROM table_name_1 WHERE females_rank < 21 AND state = "kerala" AND males_rank > 1
### Context: CREATE TABLE table_name_1 (females___percentage_ VARCHAR, males_rank VARCHAR, females_rank VARCHAR, state VARCHAR) ### Question: How many Females (%) have Females Rank smaller than 21, and a State of kerala, and Males Rank larger than 1? ### Answer: SELECT COUNT(females___percentage_) FROM table_name_1 WHERE females_rank < 21 AND state = "kerala" AND males_rank > 1
How many Females (%) have a State of karnataka, and Males Rank larger than 16?
CREATE TABLE table_name_45 (females___percentage_ VARCHAR, state VARCHAR, males_rank VARCHAR)
SELECT COUNT(females___percentage_) FROM table_name_45 WHERE state = "karnataka" AND males_rank > 16
### Context: CREATE TABLE table_name_45 (females___percentage_ VARCHAR, state VARCHAR, males_rank VARCHAR) ### Question: How many Females (%) have a State of karnataka, and Males Rank larger than 16? ### Answer: SELECT COUNT(females___percentage_) FROM table_name_45 WHERE state = "karnataka" AND males_rank > 16
Which Males Rank is the highest one that has Females (%) smaller than 40, and Females Rank smaller than 22?
CREATE TABLE table_name_93 (males_rank INTEGER, females___percentage_ VARCHAR, females_rank VARCHAR)
SELECT MAX(males_rank) FROM table_name_93 WHERE females___percentage_ < 40 AND females_rank < 22
### Context: CREATE TABLE table_name_93 (males_rank INTEGER, females___percentage_ VARCHAR, females_rank VARCHAR) ### Question: Which Males Rank is the highest one that has Females (%) smaller than 40, and Females Rank smaller than 22? ### Answer: SELECT MAX(males_rank) FROM table_name_93 WHERE females___percentage_ < 40 AND females_rank < 22
Which Females (%) has an HIV awareness (males%) larger than 92, and Females Rank larger than 2, and Males Rank smaller than 3?
CREATE TABLE table_name_71 (females___percentage_ INTEGER, males_rank VARCHAR, hiv_awareness__males_percentage_ VARCHAR, females_rank VARCHAR)
SELECT SUM(females___percentage_) FROM table_name_71 WHERE hiv_awareness__males_percentage_ > 92 AND females_rank > 2 AND males_rank < 3
### Context: CREATE TABLE table_name_71 (females___percentage_ INTEGER, males_rank VARCHAR, hiv_awareness__males_percentage_ VARCHAR, females_rank VARCHAR) ### Question: Which Females (%) has an HIV awareness (males%) larger than 92, and Females Rank larger than 2, and Males Rank smaller than 3? ### Answer: SELECT SUM(females___percentage_) FROM table_name_71 WHERE hiv_awareness__males_percentage_ > 92 AND females_rank > 2 AND males_rank < 3
League Cup smaller than 0 is what sum of the total?
CREATE TABLE table_name_31 (total INTEGER, league_cup INTEGER)
SELECT SUM(total) FROM table_name_31 WHERE league_cup < 0
### Context: CREATE TABLE table_name_31 (total INTEGER, league_cup INTEGER) ### Question: League Cup smaller than 0 is what sum of the total? ### Answer: SELECT SUM(total) FROM table_name_31 WHERE league_cup < 0
Championship larger than 3, and a FA Cup smaller than 3, and a Total smaller than 6 involves what highest league cup?
CREATE TABLE table_name_27 (league_cup INTEGER, total VARCHAR, championship VARCHAR, fa_cup VARCHAR)
SELECT MAX(league_cup) FROM table_name_27 WHERE championship > 3 AND fa_cup < 3 AND total < 6
### Context: CREATE TABLE table_name_27 (league_cup INTEGER, total VARCHAR, championship VARCHAR, fa_cup VARCHAR) ### Question: Championship larger than 3, and a FA Cup smaller than 3, and a Total smaller than 6 involves what highest league cup? ### Answer: SELECT MAX(league_cup) FROM table_name_27 WHERE championship > 3 AND fa_cup < 3 AND total < 6
Which Opponent has a Surface of hard on 28 august 1993?
CREATE TABLE table_name_46 (opponent VARCHAR, surface VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_46 WHERE surface = "hard" AND date = "28 august 1993"
### Context: CREATE TABLE table_name_46 (opponent VARCHAR, surface VARCHAR, date VARCHAR) ### Question: Which Opponent has a Surface of hard on 28 august 1993? ### Answer: SELECT opponent FROM table_name_46 WHERE surface = "hard" AND date = "28 august 1993"
WHICH Outcome IS ON 18 july 1993?
CREATE TABLE table_name_70 (outcome VARCHAR, date VARCHAR)
SELECT outcome FROM table_name_70 WHERE date = "18 july 1993"
### Context: CREATE TABLE table_name_70 (outcome VARCHAR, date VARCHAR) ### Question: WHICH Outcome IS ON 18 july 1993? ### Answer: SELECT outcome FROM table_name_70 WHERE date = "18 july 1993"
WHICH Outcome has aN Opponent of pascale paradis-mangon?
CREATE TABLE table_name_68 (outcome VARCHAR, opponent VARCHAR)
SELECT outcome FROM table_name_68 WHERE opponent = "pascale paradis-mangon"
### Context: CREATE TABLE table_name_68 (outcome VARCHAR, opponent VARCHAR) ### Question: WHICH Outcome has aN Opponent of pascale paradis-mangon? ### Answer: SELECT outcome FROM table_name_68 WHERE opponent = "pascale paradis-mangon"
Which Score has aN Outcome of winner on 4 november 1990?
CREATE TABLE table_name_66 (score VARCHAR, outcome VARCHAR, date VARCHAR)
SELECT score FROM table_name_66 WHERE outcome = "winner" AND date = "4 november 1990"
### Context: CREATE TABLE table_name_66 (score VARCHAR, outcome VARCHAR, date VARCHAR) ### Question: Which Score has aN Outcome of winner on 4 november 1990? ### Answer: SELECT score FROM table_name_66 WHERE outcome = "winner" AND date = "4 november 1990"
Which Tournament has an Opponent of susan sloane?
CREATE TABLE table_name_18 (tournament VARCHAR, opponent VARCHAR)
SELECT tournament FROM table_name_18 WHERE opponent = "susan sloane"
### Context: CREATE TABLE table_name_18 (tournament VARCHAR, opponent VARCHAR) ### Question: Which Tournament has an Opponent of susan sloane? ### Answer: SELECT tournament FROM table_name_18 WHERE opponent = "susan sloane"
Which Tournament has an Opponent of meike babel?
CREATE TABLE table_name_92 (tournament VARCHAR, opponent VARCHAR)
SELECT tournament FROM table_name_92 WHERE opponent = "meike babel"
### Context: CREATE TABLE table_name_92 (tournament VARCHAR, opponent VARCHAR) ### Question: Which Tournament has an Opponent of meike babel? ### Answer: SELECT tournament FROM table_name_92 WHERE opponent = "meike babel"
Which Game has a November of 29?
CREATE TABLE table_name_63 (game INTEGER, november VARCHAR)
SELECT SUM(game) FROM table_name_63 WHERE november = 29
### Context: CREATE TABLE table_name_63 (game INTEGER, november VARCHAR) ### Question: Which Game has a November of 29? ### Answer: SELECT SUM(game) FROM table_name_63 WHERE november = 29
Which Points have a Record of 12–2–4–1, and a November larger than 22?
CREATE TABLE table_name_40 (points INTEGER, record VARCHAR, november VARCHAR)
SELECT AVG(points) FROM table_name_40 WHERE record = "12–2–4–1" AND november > 22
### Context: CREATE TABLE table_name_40 (points INTEGER, record VARCHAR, november VARCHAR) ### Question: Which Points have a Record of 12–2–4–1, and a November larger than 22? ### Answer: SELECT AVG(points) FROM table_name_40 WHERE record = "12–2–4–1" AND november > 22
Which Record has a Game of 19?
CREATE TABLE table_name_78 (record VARCHAR, game VARCHAR)
SELECT record FROM table_name_78 WHERE game = 19
### Context: CREATE TABLE table_name_78 (record VARCHAR, game VARCHAR) ### Question: Which Record has a Game of 19? ### Answer: SELECT record FROM table_name_78 WHERE game = 19
How many Novembers have a Game larger than 14, and an Opponent of minnesota wild?
CREATE TABLE table_name_50 (november VARCHAR, game VARCHAR, opponent VARCHAR)
SELECT COUNT(november) FROM table_name_50 WHERE game > 14 AND opponent = "minnesota wild"
### Context: CREATE TABLE table_name_50 (november VARCHAR, game VARCHAR, opponent VARCHAR) ### Question: How many Novembers have a Game larger than 14, and an Opponent of minnesota wild? ### Answer: SELECT COUNT(november) FROM table_name_50 WHERE game > 14 AND opponent = "minnesota wild"
Which November is the lowest one that has a Record of 12–2–4–1?
CREATE TABLE table_name_56 (november INTEGER, record VARCHAR)
SELECT MIN(november) FROM table_name_56 WHERE record = "12–2–4–1"
### Context: CREATE TABLE table_name_56 (november INTEGER, record VARCHAR) ### Question: Which November is the lowest one that has a Record of 12–2–4–1? ### Answer: SELECT MIN(november) FROM table_name_56 WHERE record = "12–2–4–1"
What day has a record of 25–30–13 and less than 63 points?
CREATE TABLE table_name_70 (march INTEGER, record VARCHAR, points VARCHAR)
SELECT AVG(march) FROM table_name_70 WHERE record = "25–30–13" AND points < 63
### Context: CREATE TABLE table_name_70 (march INTEGER, record VARCHAR, points VARCHAR) ### Question: What day has a record of 25–30–13 and less than 63 points? ### Answer: SELECT AVG(march) FROM table_name_70 WHERE record = "25–30–13" AND points < 63
Which opponent has 63 points?
CREATE TABLE table_name_98 (opponent VARCHAR, points VARCHAR)
SELECT opponent FROM table_name_98 WHERE points = 63
### Context: CREATE TABLE table_name_98 (opponent VARCHAR, points VARCHAR) ### Question: Which opponent has 63 points? ### Answer: SELECT opponent FROM table_name_98 WHERE points = 63
Which Alpha contains ia64 with discontinued 3.5-3.8 4.1-4.7?
CREATE TABLE table_name_34 (alpha VARCHAR, ia64 VARCHAR)
SELECT alpha FROM table_name_34 WHERE ia64 = "discontinued 3.5-3.8 4.1-4.7"
### Context: CREATE TABLE table_name_34 (alpha VARCHAR, ia64 VARCHAR) ### Question: Which Alpha contains ia64 with discontinued 3.5-3.8 4.1-4.7? ### Answer: SELECT alpha FROM table_name_34 WHERE ia64 = "discontinued 3.5-3.8 4.1-4.7"
Which s390x contains a yes ia64 and a no for alpha?
CREATE TABLE table_name_21 (s390x VARCHAR, ia64 VARCHAR, alpha VARCHAR)
SELECT s390x FROM table_name_21 WHERE ia64 = "yes" AND alpha = "no"
### Context: CREATE TABLE table_name_21 (s390x VARCHAR, ia64 VARCHAR, alpha VARCHAR) ### Question: Which s390x contains a yes ia64 and a no for alpha? ### Answer: SELECT s390x FROM table_name_21 WHERE ia64 = "yes" AND alpha = "no"
Which hppa contains a ppc64 of yes 3+, no for mips and no for alpha?
CREATE TABLE table_name_72 (hppa VARCHAR, ppc64 VARCHAR, mips VARCHAR, alpha VARCHAR)
SELECT hppa FROM table_name_72 WHERE mips = "no" AND alpha = "no" AND ppc64 = "yes 3+"
### Context: CREATE TABLE table_name_72 (hppa VARCHAR, ppc64 VARCHAR, mips VARCHAR, alpha VARCHAR) ### Question: Which hppa contains a ppc64 of yes 3+, no for mips and no for alpha? ### Answer: SELECT hppa FROM table_name_72 WHERE mips = "no" AND alpha = "no" AND ppc64 = "yes 3+"
Which 1991 has an A 1993 ?
CREATE TABLE table_name_77 (Id VARCHAR)
SELECT 1991 FROM table_name_77 WHERE 1993 = "a"
### Context: CREATE TABLE table_name_77 (Id VARCHAR) ### Question: Which 1991 has an A 1993 ? ### Answer: SELECT 1991 FROM table_name_77 WHERE 1993 = "a"
Which 992 has a 1–2 of 1989 ?
CREATE TABLE table_name_13 (Id VARCHAR)
SELECT 1992 FROM table_name_13 WHERE 1989 = "1–2"
### Context: CREATE TABLE table_name_13 (Id VARCHAR) ### Question: Which 992 has a 1–2 of 1989 ? ### Answer: SELECT 1992 FROM table_name_13 WHERE 1989 = "1–2"
WHICH 1990 has a 1993 of 1r?
CREATE TABLE table_name_3 (Id VARCHAR)
SELECT 1990 FROM table_name_3 WHERE 1993 = "1r"
### Context: CREATE TABLE table_name_3 (Id VARCHAR) ### Question: WHICH 1990 has a 1993 of 1r? ### Answer: SELECT 1990 FROM table_name_3 WHERE 1993 = "1r"
Which 1994 has a 1998 of 0–1?
CREATE TABLE table_name_35 (Id VARCHAR)
SELECT 1994 FROM table_name_35 WHERE 1998 = "0–1"
### Context: CREATE TABLE table_name_35 (Id VARCHAR) ### Question: Which 1994 has a 1998 of 0–1? ### Answer: SELECT 1994 FROM table_name_35 WHERE 1998 = "0–1"
Which 1995 has a 1993 of 3r?
CREATE TABLE table_name_86 (Id VARCHAR)
SELECT 1995 FROM table_name_86 WHERE 1993 = "3r"
### Context: CREATE TABLE table_name_86 (Id VARCHAR) ### Question: Which 1995 has a 1993 of 3r? ### Answer: SELECT 1995 FROM table_name_86 WHERE 1993 = "3r"
Which 1992 has a 1996 of sf and a 1993 of a?
CREATE TABLE table_name_59 (Id VARCHAR)
SELECT 1992 FROM table_name_59 WHERE 1996 = "sf" AND 1993 = "a"
### Context: CREATE TABLE table_name_59 (Id VARCHAR) ### Question: Which 1992 has a 1996 of sf and a 1993 of a? ### Answer: SELECT 1992 FROM table_name_59 WHERE 1996 = "sf" AND 1993 = "a"
Which school picked a back in round 16, after pick 89?
CREATE TABLE table_name_20 (school VARCHAR, round VARCHAR, pick VARCHAR, position VARCHAR)
SELECT school FROM table_name_20 WHERE pick > 89 AND position = "back" AND round = 16
### Context: CREATE TABLE table_name_20 (school VARCHAR, round VARCHAR, pick VARCHAR, position VARCHAR) ### Question: Which school picked a back in round 16, after pick 89? ### Answer: SELECT school FROM table_name_20 WHERE pick > 89 AND position = "back" AND round = 16
Who was the visitor in the game that had Ottawa as the home team?
CREATE TABLE table_name_29 (visitor VARCHAR, home VARCHAR)
SELECT visitor FROM table_name_29 WHERE home = "ottawa"
### Context: CREATE TABLE table_name_29 (visitor VARCHAR, home VARCHAR) ### Question: Who was the visitor in the game that had Ottawa as the home team? ### Answer: SELECT visitor FROM table_name_29 WHERE home = "ottawa"
What was the score in the game where Carolina was the home team and Niittymaki received the decision?
CREATE TABLE table_name_90 (score VARCHAR, decision VARCHAR, home VARCHAR)
SELECT score FROM table_name_90 WHERE decision = "niittymaki" AND home = "carolina"
### Context: CREATE TABLE table_name_90 (score VARCHAR, decision VARCHAR, home VARCHAR) ### Question: What was the score in the game where Carolina was the home team and Niittymaki received the decision? ### Answer: SELECT score FROM table_name_90 WHERE decision = "niittymaki" AND home = "carolina"
What was the date of the game that had a loss of Johnson (9-8)?
CREATE TABLE table_name_30 (date VARCHAR, loss VARCHAR)
SELECT date FROM table_name_30 WHERE loss = "johnson (9-8)"
### Context: CREATE TABLE table_name_30 (date VARCHAR, loss VARCHAR) ### Question: What was the date of the game that had a loss of Johnson (9-8)? ### Answer: SELECT date FROM table_name_30 WHERE loss = "johnson (9-8)"
Who had a Run 1 smaller than 51.96, a Run 2 larger than 51.13, and a Run 3 of 52.53?
CREATE TABLE table_name_23 (athlete VARCHAR, run_3 VARCHAR, run_1 VARCHAR, run_2 VARCHAR)
SELECT athlete FROM table_name_23 WHERE run_1 < 51.96 AND run_2 > 51.13 AND run_3 = 52.53
### Context: CREATE TABLE table_name_23 (athlete VARCHAR, run_3 VARCHAR, run_1 VARCHAR, run_2 VARCHAR) ### Question: Who had a Run 1 smaller than 51.96, a Run 2 larger than 51.13, and a Run 3 of 52.53? ### Answer: SELECT athlete FROM table_name_23 WHERE run_1 < 51.96 AND run_2 > 51.13 AND run_3 = 52.53