question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Which couple participated in the Contemporary style of dance?
CREATE TABLE table_name_27 (couple VARCHAR, style VARCHAR)
SELECT couple FROM table_name_27 WHERE style = "contemporary"
### Context: CREATE TABLE table_name_27 (couple VARCHAR, style VARCHAR) ### Question: Which couple participated in the Contemporary style of dance? ### Answer: SELECT couple FROM table_name_27 WHERE style = "contemporary"
Which couple participated in the Paso Doble style and were safe?
CREATE TABLE table_name_91 (couple VARCHAR, results VARCHAR, style VARCHAR)
SELECT couple FROM table_name_91 WHERE results = "safe" AND style = "paso doble"
### Context: CREATE TABLE table_name_91 (couple VARCHAR, results VARCHAR, style VARCHAR) ### Question: Which couple participated in the Paso Doble style and were safe? ### Answer: SELECT couple FROM table_name_91 WHERE results = "safe" AND style = "paso doble"
How many weeks had a game on November 26, 1978, and an attendance higher than 26,248?
CREATE TABLE table_name_88 (week VARCHAR, date VARCHAR, attendance VARCHAR)
SELECT COUNT(week) FROM table_name_88 WHERE date = "november 26, 1978" AND attendance > 26 OFFSET 248
### Context: CREATE TABLE table_name_88 (week VARCHAR, date VARCHAR, attendance VARCHAR) ### Question: How many weeks had a game on November 26, 1978, and an attendance higher than 26,248? ### Answer: SELECT COUNT(week) FROM table_name_88 WHERE date = "november 26, 1978" AND attendance > 26 OFFSET 248
What was the lowest Attendance during Week 12?
CREATE TABLE table_name_90 (attendance INTEGER, week VARCHAR)
SELECT MIN(attendance) FROM table_name_90 WHERE week = 12
### Context: CREATE TABLE table_name_90 (attendance INTEGER, week VARCHAR) ### Question: What was the lowest Attendance during Week 12? ### Answer: SELECT MIN(attendance) FROM table_name_90 WHERE week = 12
What was the name of the tournament that the final was played against Yi Jingqian?
CREATE TABLE table_name_89 (tournament VARCHAR, opponent_in_the_final VARCHAR)
SELECT tournament FROM table_name_89 WHERE opponent_in_the_final = "yi jingqian"
### Context: CREATE TABLE table_name_89 (tournament VARCHAR, opponent_in_the_final VARCHAR) ### Question: What was the name of the tournament that the final was played against Yi Jingqian? ### Answer: SELECT tournament FROM table_name_89 WHERE opponent_in_the_final = "yi jingqian"
Who was the final opponent in the tournament in Taipei, Taiwan on November 14, 1994?
CREATE TABLE table_name_93 (opponent_in_the_final VARCHAR, tournament VARCHAR, date VARCHAR)
SELECT opponent_in_the_final FROM table_name_93 WHERE tournament = "taipei, taiwan" AND date = "november 14, 1994"
### Context: CREATE TABLE table_name_93 (opponent_in_the_final VARCHAR, tournament VARCHAR, date VARCHAR) ### Question: Who was the final opponent in the tournament in Taipei, Taiwan on November 14, 1994? ### Answer: SELECT opponent_in_the_final FROM table_name_93 WHERE tournament = "taipei, taiwan" AND date = "november 14, 1994"
On October 14, 1996 who was the opponent in the final?
CREATE TABLE table_name_47 (opponent_in_the_final VARCHAR, date VARCHAR)
SELECT opponent_in_the_final FROM table_name_47 WHERE date = "october 14, 1996"
### Context: CREATE TABLE table_name_47 (opponent_in_the_final VARCHAR, date VARCHAR) ### Question: On October 14, 1996 who was the opponent in the final? ### Answer: SELECT opponent_in_the_final FROM table_name_47 WHERE date = "october 14, 1996"
When playing against Yi Jingqian in the final on a hard surface what was the score?
CREATE TABLE table_name_29 (score VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)
SELECT score FROM table_name_29 WHERE surface = "hard" AND opponent_in_the_final = "yi jingqian"
### Context: CREATE TABLE table_name_29 (score VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR) ### Question: When playing against Yi Jingqian in the final on a hard surface what was the score? ### Answer: SELECT score FROM table_name_29 WHERE surface = "hard" AND opponent_in_the_final = "yi jingqian"
Who was played against in the final on November 14, 1994?
CREATE TABLE table_name_17 (opponent_in_the_final VARCHAR, date VARCHAR)
SELECT opponent_in_the_final FROM table_name_17 WHERE date = "november 14, 1994"
### Context: CREATE TABLE table_name_17 (opponent_in_the_final VARCHAR, date VARCHAR) ### Question: Who was played against in the final on November 14, 1994? ### Answer: SELECT opponent_in_the_final FROM table_name_17 WHERE date = "november 14, 1994"
What is the total number of Entered when the eliminated number is 3?
CREATE TABLE table_name_53 (entered VARCHAR, eliminated VARCHAR)
SELECT COUNT(entered) FROM table_name_53 WHERE eliminated = "3"
### Context: CREATE TABLE table_name_53 (entered VARCHAR, eliminated VARCHAR) ### Question: What is the total number of Entered when the eliminated number is 3? ### Answer: SELECT COUNT(entered) FROM table_name_53 WHERE eliminated = "3"
What is the Eliminated when there are less than 4 entered and the wrestler was shawn michaels?
CREATE TABLE table_name_28 (eliminated VARCHAR, entered VARCHAR, wrestler VARCHAR)
SELECT eliminated FROM table_name_28 WHERE entered < 4 AND wrestler = "shawn michaels"
### Context: CREATE TABLE table_name_28 (eliminated VARCHAR, entered VARCHAR, wrestler VARCHAR) ### Question: What is the Eliminated when there are less than 4 entered and the wrestler was shawn michaels? ### Answer: SELECT eliminated FROM table_name_28 WHERE entered < 4 AND wrestler = "shawn michaels"
How many frequencies have a line of East London and destination of Crystal Palace?
CREATE TABLE table_name_18 (frequency__per_hour_ VARCHAR, line VARCHAR, destination VARCHAR)
SELECT COUNT(frequency__per_hour_) FROM table_name_18 WHERE line = "east london" AND destination = "crystal palace"
### Context: CREATE TABLE table_name_18 (frequency__per_hour_ VARCHAR, line VARCHAR, destination VARCHAR) ### Question: How many frequencies have a line of East London and destination of Crystal Palace? ### Answer: SELECT COUNT(frequency__per_hour_) FROM table_name_18 WHERE line = "east london" AND destination = "crystal palace"
Which line has an operator of the London Overground and ends at the Crystal Palace?
CREATE TABLE table_name_87 (line VARCHAR, operator VARCHAR, destination VARCHAR)
SELECT line FROM table_name_87 WHERE operator = "london overground" AND destination = "crystal palace"
### Context: CREATE TABLE table_name_87 (line VARCHAR, operator VARCHAR, destination VARCHAR) ### Question: Which line has an operator of the London Overground and ends at the Crystal Palace? ### Answer: SELECT line FROM table_name_87 WHERE operator = "london overground" AND destination = "crystal palace"
Which song was by artist Gino Vannelli?
CREATE TABLE table_name_15 (song VARCHAR, artist VARCHAR)
SELECT song FROM table_name_15 WHERE artist = "gino vannelli"
### Context: CREATE TABLE table_name_15 (song VARCHAR, artist VARCHAR) ### Question: Which song was by artist Gino Vannelli? ### Answer: SELECT song FROM table_name_15 WHERE artist = "gino vannelli"
What tournament did Bill Rogers play in when he had less than 7 Cuts, 0 Wins, and less than 1 Top-25?
CREATE TABLE table_name_35 (tournament VARCHAR, top_25 VARCHAR, cuts_made VARCHAR, wins VARCHAR)
SELECT tournament FROM table_name_35 WHERE cuts_made < 7 AND wins = 0 AND top_25 < 1
### Context: CREATE TABLE table_name_35 (tournament VARCHAR, top_25 VARCHAR, cuts_made VARCHAR, wins VARCHAR) ### Question: What tournament did Bill Rogers play in when he had less than 7 Cuts, 0 Wins, and less than 1 Top-25? ### Answer: SELECT tournament FROM table_name_35 WHERE cuts_made < 7 AND wins = 0 AND top_25 < 1
What are the number of losses that have Ties of 1 and 3 or more poll wins?
CREATE TABLE table_name_49 (losses VARCHAR, ties VARCHAR, poll_wins VARCHAR)
SELECT COUNT(losses) FROM table_name_49 WHERE ties = 1 AND poll_wins > 3
### Context: CREATE TABLE table_name_49 (losses VARCHAR, ties VARCHAR, poll_wins VARCHAR) ### Question: What are the number of losses that have Ties of 1 and 3 or more poll wins? ### Answer: SELECT COUNT(losses) FROM table_name_49 WHERE ties = 1 AND poll_wins > 3
What is the lowest poll losses of the 0 ties, poll wins greater than 1 and wins less than 2?
CREATE TABLE table_name_15 (poll_losses INTEGER, wins VARCHAR, ties VARCHAR, poll_wins VARCHAR)
SELECT MIN(poll_losses) FROM table_name_15 WHERE ties = 0 AND poll_wins > 1 AND wins < 2
### Context: CREATE TABLE table_name_15 (poll_losses INTEGER, wins VARCHAR, ties VARCHAR, poll_wins VARCHAR) ### Question: What is the lowest poll losses of the 0 ties, poll wins greater than 1 and wins less than 2? ### Answer: SELECT MIN(poll_losses) FROM table_name_15 WHERE ties = 0 AND poll_wins > 1 AND wins < 2
What is the highest poll of the advocate Andy Kindler with poll losses greater than 2 and ties less than 0?
CREATE TABLE table_name_49 (poll_wins INTEGER, ties VARCHAR, poll_losses VARCHAR, advocate VARCHAR)
SELECT MAX(poll_wins) FROM table_name_49 WHERE poll_losses > 2 AND advocate = "andy kindler" AND ties < 0
### Context: CREATE TABLE table_name_49 (poll_wins INTEGER, ties VARCHAR, poll_losses VARCHAR, advocate VARCHAR) ### Question: What is the highest poll of the advocate Andy Kindler with poll losses greater than 2 and ties less than 0? ### Answer: SELECT MAX(poll_wins) FROM table_name_49 WHERE poll_losses > 2 AND advocate = "andy kindler" AND ties < 0
Which PBA Titles has a TV Finals larger than 6, and an Events larger than 20?
CREATE TABLE table_name_16 (pba_titles INTEGER, tv_finals VARCHAR, events VARCHAR)
SELECT AVG(pba_titles) FROM table_name_16 WHERE tv_finals > 6 AND events > 20
### Context: CREATE TABLE table_name_16 (pba_titles INTEGER, tv_finals VARCHAR, events VARCHAR) ### Question: Which PBA Titles has a TV Finals larger than 6, and an Events larger than 20? ### Answer: SELECT AVG(pba_titles) FROM table_name_16 WHERE tv_finals > 6 AND events > 20
Which Events has Earnings of $113,259, and an Average larger than 229.5?
CREATE TABLE table_name_22 (events INTEGER, earnings VARCHAR, average VARCHAR)
SELECT MAX(events) FROM table_name_22 WHERE earnings = "$113,259" AND average > 229.5
### Context: CREATE TABLE table_name_22 (events INTEGER, earnings VARCHAR, average VARCHAR) ### Question: Which Events has Earnings of $113,259, and an Average larger than 229.5? ### Answer: SELECT MAX(events) FROM table_name_22 WHERE earnings = "$113,259" AND average > 229.5
Which Cashes has a Match Play smaller than 13, and a Events of 7?
CREATE TABLE table_name_97 (cashes VARCHAR, match_play VARCHAR, events VARCHAR)
SELECT COUNT(cashes) FROM table_name_97 WHERE match_play < 13 AND events = 7
### Context: CREATE TABLE table_name_97 (cashes VARCHAR, match_play VARCHAR, events VARCHAR) ### Question: Which Cashes has a Match Play smaller than 13, and a Events of 7? ### Answer: SELECT COUNT(cashes) FROM table_name_97 WHERE match_play < 13 AND events = 7
What is the Finish for the 1950–51? season?
CREATE TABLE table_name_22 (finish VARCHAR, season VARCHAR)
SELECT finish FROM table_name_22 WHERE season = "1950–51"
### Context: CREATE TABLE table_name_22 (finish VARCHAR, season VARCHAR) ### Question: What is the Finish for the 1950–51? season? ### Answer: SELECT finish FROM table_name_22 WHERE season = "1950–51"
What is the Losses at the western conference and the 2004–05 season?
CREATE TABLE table_name_51 (losses VARCHAR, conference VARCHAR, season VARCHAR)
SELECT losses FROM table_name_51 WHERE conference = "western" AND season = "2004–05"
### Context: CREATE TABLE table_name_51 (losses VARCHAR, conference VARCHAR, season VARCHAR) ### Question: What is the Losses at the western conference and the 2004–05 season? ### Answer: SELECT losses FROM table_name_51 WHERE conference = "western" AND season = "2004–05"
What Season has wins as the philadelphia warriors (nba)?
CREATE TABLE table_name_28 (season VARCHAR, wins VARCHAR)
SELECT season FROM table_name_28 WHERE wins = "philadelphia warriors (nba)"
### Context: CREATE TABLE table_name_28 (season VARCHAR, wins VARCHAR) ### Question: What Season has wins as the philadelphia warriors (nba)? ### Answer: SELECT season FROM table_name_28 WHERE wins = "philadelphia warriors (nba)"
What shows for Wins when there was a Conference of β€”, western division, in the 1967–68 season?
CREATE TABLE table_name_61 (wins VARCHAR, season VARCHAR, conference VARCHAR, division VARCHAR)
SELECT wins FROM table_name_61 WHERE conference = "β€”" AND division = "western" AND season = "1967–68"
### Context: CREATE TABLE table_name_61 (wins VARCHAR, season VARCHAR, conference VARCHAR, division VARCHAR) ### Question: What shows for Wins when there was a Conference of β€”, western division, in the 1967–68 season? ### Answer: SELECT wins FROM table_name_61 WHERE conference = "β€”" AND division = "western" AND season = "1967–68"
What is the Conference for the 1967–68 season?
CREATE TABLE table_name_71 (conference VARCHAR, season VARCHAR)
SELECT conference FROM table_name_71 WHERE season = "1967–68"
### Context: CREATE TABLE table_name_71 (conference VARCHAR, season VARCHAR) ### Question: What is the Conference for the 1967–68 season? ### Answer: SELECT conference FROM table_name_71 WHERE season = "1967–68"
What is the Location when the time was 11:55?
CREATE TABLE table_name_22 (location VARCHAR, time VARCHAR)
SELECT location FROM table_name_22 WHERE time = "11:55"
### Context: CREATE TABLE table_name_22 (location VARCHAR, time VARCHAR) ### Question: What is the Location when the time was 11:55? ### Answer: SELECT location FROM table_name_22 WHERE time = "11:55"
What Round has a Time of n/a, in rio de janeiro , brazil?
CREATE TABLE table_name_5 (round VARCHAR, time VARCHAR, location VARCHAR)
SELECT round FROM table_name_5 WHERE time = "n/a" AND location = "rio de janeiro , brazil"
### Context: CREATE TABLE table_name_5 (round VARCHAR, time VARCHAR, location VARCHAR) ### Question: What Round has a Time of n/a, in rio de janeiro , brazil? ### Answer: SELECT round FROM table_name_5 WHERE time = "n/a" AND location = "rio de janeiro , brazil"
What is the Round for the jiu-jitsu vs martial arts?
CREATE TABLE table_name_20 (round VARCHAR, event VARCHAR)
SELECT round FROM table_name_20 WHERE event = "jiu-jitsu vs martial arts"
### Context: CREATE TABLE table_name_20 (round VARCHAR, event VARCHAR) ### Question: What is the Round for the jiu-jitsu vs martial arts? ### Answer: SELECT round FROM table_name_20 WHERE event = "jiu-jitsu vs martial arts"
What is the Location for the jiu-jitsu vs martial arts?
CREATE TABLE table_name_36 (location VARCHAR, event VARCHAR)
SELECT location FROM table_name_36 WHERE event = "jiu-jitsu vs martial arts"
### Context: CREATE TABLE table_name_36 (location VARCHAR, event VARCHAR) ### Question: What is the Location for the jiu-jitsu vs martial arts? ### Answer: SELECT location FROM table_name_36 WHERE event = "jiu-jitsu vs martial arts"
What is the Event when the opponent was wesslan evaristo de oliveira?
CREATE TABLE table_name_79 (event VARCHAR, opponent VARCHAR)
SELECT event FROM table_name_79 WHERE opponent = "wesslan evaristo de oliveira"
### Context: CREATE TABLE table_name_79 (event VARCHAR, opponent VARCHAR) ### Question: What is the Event when the opponent was wesslan evaristo de oliveira? ### Answer: SELECT event FROM table_name_79 WHERE opponent = "wesslan evaristo de oliveira"
How many points does Kohta Nozane have with a Motobi TSR 6?
CREATE TABLE table_name_42 (points VARCHAR, bike VARCHAR, riders VARCHAR)
SELECT points FROM table_name_42 WHERE bike = "motobi tsr 6" AND riders = "kohta nozane"
### Context: CREATE TABLE table_name_42 (points VARCHAR, bike VARCHAR, riders VARCHAR) ### Question: How many points does Kohta Nozane have with a Motobi TSR 6? ### Answer: SELECT points FROM table_name_42 WHERE bike = "motobi tsr 6" AND riders = "kohta nozane"
Which Average has a Band of f?
CREATE TABLE table_name_57 (average VARCHAR, band VARCHAR)
SELECT average FROM table_name_57 WHERE band = "f"
### Context: CREATE TABLE table_name_57 (average VARCHAR, band VARCHAR) ### Question: Which Average has a Band of f? ### Answer: SELECT average FROM table_name_57 WHERE band = "f"
Which Band has a Ratio of 9/9?
CREATE TABLE table_name_76 (band VARCHAR, ratio VARCHAR)
SELECT band FROM table_name_76 WHERE ratio = "9/9"
### Context: CREATE TABLE table_name_76 (band VARCHAR, ratio VARCHAR) ### Question: Which Band has a Ratio of 9/9? ### Answer: SELECT band FROM table_name_76 WHERE ratio = "9/9"
Which Band has a Ratio of 13/9?
CREATE TABLE table_name_99 (band VARCHAR, ratio VARCHAR)
SELECT band FROM table_name_99 WHERE ratio = "13/9"
### Context: CREATE TABLE table_name_99 (band VARCHAR, ratio VARCHAR) ### Question: Which Band has a Ratio of 13/9? ### Answer: SELECT band FROM table_name_99 WHERE ratio = "13/9"
What was the latest year that the Atlanta Braves won and the St. Louis Cardinals lost?
CREATE TABLE table_name_70 (year INTEGER, winning_team VARCHAR, losing_team VARCHAR)
SELECT MAX(year) FROM table_name_70 WHERE winning_team = "atlanta braves" AND losing_team = "st. louis cardinals"
### Context: CREATE TABLE table_name_70 (year INTEGER, winning_team VARCHAR, losing_team VARCHAR) ### Question: What was the latest year that the Atlanta Braves won and the St. Louis Cardinals lost? ### Answer: SELECT MAX(year) FROM table_name_70 WHERE winning_team = "atlanta braves" AND losing_team = "st. louis cardinals"
Who won the series when the San Francisco Giants lost?
CREATE TABLE table_name_92 (winning_team VARCHAR, losing_team VARCHAR)
SELECT winning_team FROM table_name_92 WHERE losing_team = "san francisco giants"
### Context: CREATE TABLE table_name_92 (winning_team VARCHAR, losing_team VARCHAR) ### Question: Who won the series when the San Francisco Giants lost? ### Answer: SELECT winning_team FROM table_name_92 WHERE losing_team = "san francisco giants"
Where was the series that the Kansas City Royals lost?
CREATE TABLE table_name_65 (site VARCHAR, winning_team VARCHAR)
SELECT site FROM table_name_65 WHERE winning_team = "kansas city royals"
### Context: CREATE TABLE table_name_65 (site VARCHAR, winning_team VARCHAR) ### Question: Where was the series that the Kansas City Royals lost? ### Answer: SELECT site FROM table_name_65 WHERE winning_team = "kansas city royals"
Who was the winning team in 2008?
CREATE TABLE table_name_22 (winning_team VARCHAR, year VARCHAR)
SELECT winning_team FROM table_name_22 WHERE year = 2008
### Context: CREATE TABLE table_name_22 (winning_team VARCHAR, year VARCHAR) ### Question: Who was the winning team in 2008? ### Answer: SELECT winning_team FROM table_name_22 WHERE year = 2008
What average lost has points greater than 108?
CREATE TABLE table_name_49 (lost INTEGER, points INTEGER)
SELECT AVG(lost) FROM table_name_49 WHERE points > 108
### Context: CREATE TABLE table_name_49 (lost INTEGER, points INTEGER) ### Question: What average lost has points greater than 108? ### Answer: SELECT AVG(lost) FROM table_name_49 WHERE points > 108
How many losses have 222 as the goals against, with points greater than 78?
CREATE TABLE table_name_24 (lost INTEGER, goals_against VARCHAR, points VARCHAR)
SELECT SUM(lost) FROM table_name_24 WHERE goals_against = 222 AND points > 78
### Context: CREATE TABLE table_name_24 (lost INTEGER, goals_against VARCHAR, points VARCHAR) ### Question: How many losses have 222 as the goals against, with points greater than 78? ### Answer: SELECT SUM(lost) FROM table_name_24 WHERE goals_against = 222 AND points > 78
How many goals against have 64 for games, a loss less than 12, with points greater than 107?
CREATE TABLE table_name_37 (goals_against INTEGER, points VARCHAR, games VARCHAR, lost VARCHAR)
SELECT SUM(goals_against) FROM table_name_37 WHERE games = 64 AND lost < 12 AND points > 107
### Context: CREATE TABLE table_name_37 (goals_against INTEGER, points VARCHAR, games VARCHAR, lost VARCHAR) ### Question: How many goals against have 64 for games, a loss less than 12, with points greater than 107? ### Answer: SELECT SUM(goals_against) FROM table_name_37 WHERE games = 64 AND lost < 12 AND points > 107
What is the place of the song 'Never Change'?
CREATE TABLE table_name_79 (place INTEGER, song VARCHAR)
SELECT SUM(place) FROM table_name_79 WHERE song = "never change"
### Context: CREATE TABLE table_name_79 (place INTEGER, song VARCHAR) ### Question: What is the place of the song 'Never Change'? ### Answer: SELECT SUM(place) FROM table_name_79 WHERE song = "never change"
What is the name of Aleko Berdzenishvili's song?
CREATE TABLE table_name_18 (song VARCHAR, artist VARCHAR)
SELECT song FROM table_name_18 WHERE artist = "aleko berdzenishvili"
### Context: CREATE TABLE table_name_18 (song VARCHAR, artist VARCHAR) ### Question: What is the name of Aleko Berdzenishvili's song? ### Answer: SELECT song FROM table_name_18 WHERE artist = "aleko berdzenishvili"
What was the lowest pick for the RHP position and player Mike Biko?
CREATE TABLE table_name_67 (pick INTEGER, position VARCHAR, player VARCHAR)
SELECT MIN(pick) FROM table_name_67 WHERE position = "rhp" AND player = "mike biko"
### Context: CREATE TABLE table_name_67 (pick INTEGER, position VARCHAR, player VARCHAR) ### Question: What was the lowest pick for the RHP position and player Mike Biko? ### Answer: SELECT MIN(pick) FROM table_name_67 WHERE position = "rhp" AND player = "mike biko"
What is the Martin McGuinness with a David Norris that is 10.3%?
CREATE TABLE table_name_16 (martin_mcguinness VARCHAR, david_norris VARCHAR)
SELECT martin_mcguinness FROM table_name_16 WHERE david_norris = "10.3%"
### Context: CREATE TABLE table_name_16 (martin_mcguinness VARCHAR, david_norris VARCHAR) ### Question: What is the Martin McGuinness with a David Norris that is 10.3%? ### Answer: SELECT martin_mcguinness FROM table_name_16 WHERE david_norris = "10.3%"
What is the Martin mcGuinness with a Sean Gallagher that is 29.6%?
CREATE TABLE table_name_3 (martin_mcguinness VARCHAR, seΓ‘n_gallagher VARCHAR)
SELECT martin_mcguinness FROM table_name_3 WHERE seΓ‘n_gallagher = "29.6%"
### Context: CREATE TABLE table_name_3 (martin_mcguinness VARCHAR, seΓ‘n_gallagher VARCHAR) ### Question: What is the Martin mcGuinness with a Sean Gallagher that is 29.6%? ### Answer: SELECT martin_mcguinness FROM table_name_3 WHERE seΓ‘n_gallagher = "29.6%"
What is the David Norris with a Michael D. Higgins that is 46.2%?
CREATE TABLE table_name_92 (david_norris VARCHAR, michael_d_higgins VARCHAR)
SELECT david_norris FROM table_name_92 WHERE michael_d_higgins = "46.2%"
### Context: CREATE TABLE table_name_92 (david_norris VARCHAR, michael_d_higgins VARCHAR) ### Question: What is the David Norris with a Michael D. Higgins that is 46.2%? ### Answer: SELECT david_norris FROM table_name_92 WHERE michael_d_higgins = "46.2%"
What is the Mary Davis with a Gay Mitchell that is 4.6%?
CREATE TABLE table_name_96 (mary_davis VARCHAR, gay_mitchell VARCHAR)
SELECT mary_davis FROM table_name_96 WHERE gay_mitchell = "4.6%"
### Context: CREATE TABLE table_name_96 (mary_davis VARCHAR, gay_mitchell VARCHAR) ### Question: What is the Mary Davis with a Gay Mitchell that is 4.6%? ### Answer: SELECT mary_davis FROM table_name_96 WHERE gay_mitchell = "4.6%"
Can you tell me the total number of Prev that has the Chng of +10, and the Rating larger than 2765?
CREATE TABLE table_name_26 (prev VARCHAR, chng VARCHAR, rating VARCHAR)
SELECT COUNT(prev) FROM table_name_26 WHERE chng = "+10" AND rating > 2765
### Context: CREATE TABLE table_name_26 (prev VARCHAR, chng VARCHAR, rating VARCHAR) ### Question: Can you tell me the total number of Prev that has the Chng of +10, and the Rating larger than 2765? ### Answer: SELECT COUNT(prev) FROM table_name_26 WHERE chng = "+10" AND rating > 2765
Who is the second member for the Second Party Liberal, and the Third Party Conservative, after the 1841 election?
CREATE TABLE table_name_70 (second_member VARCHAR, election VARCHAR, second_party VARCHAR, third_party VARCHAR)
SELECT second_member FROM table_name_70 WHERE second_party = "liberal" AND third_party = "conservative" AND election > 1841
### Context: CREATE TABLE table_name_70 (second_member VARCHAR, election VARCHAR, second_party VARCHAR, third_party VARCHAR) ### Question: Who is the second member for the Second Party Liberal, and the Third Party Conservative, after the 1841 election? ### Answer: SELECT second_member FROM table_name_70 WHERE second_party = "liberal" AND third_party = "conservative" AND election > 1841
Who is the third member of the Liberal Party, a third party conservative, the second member Humphrey Mildmay?
CREATE TABLE table_name_2 (third_member VARCHAR, second_member VARCHAR, second_party VARCHAR, third_party VARCHAR)
SELECT third_member FROM table_name_2 WHERE second_party = "liberal" AND third_party = "conservative" AND second_member = "humphrey mildmay"
### Context: CREATE TABLE table_name_2 (third_member VARCHAR, second_member VARCHAR, second_party VARCHAR, third_party VARCHAR) ### Question: Who is the third member of the Liberal Party, a third party conservative, the second member Humphrey Mildmay? ### Answer: SELECT third_member FROM table_name_2 WHERE second_party = "liberal" AND third_party = "conservative" AND second_member = "humphrey mildmay"
Who is the third member of the third conservative party, and the second liberal party?
CREATE TABLE table_name_30 (third_member VARCHAR, third_party VARCHAR, second_party VARCHAR)
SELECT third_member FROM table_name_30 WHERE third_party = "conservative" AND second_party = "liberal"
### Context: CREATE TABLE table_name_30 (third_member VARCHAR, third_party VARCHAR, second_party VARCHAR) ### Question: Who is the third member of the third conservative party, and the second liberal party? ### Answer: SELECT third_member FROM table_name_30 WHERE third_party = "conservative" AND second_party = "liberal"
What was the highest election with third party member Sir Robert Price, BT, and first party member conservative?
CREATE TABLE table_name_97 (election INTEGER, third_member VARCHAR, first_party VARCHAR)
SELECT MAX(election) FROM table_name_97 WHERE third_member = "sir robert price, bt" AND first_party = "conservative"
### Context: CREATE TABLE table_name_97 (election INTEGER, third_member VARCHAR, first_party VARCHAR) ### Question: What was the highest election with third party member Sir Robert Price, BT, and first party member conservative? ### Answer: SELECT MAX(election) FROM table_name_97 WHERE third_member = "sir robert price, bt" AND first_party = "conservative"
What was the record of the team with head coach Steve Spurrier?
CREATE TABLE table_name_8 (record VARCHAR, head_coach VARCHAR)
SELECT record FROM table_name_8 WHERE head_coach = "steve spurrier"
### Context: CREATE TABLE table_name_8 (record VARCHAR, head_coach VARCHAR) ### Question: What was the record of the team with head coach Steve Spurrier? ### Answer: SELECT record FROM table_name_8 WHERE head_coach = "steve spurrier"
What was USC's record before the 1967 season?
CREATE TABLE table_name_34 (record VARCHAR, team VARCHAR, season VARCHAR)
SELECT record FROM table_name_34 WHERE team = "usc" AND season < 1967
### Context: CREATE TABLE table_name_34 (record VARCHAR, team VARCHAR, season VARCHAR) ### Question: What was USC's record before the 1967 season? ### Answer: SELECT record FROM table_name_34 WHERE team = "usc" AND season < 1967
What was the record during the 1973 season?
CREATE TABLE table_name_74 (record VARCHAR, season VARCHAR)
SELECT record FROM table_name_74 WHERE season = 1973
### Context: CREATE TABLE table_name_74 (record VARCHAR, season VARCHAR) ### Question: What was the record during the 1973 season? ### Answer: SELECT record FROM table_name_74 WHERE season = 1973
What is the average score for 6th place with a total of 165?
CREATE TABLE table_name_49 (average VARCHAR, place VARCHAR, total VARCHAR)
SELECT average FROM table_name_49 WHERE place = "6th" AND total = "165"
### Context: CREATE TABLE table_name_49 (average VARCHAR, place VARCHAR, total VARCHAR) ### Question: What is the average score for 6th place with a total of 165? ### Answer: SELECT average FROM table_name_49 WHERE place = "6th" AND total = "165"
What is the total with a 74 rank by average for 8th place?
CREATE TABLE table_name_70 (total VARCHAR, rank_by_average VARCHAR, place VARCHAR)
SELECT total FROM table_name_70 WHERE rank_by_average = "74" AND place = "8th"
### Context: CREATE TABLE table_name_70 (total VARCHAR, rank_by_average VARCHAR, place VARCHAR) ### Question: What is the total with a 74 rank by average for 8th place? ### Answer: SELECT total FROM table_name_70 WHERE rank_by_average = "74" AND place = "8th"
What was the place in season 8 with a rank by average at 139?
CREATE TABLE table_name_21 (place VARCHAR, season VARCHAR, rank_by_average VARCHAR)
SELECT place FROM table_name_21 WHERE season = "8" AND rank_by_average = "139"
### Context: CREATE TABLE table_name_21 (place VARCHAR, season VARCHAR, rank_by_average VARCHAR) ### Question: What was the place in season 8 with a rank by average at 139? ### Answer: SELECT place FROM table_name_21 WHERE season = "8" AND rank_by_average = "139"
What is the total for 3rd place on season 9?
CREATE TABLE table_name_41 (total VARCHAR, place VARCHAR, season VARCHAR)
SELECT total FROM table_name_41 WHERE place = "3rd" AND season = "9"
### Context: CREATE TABLE table_name_41 (total VARCHAR, place VARCHAR, season VARCHAR) ### Question: What is the total for 3rd place on season 9? ### Answer: SELECT total FROM table_name_41 WHERE place = "3rd" AND season = "9"
What rank by average has 1 dance on season 9?
CREATE TABLE table_name_34 (rank_by_average VARCHAR, number_of_dances VARCHAR, season VARCHAR)
SELECT rank_by_average FROM table_name_34 WHERE number_of_dances = "1" AND season = "9"
### Context: CREATE TABLE table_name_34 (rank_by_average VARCHAR, number_of_dances VARCHAR, season VARCHAR) ### Question: What rank by average has 1 dance on season 9? ### Answer: SELECT rank_by_average FROM table_name_34 WHERE number_of_dances = "1" AND season = "9"
What was the final round score for the player from the Milwaukee Bucks?
CREATE TABLE table_name_31 (final_round VARCHAR, team VARCHAR)
SELECT final_round FROM table_name_31 WHERE team = "milwaukee bucks"
### Context: CREATE TABLE table_name_31 (final_round VARCHAR, team VARCHAR) ### Question: What was the final round score for the player from the Milwaukee Bucks? ### Answer: SELECT final_round FROM table_name_31 WHERE team = "milwaukee bucks"
What position does the player with a first round score of 35.7 play?
CREATE TABLE table_name_21 (pos VARCHAR, first_round VARCHAR)
SELECT pos FROM table_name_21 WHERE first_round = "35.7"
### Context: CREATE TABLE table_name_21 (pos VARCHAR, first_round VARCHAR) ### Question: What position does the player with a first round score of 35.7 play? ### Answer: SELECT pos FROM table_name_21 WHERE first_round = "35.7"
What is the height of the player with a first round score of 44.1?
CREATE TABLE table_name_1 (height VARCHAR, first_round VARCHAR)
SELECT height FROM table_name_1 WHERE first_round = "44.1"
### Context: CREATE TABLE table_name_1 (height VARCHAR, first_round VARCHAR) ### Question: What is the height of the player with a first round score of 44.1? ### Answer: SELECT height FROM table_name_1 WHERE first_round = "44.1"
Which player weighs 187 pounds?
CREATE TABLE table_name_87 (player VARCHAR, weight VARCHAR)
SELECT player FROM table_name_87 WHERE weight = 187
### Context: CREATE TABLE table_name_87 (player VARCHAR, weight VARCHAR) ### Question: Which player weighs 187 pounds? ### Answer: SELECT player FROM table_name_87 WHERE weight = 187
Who was the illustrator in 1987?
CREATE TABLE table_name_79 (illustrator VARCHAR, year VARCHAR)
SELECT illustrator FROM table_name_79 WHERE year = 1987
### Context: CREATE TABLE table_name_79 (illustrator VARCHAR, year VARCHAR) ### Question: Who was the illustrator in 1987? ### Answer: SELECT illustrator FROM table_name_79 WHERE year = 1987
How many years was the title drop dead?
CREATE TABLE table_name_94 (year VARCHAR, title VARCHAR)
SELECT COUNT(year) FROM table_name_94 WHERE title = "drop dead"
### Context: CREATE TABLE table_name_94 (year VARCHAR, title VARCHAR) ### Question: How many years was the title drop dead? ### Answer: SELECT COUNT(year) FROM table_name_94 WHERE title = "drop dead"
Which publisher has a title of drop dead?
CREATE TABLE table_name_93 (publisher VARCHAR, title VARCHAR)
SELECT publisher FROM table_name_93 WHERE title = "drop dead"
### Context: CREATE TABLE table_name_93 (publisher VARCHAR, title VARCHAR) ### Question: Which publisher has a title of drop dead? ### Answer: SELECT publisher FROM table_name_93 WHERE title = "drop dead"
What Greek word means the same thing as the German word ebbe?
CREATE TABLE table_name_99 (greek VARCHAR, german VARCHAR)
SELECT greek FROM table_name_99 WHERE german = "ebbe"
### Context: CREATE TABLE table_name_99 (greek VARCHAR, german VARCHAR) ### Question: What Greek word means the same thing as the German word ebbe? ### Answer: SELECT greek FROM table_name_99 WHERE german = "ebbe"
What word in German translates into the Icelandic word efja?
CREATE TABLE table_name_10 (german VARCHAR, icelandic VARCHAR)
SELECT german FROM table_name_10 WHERE icelandic = "efja"
### Context: CREATE TABLE table_name_10 (german VARCHAR, icelandic VARCHAR) ### Question: What word in German translates into the Icelandic word efja? ### Answer: SELECT german FROM table_name_10 WHERE icelandic = "efja"
What is the Dutch translation of the Latin word navigo?
CREATE TABLE table_name_3 (dutch VARCHAR, latin VARCHAR)
SELECT dutch FROM table_name_3 WHERE latin = "navigo"
### Context: CREATE TABLE table_name_3 (dutch VARCHAR, latin VARCHAR) ### Question: What is the Dutch translation of the Latin word navigo? ### Answer: SELECT dutch FROM table_name_3 WHERE latin = "navigo"
What Dutch word has the same meaning as the Greek word πλέω (pléō)?
CREATE TABLE table_name_1 (dutch VARCHAR, greek VARCHAR)
SELECT dutch FROM table_name_1 WHERE greek = "πλέω (pléō)"
### Context: CREATE TABLE table_name_1 (dutch VARCHAR, greek VARCHAR) ### Question: What Dutch word has the same meaning as the Greek word πλέω (pléō)? ### Answer: SELECT dutch FROM table_name_1 WHERE greek = "πλέω (pléō)"
What English word has the same meaning as the German word "german"?
CREATE TABLE table_name_3 (english VARCHAR)
SELECT english FROM table_name_3 WHERE "german" = "german"
### Context: CREATE TABLE table_name_3 (english VARCHAR) ### Question: What English word has the same meaning as the German word "german"? ### Answer: SELECT english FROM table_name_3 WHERE "german" = "german"
How many wins are related to events of 7 and more than 2 top-10s?
CREATE TABLE table_name_95 (wins VARCHAR, events VARCHAR, top_10 VARCHAR)
SELECT COUNT(wins) FROM table_name_95 WHERE events = 7 AND top_10 > 2
### Context: CREATE TABLE table_name_95 (wins VARCHAR, events VARCHAR, top_10 VARCHAR) ### Question: How many wins are related to events of 7 and more than 2 top-10s? ### Answer: SELECT COUNT(wins) FROM table_name_95 WHERE events = 7 AND top_10 > 2
What is the most cuts made for events with 1 top-5, 2 top-10s, and more than 13 total events?
CREATE TABLE table_name_52 (cuts_made INTEGER, events VARCHAR, top_5 VARCHAR, top_10 VARCHAR)
SELECT MAX(cuts_made) FROM table_name_52 WHERE top_5 = 1 AND top_10 = 2 AND events > 13
### Context: CREATE TABLE table_name_52 (cuts_made INTEGER, events VARCHAR, top_5 VARCHAR, top_10 VARCHAR) ### Question: What is the most cuts made for events with 1 top-5, 2 top-10s, and more than 13 total events? ### Answer: SELECT MAX(cuts_made) FROM table_name_52 WHERE top_5 = 1 AND top_10 = 2 AND events > 13
Can you tell me the Name that has the Rank smaller than 71, and the Year larger than 2005, and the Out of 220?
CREATE TABLE table_name_22 (name VARCHAR, out_of VARCHAR, rank VARCHAR, year VARCHAR)
SELECT name FROM table_name_22 WHERE rank < 71 AND year > 2005 AND out_of = "220"
### Context: CREATE TABLE table_name_22 (name VARCHAR, out_of VARCHAR, rank VARCHAR, year VARCHAR) ### Question: Can you tell me the Name that has the Rank smaller than 71, and the Year larger than 2005, and the Out of 220? ### Answer: SELECT name FROM table_name_22 WHERE rank < 71 AND year > 2005 AND out_of = "220"
Can you tell me the lowest Year that has the Rank smaller the 132, and the Name of biodiversity richness?
CREATE TABLE table_name_99 (year INTEGER, rank VARCHAR, name VARCHAR)
SELECT MIN(year) FROM table_name_99 WHERE rank < 132 AND name = "biodiversity richness"
### Context: CREATE TABLE table_name_99 (year INTEGER, rank VARCHAR, name VARCHAR) ### Question: Can you tell me the lowest Year that has the Rank smaller the 132, and the Name of biodiversity richness? ### Answer: SELECT MIN(year) FROM table_name_99 WHERE rank < 132 AND name = "biodiversity richness"
Can you tell me the Source that has the Rank of 78?
CREATE TABLE table_name_86 (source VARCHAR, rank VARCHAR)
SELECT source FROM table_name_86 WHERE rank = 78
### Context: CREATE TABLE table_name_86 (source VARCHAR, rank VARCHAR) ### Question: Can you tell me the Source that has the Rank of 78? ### Answer: SELECT source FROM table_name_86 WHERE rank = 78
Can you tell me the Out of that has the Source of united nations, and the Rank larger than 47, and the Year smaller than 2003?
CREATE TABLE table_name_31 (out_of VARCHAR, year VARCHAR, source VARCHAR, rank VARCHAR)
SELECT out_of FROM table_name_31 WHERE source = "united nations" AND rank > 47 AND year < 2003
### Context: CREATE TABLE table_name_31 (out_of VARCHAR, year VARCHAR, source VARCHAR, rank VARCHAR) ### Question: Can you tell me the Out of that has the Source of united nations, and the Rank larger than 47, and the Year smaller than 2003? ### Answer: SELECT out_of FROM table_name_31 WHERE source = "united nations" AND rank > 47 AND year < 2003
Which Tournament has a 2004 of 1r?
CREATE TABLE table_name_59 (tournament VARCHAR)
SELECT tournament FROM table_name_59 WHERE 2004 = "1r"
### Context: CREATE TABLE table_name_59 (tournament VARCHAR) ### Question: Which Tournament has a 2004 of 1r? ### Answer: SELECT tournament FROM table_name_59 WHERE 2004 = "1r"
What is the 2005 that has a grand slam tournaments in 2007?
CREATE TABLE table_name_52 (Id VARCHAR)
SELECT 2005 FROM table_name_52 WHERE 2007 = "grand slam tournaments"
### Context: CREATE TABLE table_name_52 (Id VARCHAR) ### Question: What is the 2005 that has a grand slam tournaments in 2007? ### Answer: SELECT 2005 FROM table_name_52 WHERE 2007 = "grand slam tournaments"
What is the 2006 that has a 2r in 2004, and a 2r in 2005?
CREATE TABLE table_name_84 (Id VARCHAR)
SELECT 2006 FROM table_name_84 WHERE 2004 = "2r" AND 2005 = "2r"
### Context: CREATE TABLE table_name_84 (Id VARCHAR) ### Question: What is the 2006 that has a 2r in 2004, and a 2r in 2005? ### Answer: SELECT 2006 FROM table_name_84 WHERE 2004 = "2r" AND 2005 = "2r"
What is the 2007 that has a grand slam tournaments in 2006.
CREATE TABLE table_name_32 (Id VARCHAR)
SELECT 2007 FROM table_name_32 WHERE 2006 = "grand slam tournaments"
### Context: CREATE TABLE table_name_32 (Id VARCHAR) ### Question: What is the 2007 that has a grand slam tournaments in 2006. ### Answer: SELECT 2007 FROM table_name_32 WHERE 2006 = "grand slam tournaments"
What is the 2004 that has a of grand slam tournaments in2006 ?
CREATE TABLE table_name_82 (Id VARCHAR)
SELECT 2004 FROM table_name_82 WHERE 2006 = "grand slam tournaments"
### Context: CREATE TABLE table_name_82 (Id VARCHAR) ### Question: What is the 2004 that has a of grand slam tournaments in2006 ? ### Answer: SELECT 2004 FROM table_name_82 WHERE 2006 = "grand slam tournaments"
What is 2006 has a 2007 of 3r?
CREATE TABLE table_name_48 (Id VARCHAR)
SELECT 2006 FROM table_name_48 WHERE 2007 = "3r"
### Context: CREATE TABLE table_name_48 (Id VARCHAR) ### Question: What is 2006 has a 2007 of 3r? ### Answer: SELECT 2006 FROM table_name_48 WHERE 2007 = "3r"
What was the number of passengers going to MCO with a rank larger than 9?
CREATE TABLE table_name_54 (passengers VARCHAR, airport VARCHAR, rank VARCHAR)
SELECT COUNT(passengers) FROM table_name_54 WHERE airport = "mco" AND rank > 9
### Context: CREATE TABLE table_name_54 (passengers VARCHAR, airport VARCHAR, rank VARCHAR) ### Question: What was the number of passengers going to MCO with a rank larger than 9? ### Answer: SELECT COUNT(passengers) FROM table_name_54 WHERE airport = "mco" AND rank > 9
What city had a rank before 3 and primary carrier JetBlue Airways?
CREATE TABLE table_name_78 (city VARCHAR, rank VARCHAR, carriers VARCHAR)
SELECT city FROM table_name_78 WHERE rank < 3 AND carriers = "jetblue airways"
### Context: CREATE TABLE table_name_78 (city VARCHAR, rank VARCHAR, carriers VARCHAR) ### Question: What city had a rank before 3 and primary carrier JetBlue Airways? ### Answer: SELECT city FROM table_name_78 WHERE rank < 3 AND carriers = "jetblue airways"
What was launched and laid down in February 1819?
CREATE TABLE table_name_14 (launched VARCHAR, laid_down VARCHAR)
SELECT launched FROM table_name_14 WHERE laid_down = "february 1819"
### Context: CREATE TABLE table_name_14 (launched VARCHAR, laid_down VARCHAR) ### Question: What was launched and laid down in February 1819? ### Answer: SELECT launched FROM table_name_14 WHERE laid_down = "february 1819"
What is the total number of positions with less than 10 points, more than 7 qualifying, ret value in Race 1, and Jonathan Grant driving?
CREATE TABLE table_name_51 (pos VARCHAR, driver VARCHAR, race_1 VARCHAR, points VARCHAR, qualifying VARCHAR)
SELECT COUNT(pos) FROM table_name_51 WHERE points < 10 AND qualifying > 7 AND race_1 = "ret" AND driver = "jonathan grant"
### Context: CREATE TABLE table_name_51 (pos VARCHAR, driver VARCHAR, race_1 VARCHAR, points VARCHAR, qualifying VARCHAR) ### Question: What is the total number of positions with less than 10 points, more than 7 qualifying, ret value in Race 1, and Jonathan Grant driving? ### Answer: SELECT COUNT(pos) FROM table_name_51 WHERE points < 10 AND qualifying > 7 AND race_1 = "ret" AND driver = "jonathan grant"
What is Date, when Set 2 is 25-13?
CREATE TABLE table_name_29 (date VARCHAR, set_2 VARCHAR)
SELECT date FROM table_name_29 WHERE set_2 = "25-13"
### Context: CREATE TABLE table_name_29 (date VARCHAR, set_2 VARCHAR) ### Question: What is Date, when Set 2 is 25-13? ### Answer: SELECT date FROM table_name_29 WHERE set_2 = "25-13"
What is Total, when Set 5 is NA, and when Set 2 is 25-13?
CREATE TABLE table_name_62 (total VARCHAR, set_5 VARCHAR, set_2 VARCHAR)
SELECT total FROM table_name_62 WHERE set_5 = "na" AND set_2 = "25-13"
### Context: CREATE TABLE table_name_62 (total VARCHAR, set_5 VARCHAR, set_2 VARCHAR) ### Question: What is Total, when Set 5 is NA, and when Set 2 is 25-13? ### Answer: SELECT total FROM table_name_62 WHERE set_5 = "na" AND set_2 = "25-13"
What is Score, when Date is Jun 16, and when Set 4 is 25-20?
CREATE TABLE table_name_1 (score VARCHAR, date VARCHAR, set_4 VARCHAR)
SELECT score FROM table_name_1 WHERE date = "jun 16" AND set_4 = "25-20"
### Context: CREATE TABLE table_name_1 (score VARCHAR, date VARCHAR, set_4 VARCHAR) ### Question: What is Score, when Date is Jun 16, and when Set 4 is 25-20? ### Answer: SELECT score FROM table_name_1 WHERE date = "jun 16" AND set_4 = "25-20"
What is Set 2, when Score is 3-0, when Date is May 11, and when Set 1 is 25-20?
CREATE TABLE table_name_73 (set_2 VARCHAR, set_1 VARCHAR, score VARCHAR, date VARCHAR)
SELECT set_2 FROM table_name_73 WHERE score = "3-0" AND date = "may 11" AND set_1 = "25-20"
### Context: CREATE TABLE table_name_73 (set_2 VARCHAR, set_1 VARCHAR, score VARCHAR, date VARCHAR) ### Question: What is Set 2, when Score is 3-0, when Date is May 11, and when Set 1 is 25-20? ### Answer: SELECT set_2 FROM table_name_73 WHERE score = "3-0" AND date = "may 11" AND set_1 = "25-20"
What is Set 4, when Set 1 is 25-18, and when Date is Jun 2?
CREATE TABLE table_name_37 (set_4 VARCHAR, set_1 VARCHAR, date VARCHAR)
SELECT set_4 FROM table_name_37 WHERE set_1 = "25-18" AND date = "jun 2"
### Context: CREATE TABLE table_name_37 (set_4 VARCHAR, set_1 VARCHAR, date VARCHAR) ### Question: What is Set 4, when Set 1 is 25-18, and when Date is Jun 2? ### Answer: SELECT set_4 FROM table_name_37 WHERE set_1 = "25-18" AND date = "jun 2"
What is the Team with a Score that is w 101–97 (2ot)?
CREATE TABLE table_name_17 (team VARCHAR, score VARCHAR)
SELECT team FROM table_name_17 WHERE score = "w 101–97 (2ot)"
### Context: CREATE TABLE table_name_17 (team VARCHAR, score VARCHAR) ### Question: What is the Team with a Score that is w 101–97 (2ot)? ### Answer: SELECT team FROM table_name_17 WHERE score = "w 101–97 (2ot)"
What is the High points with a Score that is l 64–94 (ot)?
CREATE TABLE table_name_73 (high_points VARCHAR, score VARCHAR)
SELECT high_points FROM table_name_73 WHERE score = "l 64–94 (ot)"
### Context: CREATE TABLE table_name_73 (high_points VARCHAR, score VARCHAR) ### Question: What is the High points with a Score that is l 64–94 (ot)? ### Answer: SELECT high_points FROM table_name_73 WHERE score = "l 64–94 (ot)"
What is the largest played when the drawn is less than 1?
CREATE TABLE table_name_62 (played INTEGER, drawn INTEGER)
SELECT MAX(played) FROM table_name_62 WHERE drawn < 1
### Context: CREATE TABLE table_name_62 (played INTEGER, drawn INTEGER) ### Question: What is the largest played when the drawn is less than 1? ### Answer: SELECT MAX(played) FROM table_name_62 WHERE drawn < 1
What points average has a played greater than 20?
CREATE TABLE table_name_31 (points INTEGER, played INTEGER)
SELECT AVG(points) FROM table_name_31 WHERE played > 20
### Context: CREATE TABLE table_name_31 (points INTEGER, played INTEGER) ### Question: What points average has a played greater than 20? ### Answer: SELECT AVG(points) FROM table_name_31 WHERE played > 20
What is the smallest drawn with a position bigger than 10 and a played less than 20?
CREATE TABLE table_name_51 (drawn INTEGER, position VARCHAR, played VARCHAR)
SELECT MIN(drawn) FROM table_name_51 WHERE position > 10 AND played < 20
### Context: CREATE TABLE table_name_51 (drawn INTEGER, position VARCHAR, played VARCHAR) ### Question: What is the smallest drawn with a position bigger than 10 and a played less than 20? ### Answer: SELECT MIN(drawn) FROM table_name_51 WHERE position > 10 AND played < 20