text
stringlengths
114
1.06k
### question: what is the score when the partner is florencia labat, the surface is clay, the opponents is laura golarsa ann grossman? ### answer: SELECT score FROM table_name_43 WHERE partner = "florencia labat" AND surface = "clay" AND opponents = "laura golarsa ann grossman" ### context: CREATE TABLE table_name_43 (score VARCHAR, opponents VARCHAR, partner VARCHAR, surface VARCHAR)
### question: who is the opponents when the surface is clay and the date is 12 july 1992? ### answer: SELECT opponents FROM table_name_93 WHERE surface = "clay" AND date = "12 july 1992" ### context: CREATE TABLE table_name_93 (opponents VARCHAR, surface VARCHAR, date VARCHAR)
### question: what is the tournament when the outcome is winner and the opponents is kerry-anne guse corina morariu? ### answer: SELECT tournament FROM table_name_39 WHERE outcome = "winner" AND opponents = "kerry-anne guse corina morariu" ### context: CREATE TABLE table_name_39 (tournament VARCHAR, outcome VARCHAR, opponents VARCHAR)
### question: what is the score when the partner is alexandra fusai? ### answer: SELECT score FROM table_name_67 WHERE partner = "alexandra fusai" ### context: CREATE TABLE table_name_67 (score VARCHAR, partner VARCHAR)
### question: what is the surface when the opponents are louise field nathalie herreman? ### answer: SELECT surface FROM table_name_13 WHERE opponents = "louise field nathalie herreman" ### context: CREATE TABLE table_name_13 (surface VARCHAR, opponents VARCHAR)
### question: what is the score when the surface is clay and the tournament is san marino? ### answer: SELECT score FROM table_name_18 WHERE surface = "clay" AND tournament = "san marino" ### context: CREATE TABLE table_name_18 (score VARCHAR, surface VARCHAR, tournament VARCHAR)
### question: If the manufacturer is Yamaha, and the laps driven were under 32, what's the average of all grid sizes with that criteria? ### answer: SELECT AVG(grid) FROM table_name_76 WHERE laps < 32 AND manufacturer = "yamaha" ### context: CREATE TABLE table_name_76 (grid INTEGER, laps VARCHAR, manufacturer VARCHAR)
### question: What's the smallest amount of laps that suzuki ran with a grid value of 8? ### answer: SELECT MIN(laps) FROM table_name_26 WHERE manufacturer = "suzuki" AND grid = 8 ### context: CREATE TABLE table_name_26 (laps INTEGER, manufacturer VARCHAR, grid VARCHAR)
### question: Who were the opponents when the score of the game was 101-105 and the H/A/N was H? ### answer: SELECT opponent FROM table_name_68 WHERE h_a_n = "h" AND score = "101-105" ### context: CREATE TABLE table_name_68 (opponent VARCHAR, h_a_n VARCHAR, score VARCHAR)
### question: What is the score of the game against the baltimore bullets on March 14? ### answer: SELECT score FROM table_name_4 WHERE opponent = "baltimore bullets" AND date = "march 14" ### context: CREATE TABLE table_name_4 (score VARCHAR, opponent VARCHAR, date VARCHAR)
### question: Who were the opponents when the score was 122-135 and the H/A/N was H? ### answer: SELECT opponent FROM table_name_87 WHERE h_a_n = "h" AND score = "122-135" ### context: CREATE TABLE table_name_87 (opponent VARCHAR, h_a_n VARCHAR, score VARCHAR)
### question: What is the score of the game where the record was 22-55? ### answer: SELECT score FROM table_name_7 WHERE record = "22-55" ### context: CREATE TABLE table_name_7 (score VARCHAR, record VARCHAR)
### question: What is the average games that were drawn with ERSC Amberg as name and less than 14 points? ### answer: SELECT AVG(drawn) FROM table_name_32 WHERE name = "ersc amberg" AND points < 14 ### context: CREATE TABLE table_name_32 (drawn INTEGER, name VARCHAR, points VARCHAR)
### question: What is the total position with a drawn of 0 and greater than 22 points and a greater than 14 played? ### answer: SELECT COUNT(position) FROM table_name_17 WHERE drawn = 0 AND points > 22 AND played > 14 ### context: CREATE TABLE table_name_17 (position VARCHAR, played VARCHAR, drawn VARCHAR, points VARCHAR)
### question: Which Song has a Weeks at number one larger than 2, and an Issue date(s) of 17 april - 8 may? ### answer: SELECT song FROM table_name_52 WHERE weeks_at_number_one > 2 AND issue_date_s_ = "17 april - 8 may" ### context: CREATE TABLE table_name_52 (song VARCHAR, weeks_at_number_one VARCHAR, issue_date_s_ VARCHAR)
### question: Which Song has an Issue date(s) of 29 may - 26 june? ### answer: SELECT song FROM table_name_17 WHERE issue_date_s_ = "29 may - 26 june" ### context: CREATE TABLE table_name_17 (song VARCHAR, issue_date_s_ VARCHAR)
### question: what is the report when the home team is new zealand breakers? ### answer: SELECT report FROM table_name_31 WHERE home_team = "new zealand breakers" ### context: CREATE TABLE table_name_31 (report VARCHAR, home_team VARCHAR)
### question: what is the score when the home team is cairns taipans? ### answer: SELECT score FROM table_name_23 WHERE home_team = "cairns taipans" ### context: CREATE TABLE table_name_23 (score VARCHAR, home_team VARCHAR)
### question: Who is the away team when the venue is cairns convention centre? ### answer: SELECT away_team FROM table_name_45 WHERE venue = "cairns convention centre" ### context: CREATE TABLE table_name_45 (away_team VARCHAR, venue VARCHAR)
### question: who is the away team when the home team is sydney spirit? ### answer: SELECT away_team FROM table_name_28 WHERE home_team = "sydney spirit" ### context: CREATE TABLE table_name_28 (away_team VARCHAR, home_team VARCHAR)
### question: what is the box score when the home team is melbourne tigers? ### answer: SELECT Box AS score FROM table_name_3 WHERE home_team = "melbourne tigers" ### context: CREATE TABLE table_name_3 (Box VARCHAR, home_team VARCHAR)
### question: who is the away team on 21 september? ### answer: SELECT away_team FROM table_name_42 WHERE date = "21 september" ### context: CREATE TABLE table_name_42 (away_team VARCHAR, date VARCHAR)
### question: When Ernie Els placed t2, what was his To par? ### answer: SELECT to_par FROM table_name_3 WHERE place = "t2" AND player = "ernie els" ### context: CREATE TABLE table_name_3 (to_par VARCHAR, place VARCHAR, player VARCHAR)
### question: Where did Jay Haas place? ### answer: SELECT place FROM table_name_62 WHERE player = "jay haas" ### context: CREATE TABLE table_name_62 (place VARCHAR, player VARCHAR)
### question: Where did Jim Furyk place? ### answer: SELECT place FROM table_name_16 WHERE player = "jim furyk" ### context: CREATE TABLE table_name_16 (place VARCHAR, player VARCHAR)
### question: What was Jim Furyk's score? ### answer: SELECT score FROM table_name_23 WHERE player = "jim furyk" ### context: CREATE TABLE table_name_23 (score VARCHAR, player VARCHAR)
### question: What was the score for the To par of +1? ### answer: SELECT score FROM table_name_53 WHERE to_par = "+1" ### context: CREATE TABLE table_name_53 (score VARCHAR, to_par VARCHAR)
### question: Who placed in t5 and scored 73-69-68=210? ### answer: SELECT player FROM table_name_76 WHERE place = "t5" AND score = 73 - 69 - 68 = 210 ### context: CREATE TABLE table_name_76 (player VARCHAR, place VARCHAR, score VARCHAR)
### question: Who was the opponent when the record was 11-6-2? ### answer: SELECT opponent FROM table_name_25 WHERE record = "11-6-2" ### context: CREATE TABLE table_name_25 (opponent VARCHAR, record VARCHAR)
### question: What is the home team of the match with an attendance greater than 202? ### answer: SELECT home_team FROM table_name_22 WHERE attendance > 202 ### context: CREATE TABLE table_name_22 (home_team VARCHAR, attendance INTEGER)
### question: What is the average attendance of the match with arlesey town as the home team? ### answer: SELECT AVG(attendance) FROM table_name_68 WHERE home_team = "arlesey town" ### context: CREATE TABLE table_name_68 (attendance INTEGER, home_team VARCHAR)
### question: What was the score of the game against the phoenix suns? ### answer: SELECT score FROM table_name_18 WHERE opponent = "phoenix suns" ### context: CREATE TABLE table_name_18 (score VARCHAR, opponent VARCHAR)
### question: What was the opponent of the game when the reocrd was 0-12? ### answer: SELECT opponent FROM table_name_94 WHERE record = "0-12" ### context: CREATE TABLE table_name_94 (opponent VARCHAR, record VARCHAR)
### question: How many years had a location at Forest Hills and a score of 6–3, 6–3 for John McEnroe? ### answer: SELECT COUNT(year) FROM table_name_42 WHERE location = "forest hills" AND runner_up = "john mcenroe" AND score = "6–3, 6–3" ### context: CREATE TABLE table_name_42 (year VARCHAR, score VARCHAR, location VARCHAR, runner_up VARCHAR)
### question: Who is the champion with a score of 7–6, 6–0? ### answer: SELECT champion FROM table_name_47 WHERE score = "7–6, 6–0" ### context: CREATE TABLE table_name_47 (champion VARCHAR, score VARCHAR)
### question: Who is the runner-up in 1990? ### answer: SELECT runner_up FROM table_name_59 WHERE year = 1990 ### context: CREATE TABLE table_name_59 (runner_up VARCHAR, year VARCHAR)
### question: When was the earliest year that Guillermo Vilas was the runner-up? ### answer: SELECT MIN(year) FROM table_name_9 WHERE runner_up = "guillermo vilas" ### context: CREATE TABLE table_name_9 (year INTEGER, runner_up VARCHAR)
### question: What source has a race winner of ben adriaenssen / ben van den bogaart, and the gp winner of ben adriaenssen / ben van den bogaart, for the date of 1 april? ### answer: SELECT source FROM table_name_8 WHERE race_winners = "ben adriaenssen / ben van den bogaart" AND gp_winner = "ben adriaenssen / ben van den bogaart" AND date = "1 april" ### context: CREATE TABLE table_name_8 (source VARCHAR, date VARCHAR, race_winners VARCHAR, gp_winner VARCHAR)
### question: What is the GP winner for the Race winners valentin giraud / nicolas musset, and a place genk? ### answer: SELECT gp_winner FROM table_name_2 WHERE race_winners = "valentin giraud / nicolas musset" AND place = "genk" ### context: CREATE TABLE table_name_2 (gp_winner VARCHAR, race_winners VARCHAR, place VARCHAR)
### question: What is the date for a source of result and a place of iffendic? ### answer: SELECT date FROM table_name_60 WHERE source = "result" AND place = "iffendic" ### context: CREATE TABLE table_name_60 (date VARCHAR, source VARCHAR, place VARCHAR)
### question: What date has a place of chernivtsi, and a race winners of etienne bax / kaspars stupelis? What ### answer: SELECT date FROM table_name_29 WHERE place = "chernivtsi" AND race_winners = "etienne bax / kaspars stupelis" ### context: CREATE TABLE table_name_29 (date VARCHAR, place VARCHAR, race_winners VARCHAR)
### question: What is the GP winner with a place of genk, with race winners ben adriaenssen / ben van den bogaart? ### answer: SELECT gp_winner FROM table_name_30 WHERE place = "genk" AND race_winners = "ben adriaenssen / ben van den bogaart" ### context: CREATE TABLE table_name_30 (gp_winner VARCHAR, place VARCHAR, race_winners VARCHAR)
### question: What is the race winners for the date of 23 june? ### answer: SELECT race_winners FROM table_name_77 WHERE date = "23 june" ### context: CREATE TABLE table_name_77 (race_winners VARCHAR, date VARCHAR)
### question: What date was the opponent in the final Barbara Paulus? ### answer: SELECT date FROM table_name_23 WHERE opponent_in_the_final = "barbara paulus" ### context: CREATE TABLE table_name_23 (date VARCHAR, opponent_in_the_final VARCHAR)
### question: What was the surface that Laura Golarsa and her opponent played on in the final? ### answer: SELECT surface FROM table_name_67 WHERE opponent_in_the_final = "laura golarsa" ### context: CREATE TABLE table_name_67 (surface VARCHAR, opponent_in_the_final VARCHAR)
### question: What was the score for the opponent against Katerina Maleeva in the final? ### answer: SELECT score FROM table_name_83 WHERE opponent_in_the_final = "katerina maleeva" ### context: CREATE TABLE table_name_83 (score VARCHAR, opponent_in_the_final VARCHAR)
### question: What's the name that had a moving to Anorthosis Famagusta and a transfer window of winter? ### answer: SELECT name FROM table_name_6 WHERE transfer_window = "winter" AND moving_to = "anorthosis famagusta" ### context: CREATE TABLE table_name_6 (name VARCHAR, transfer_window VARCHAR, moving_to VARCHAR)
### question: What is the Nat with a mutual consent loan return and has a free transfer fee? ### answer: SELECT nat FROM table_name_12 WHERE transfer_fee = "free" AND type = "mutual consent loan return" ### context: CREATE TABLE table_name_12 (nat VARCHAR, transfer_fee VARCHAR, type VARCHAR)
### question: What is the type of POR? ### answer: SELECT type FROM table_name_10 WHERE nat = "por" ### context: CREATE TABLE table_name_10 (type VARCHAR, nat VARCHAR)
### question: What's the name of MKD? ### answer: SELECT name FROM table_name_20 WHERE nat = "mkd" ### context: CREATE TABLE table_name_20 (name VARCHAR, nat VARCHAR)
### question: What is the sum of the attendance on November 24? ### answer: SELECT SUM(attendance) FROM table_name_58 WHERE date = "november 24" ### context: CREATE TABLE table_name_58 (attendance INTEGER, date VARCHAR)
### question: What team did the Flames play against when 526 people attended the game? ### answer: SELECT opponent FROM table_name_11 WHERE attendance = 526 ### context: CREATE TABLE table_name_11 (opponent VARCHAR, attendance VARCHAR)
### question: Rick Plant was the man of the match in what competition? ### answer: SELECT competition FROM table_name_39 WHERE man_of_the_match = "rick plant" ### context: CREATE TABLE table_name_39 (competition VARCHAR, man_of_the_match VARCHAR)
### question: Who did the Flames play against when Stephen Lee was the man of the match? ### answer: SELECT opponent FROM table_name_6 WHERE man_of_the_match = "stephen lee" ### context: CREATE TABLE table_name_6 (opponent VARCHAR, man_of_the_match VARCHAR)
### question: How many people attended the game when the game was won 4-2? ### answer: SELECT COUNT(attendance) FROM table_name_44 WHERE result = "won 4-2" ### context: CREATE TABLE table_name_44 (attendance VARCHAR, result VARCHAR)
### question: For what competition was the venue away the n/a the man of the match? ### answer: SELECT competition FROM table_name_62 WHERE venue = "away" AND man_of_the_match = "n/a" ### context: CREATE TABLE table_name_62 (competition VARCHAR, venue VARCHAR, man_of_the_match VARCHAR)
### question: What is BP's lowest sales? ### answer: SELECT MIN(sales__billion_) AS $_ FROM table_name_73 WHERE company = "bp" ### context: CREATE TABLE table_name_73 (sales__billion_ INTEGER, company VARCHAR)
### question: What was the final game result that was played on December 2? ### answer: SELECT result FROM table_name_80 WHERE date = "december 2" ### context: CREATE TABLE table_name_80 (result VARCHAR, date VARCHAR)
### question: What week was the game played at Rich Stadium? ### answer: SELECT week FROM table_name_94 WHERE game_site = "rich stadium" ### context: CREATE TABLE table_name_94 (week VARCHAR, game_site VARCHAR)
### question: What is the sum of FA Cup goals when there are 19 league goals? ### answer: SELECT SUM(fa_cup_goals) FROM table_name_5 WHERE league_goals = "19" ### context: CREATE TABLE table_name_5 (fa_cup_goals INTEGER, league_goals VARCHAR)
### question: Which club has 16 league goals for a total of 20? ### answer: SELECT club FROM table_name_2 WHERE league_goals = "16" AND total = 20 ### context: CREATE TABLE table_name_2 (club VARCHAR, league_goals VARCHAR, total VARCHAR)
### question: How many League Cup goals correspond to 3 FA Cup Goals and a total over 15 for Chesterfield? ### answer: SELECT league_cup_goals FROM table_name_29 WHERE total > 15 AND fa_cup_goals = 3 AND club = "chesterfield" ### context: CREATE TABLE table_name_29 (league_cup_goals VARCHAR, club VARCHAR, total VARCHAR, fa_cup_goals VARCHAR)
### question: What was the result of the april 6, 2002 game against the greensboro prowlers? ### answer: SELECT result FROM table_name_89 WHERE opponent = "greensboro prowlers" AND date = "april 6, 2002" ### context: CREATE TABLE table_name_89 (result VARCHAR, opponent VARCHAR, date VARCHAR)
### question: Which Location has Floors smaller than 27, and a Building of 150 elgin? ### answer: SELECT location FROM table_name_71 WHERE floors < 27 AND building = "150 elgin" ### context: CREATE TABLE table_name_71 (location VARCHAR, floors VARCHAR, building VARCHAR)
### question: Which Status has a Building of the rhombus? ### answer: SELECT status FROM table_name_25 WHERE building = "the rhombus" ### context: CREATE TABLE table_name_25 (status VARCHAR, building VARCHAR)
### question: How many floors are in little Italy? ### answer: SELECT COUNT(floors) FROM table_name_42 WHERE location = "little italy" ### context: CREATE TABLE table_name_42 (floors VARCHAR, location VARCHAR)
### question: What is Country, when Class is "15 meters", and when Qualifying Grand Prix is "Soaring Grand Prix Of United Kingdom"? ### answer: SELECT country FROM table_name_43 WHERE class = "15 meters" AND qualifying_grand_prix = "soaring grand prix of united kingdom" ### context: CREATE TABLE table_name_43 (country VARCHAR, class VARCHAR, qualifying_grand_prix VARCHAR)
### question: What is Class, when Dates is "22 April - 3 May 2009"? ### answer: SELECT class FROM table_name_20 WHERE dates = "22 april - 3 may 2009" ### context: CREATE TABLE table_name_20 (class VARCHAR, dates VARCHAR)
### question: What is Country, when Class is "club"? ### answer: SELECT country FROM table_name_51 WHERE class = "club" ### context: CREATE TABLE table_name_51 (country VARCHAR, class VARCHAR)
### question: What is Country, when Place is "Torino"? ### answer: SELECT country FROM table_name_72 WHERE place = "torino" ### context: CREATE TABLE table_name_72 (country VARCHAR, place VARCHAR)
### question: WHAT IS THE AVERAGE SQUAD NUMBER WITH MARTIN SMITH, AND LEAGUE GOALS LESS THAN 17? ### answer: SELECT AVG(squad_no) FROM table_name_8 WHERE name = "martin smith" AND league_goals < 17 ### context: CREATE TABLE table_name_8 (squad_no INTEGER, name VARCHAR, league_goals VARCHAR)
### question: What is No. 5, when No. 9 is Michael, and when Region (Year) is New Hampshire (2010)? ### answer: SELECT no_5 FROM table_name_16 WHERE no_9 = "michael" AND region__year_ = "new hampshire (2010)" ### context: CREATE TABLE table_name_16 (no_5 VARCHAR, no_9 VARCHAR, region__year_ VARCHAR)
### question: What is Region (Year), when No. 7 is William, and when No. 2 is Alexander? ### answer: SELECT region__year_ FROM table_name_51 WHERE no_7 = "william" AND no_2 = "alexander" ### context: CREATE TABLE table_name_51 (region__year_ VARCHAR, no_7 VARCHAR, no_2 VARCHAR)
### question: What is No. 10, when No. 1 is Noah, and when No. 9 is Carter? ### answer: SELECT no_10 FROM table_name_45 WHERE no_1 = "noah" AND no_9 = "carter" ### context: CREATE TABLE table_name_45 (no_10 VARCHAR, no_1 VARCHAR, no_9 VARCHAR)
### question: What is No. 7, when Region (Year) is Arizona (2010)? ### answer: SELECT no_7 FROM table_name_85 WHERE region__year_ = "arizona (2010)" ### context: CREATE TABLE table_name_85 (no_7 VARCHAR, region__year_ VARCHAR)
### question: What is No. 1, when Region (Year) is Mississippi (2010)? ### answer: SELECT no_1 FROM table_name_25 WHERE region__year_ = "mississippi (2010)" ### context: CREATE TABLE table_name_25 (no_1 VARCHAR, region__year_ VARCHAR)
### question: What is No. 8, when No. 10 is Hunter? ### answer: SELECT no_8 FROM table_name_76 WHERE no_10 = "hunter" ### context: CREATE TABLE table_name_76 (no_8 VARCHAR, no_10 VARCHAR)
### question: How much did Larry Nelson win? ### answer: SELECT money___$__ FROM table_name_73 WHERE player = "larry nelson" ### context: CREATE TABLE table_name_73 (money___$__ VARCHAR, player VARCHAR)
### question: What is Tournament, when Date is "Sep 12, 1976"? ### answer: SELECT tournament FROM table_name_96 WHERE date = "sep 12, 1976" ### context: CREATE TABLE table_name_96 (tournament VARCHAR, date VARCHAR)
### question: What is Tournament, when Date is "Sep 25, 1977"? ### answer: SELECT tournament FROM table_name_61 WHERE date = "sep 25, 1977" ### context: CREATE TABLE table_name_61 (tournament VARCHAR, date VARCHAR)
### question: What is Margin of Victory, when Tournament is "Women's Kemper Open"? ### answer: SELECT margin_of_victory FROM table_name_93 WHERE tournament = "women's kemper open" ### context: CREATE TABLE table_name_93 (margin_of_victory VARCHAR, tournament VARCHAR)
### question: What is the No. 8 of the person with a No. 4 of Noah? ### answer: SELECT no_8 FROM table_name_32 WHERE no_4 = "noah" ### context: CREATE TABLE table_name_32 (no_8 VARCHAR, no_4 VARCHAR)
### question: What is the No. 8 of the person with a No. 4 of Matthew and a No. 7 of Anthony? ### answer: SELECT no_8 FROM table_name_29 WHERE no_4 = "matthew" AND no_7 = "anthony" ### context: CREATE TABLE table_name_29 (no_8 VARCHAR, no_4 VARCHAR, no_7 VARCHAR)
### question: What is the No. 1 of the person with a No. 2 of John? ### answer: SELECT no_1 FROM table_name_26 WHERE no_2 = "john" ### context: CREATE TABLE table_name_26 (no_1 VARCHAR, no_2 VARCHAR)
### question: What is the No. 6 of the person with a No. 10 of Joshua and a No. 8 of Andrew? ### answer: SELECT no_6 FROM table_name_56 WHERE no_10 = "joshua" AND no_8 = "andrew" ### context: CREATE TABLE table_name_56 (no_6 VARCHAR, no_10 VARCHAR, no_8 VARCHAR)
### question: What is the No. 2 of the person with a No. 5 of Ethan and NO. 7 of Jackson? ### answer: SELECT no_2 FROM table_name_98 WHERE no_4 = "ethan" AND no_7 = "jackson" ### context: CREATE TABLE table_name_98 (no_2 VARCHAR, no_4 VARCHAR, no_7 VARCHAR)
### question: What is the No 1 from the Maryland (2008) Region (year)? ### answer: SELECT no_1 FROM table_name_27 WHERE region__year_ = "maryland (2008)" ### context: CREATE TABLE table_name_27 (no_1 VARCHAR, region__year_ VARCHAR)
### question: What was the draw of Maggie Toal? ### answer: SELECT AVG(draw) FROM table_name_74 WHERE artist = "maggie toal" ### context: CREATE TABLE table_name_74 (draw INTEGER, artist VARCHAR)
### question: What is the highest point total that placed 3rd and has a draw larger than 5? ### answer: SELECT MAX(points) FROM table_name_84 WHERE place = "3rd" AND draw > 5 ### context: CREATE TABLE table_name_84 (points INTEGER, place VARCHAR, draw VARCHAR)
### question: Who won the gold in 1958? ### answer: SELECT gold FROM table_name_18 WHERE year = "1958" ### context: CREATE TABLE table_name_18 (gold VARCHAR, year VARCHAR)
### question: What was the host country when the silver was [[|]] (2) and bronze is czechoslovakia (3)? ### answer: SELECT host_country___countries FROM table_name_42 WHERE silver = "[[|]] (2)" AND bronze = "czechoslovakia (3)" ### context: CREATE TABLE table_name_42 (host_country___countries VARCHAR, silver VARCHAR, bronze VARCHAR)
### question: Who was the host country in 2007? ### answer: SELECT host_country___countries FROM table_name_3 WHERE year = "2007" ### context: CREATE TABLE table_name_3 (host_country___countries VARCHAR, year VARCHAR)
### question: Who was the host country when bronze is [[|]] (1) and host city is Krynica? ### answer: SELECT host_country___countries FROM table_name_45 WHERE bronze = "[[|]] (1)" AND host_city___cities = "krynica" ### context: CREATE TABLE table_name_45 (host_country___countries VARCHAR, bronze VARCHAR, host_city___cities VARCHAR)
### question: What is the result for Boston's road team in game 4? ### answer: SELECT result FROM table_name_73 WHERE road_team = "boston" AND game = "game 4" ### context: CREATE TABLE table_name_73 (result VARCHAR, road_team VARCHAR, game VARCHAR)
### question: Which road team has a result of 117-114? ### answer: SELECT road_team FROM table_name_61 WHERE result = "117-114" ### context: CREATE TABLE table_name_61 (road_team VARCHAR, result VARCHAR)
### question: What is the road team playing against Boston on April 16? ### answer: SELECT road_team FROM table_name_94 WHERE home_team = "boston" AND date = "april 16" ### context: CREATE TABLE table_name_94 (road_team VARCHAR, home_team VARCHAR, date VARCHAR)
### question: Which home team is on April 21? ### answer: SELECT home_team FROM table_name_64 WHERE date = "april 21" ### context: CREATE TABLE table_name_64 (home_team VARCHAR, date VARCHAR)
### question: Which game has a result of 113-106? ### answer: SELECT game FROM table_name_29 WHERE result = "113-106" ### context: CREATE TABLE table_name_29 (game VARCHAR, result VARCHAR)
### question: Which home team played against Los Angeles in game 1? ### answer: SELECT home_team FROM table_name_26 WHERE road_team = "los angeles" AND game = "game 1" ### context: CREATE TABLE table_name_26 (home_team VARCHAR, road_team VARCHAR, game VARCHAR)
### question: What percentage of other candidates did the county which voted 52.1% for Kerry vote for? ### answer: SELECT MAX(others_number) FROM table_name_69 WHERE kerry_percentage = "52.1%" ### context: CREATE TABLE table_name_69 (others_number INTEGER, kerry_percentage VARCHAR)