text
stringlengths
114
1.06k
### question: What is the biggest clean and jerk number when snatch was less than 150 and the bodyweight was bigger than 93.13? ### answer: SELECT MAX(clean_) & _jerk FROM table_name_91 WHERE snatch < 150 AND bodyweight > 93.13 ### context: CREATE TABLE table_name_91 (_jerk VARCHAR, clean_ INTEGER, snatch VARCHAR, body...
### question: Which name had a bodyweight bigger than 89.64, a total (kg) bigger than 310, a clean and jerk less than 207.5, and a snatch that is bigger than 165? ### answer: SELECT name FROM table_name_89 WHERE bodyweight > 89.64 AND total__kg_ > 310 AND clean_ & _jerk < 207.5 AND snatch > 165 ### context: CREATE TABL...
### question: What is the home team's score for the game at Junction Oval? ### answer: SELECT home_team AS score FROM table_name_42 WHERE venue = "junction oval" ### context: CREATE TABLE table_name_42 (home_team VARCHAR, venue VARCHAR)
### question: Tell me the club with a replacement of alberto malesani ### answer: SELECT club FROM table_name_8 WHERE replacement = "alberto malesani" ### context: CREATE TABLE table_name_8 (club VARCHAR, replacement VARCHAR)
### question: Name the club with date of appointment of 1 november 2007 ### answer: SELECT club FROM table_name_67 WHERE date_of_appointment = "1 november 2007" ### context: CREATE TABLE table_name_67 (club VARCHAR, date_of_appointment VARCHAR)
### question: What's the total number of picks of a team that had june longalong? ### answer: SELECT SUM(pick) FROM table_name_28 WHERE player = "june longalong" ### context: CREATE TABLE table_name_28 (pick INTEGER, player VARCHAR)
### question: What is the pick number for School of lsu? ### answer: SELECT SUM(pick) FROM table_name_7 WHERE school = "lsu" ### context: CREATE TABLE table_name_7 (pick INTEGER, school VARCHAR)
### question: What's the average round number for East Carolina? ### answer: SELECT AVG(round) FROM table_name_2 WHERE school = "east carolina" ### context: CREATE TABLE table_name_2 (round INTEGER, school VARCHAR)
### question: Which round has an offensive tackle position? ### answer: SELECT round FROM table_name_7 WHERE position = "offensive tackle" ### context: CREATE TABLE table_name_7 (round VARCHAR, position VARCHAR)
### question: What is the home team at princes park? ### answer: SELECT home_team FROM table_name_54 WHERE venue = "princes park" ### context: CREATE TABLE table_name_54 (home_team VARCHAR, venue VARCHAR)
### question: What is the home team for Windy Hill? ### answer: SELECT home_team FROM table_name_87 WHERE venue = "windy hill" ### context: CREATE TABLE table_name_87 (home_team VARCHAR, venue VARCHAR)
### question: What is the home team of Lake Oval? ### answer: SELECT home_team FROM table_name_21 WHERE venue = "lake oval" ### context: CREATE TABLE table_name_21 (home_team VARCHAR, venue VARCHAR)
### question: What was the date when there were 26 golden tickets? ### answer: SELECT date FROM table_name_57 WHERE golden_tickets = 26 ### context: CREATE TABLE table_name_57 (date VARCHAR, golden_tickets VARCHAR)
### question: What was the date when the first audition venue was Kemper Arena? ### answer: SELECT date FROM table_name_40 WHERE first_audition_venue = "kemper arena" ### context: CREATE TABLE table_name_40 (date VARCHAR, first_audition_venue VARCHAR)
### question: Which audition city held callbacks at Amelia Island Plantation? ### answer: SELECT audition_city FROM table_name_81 WHERE callback_venue = "amelia island plantation" ### context: CREATE TABLE table_name_81 (audition_city VARCHAR, callback_venue VARCHAR)
### question: How many golden tickets were given out when the auditions were held in San Francisco, California? ### answer: SELECT COUNT(golden_tickets) FROM table_name_51 WHERE audition_city = "san francisco, california" ### context: CREATE TABLE table_name_51 (golden_tickets VARCHAR, audition_city VARCHAR)
### question: What was the callback venue for the Phoenix, Arizona auditions? ### answer: SELECT callback_venue FROM table_name_15 WHERE audition_city = "phoenix, arizona" ### context: CREATE TABLE table_name_15 (callback_venue VARCHAR, audition_city VARCHAR)
### question: What was the callback date for the auditions held on July 29, 2008? ### answer: SELECT Callback AS date FROM table_name_28 WHERE date = "july 29, 2008" ### context: CREATE TABLE table_name_28 (Callback VARCHAR, date VARCHAR)
### question: On which date was the high assists Delonte West Earl Watson (6)? ### answer: SELECT date FROM table_name_78 WHERE high_assists = "delonte west earl watson (6)" ### context: CREATE TABLE table_name_78 (date VARCHAR, high_assists VARCHAR)
### question: How many laps for ukyo katayama with a grid under 16? ### answer: SELECT COUNT(laps) FROM table_name_69 WHERE driver = "ukyo katayama" AND grid < 16 ### context: CREATE TABLE table_name_69 (laps VARCHAR, driver VARCHAR, grid VARCHAR)
### question: What grid has a Time/Retired of +5 laps? ### answer: SELECT grid FROM table_name_34 WHERE time_retired = "+5 laps" ### context: CREATE TABLE table_name_34 (grid VARCHAR, time_retired VARCHAR)
### question: Which away team that had 48 as a Tie no? ### answer: SELECT away_team FROM table_name_46 WHERE tie_no = "48" ### context: CREATE TABLE table_name_46 (away_team VARCHAR, tie_no VARCHAR)
### question: What's the score during a game than had a tie no of 19? ### answer: SELECT score FROM table_name_47 WHERE tie_no = "19" ### context: CREATE TABLE table_name_47 (score VARCHAR, tie_no VARCHAR)
### question: How many people attended the game of a.f.c. totton? ### answer: SELECT attendance FROM table_name_47 WHERE home_team = "a.f.c. totton" ### context: CREATE TABLE table_name_47 (attendance VARCHAR, home_team VARCHAR)
### question: How many people attended the game with a Tie no of 30? ### answer: SELECT attendance FROM table_name_88 WHERE tie_no = "30" ### context: CREATE TABLE table_name_88 (attendance VARCHAR, tie_no VARCHAR)
### question: What was the score of the home team at junction oval? ### answer: SELECT home_team AS score FROM table_name_19 WHERE venue = "junction oval" ### context: CREATE TABLE table_name_19 (home_team VARCHAR, venue VARCHAR)
### question: Which away team is based at glenferrie oval? ### answer: SELECT away_team FROM table_name_54 WHERE venue = "glenferrie oval" ### context: CREATE TABLE table_name_54 (away_team VARCHAR, venue VARCHAR)
### question: What is the date the new york giants were the visiting team and the Final Score was 37-34? ### answer: SELECT date FROM table_name_70 WHERE visiting_team = "new york giants" AND final_score = "37-34" ### context: CREATE TABLE table_name_70 (date VARCHAR, visiting_team VARCHAR, final_score VARCHAR)
### question: What was the visiting team on october 23? ### answer: SELECT visiting_team FROM table_name_10 WHERE date = "october 23" ### context: CREATE TABLE table_name_10 (visiting_team VARCHAR, date VARCHAR)
### question: What team was the host on september 11? ### answer: SELECT host_team FROM table_name_37 WHERE date = "september 11" ### context: CREATE TABLE table_name_37 (host_team VARCHAR, date VARCHAR)
### question: What stadium was the game played in on november 20? ### answer: SELECT stadium FROM table_name_65 WHERE date = "november 20" ### context: CREATE TABLE table_name_65 (stadium VARCHAR, date VARCHAR)
### question: What date was the final Score of 17-34? ### answer: SELECT date FROM table_name_35 WHERE final_score = "17-34" ### context: CREATE TABLE table_name_35 (date VARCHAR, final_score VARCHAR)
### question: What stadium was the game held in when the final score was 17-31? ### answer: SELECT stadium FROM table_name_88 WHERE final_score = "17-31" ### context: CREATE TABLE table_name_88 (stadium VARCHAR, final_score VARCHAR)
### question: When the home team was geelong, what did the away team score? ### answer: SELECT away_team AS score FROM table_name_6 WHERE home_team = "geelong" ### context: CREATE TABLE table_name_6 (away_team VARCHAR, home_team VARCHAR)
### question: Which Suburb was First Settled as a Suburb in 1962? ### answer: SELECT suburb FROM table_name_54 WHERE date_first_settled_as_a_suburb = 1962 ### context: CREATE TABLE table_name_54 (suburb VARCHAR, date_first_settled_as_a_suburb VARCHAR)
### question: What's the Area with a Density of 263? ### answer: SELECT AVG(area__km²_) FROM table_name_10 WHERE density___km²_ = 263 ### context: CREATE TABLE table_name_10 (area__km²_ INTEGER, density___km²_ VARCHAR)
### question: What is the highest Area that has a Mean Household Size of 3.1 persons? ### answer: SELECT MAX(area__km²_) FROM table_name_17 WHERE mean_household_size__in_2006_ = "3.1 persons" ### context: CREATE TABLE table_name_17 (area__km²_ INTEGER, mean_household_size__in_2006_ VARCHAR)
### question: Which game site Kickoff [a] of 1:00, and an Attendance of 63,251? ### answer: SELECT game_site FROM table_name_53 WHERE kickoff_[a_] = "1:00" AND attendance = "63,251" ### context: CREATE TABLE table_name_53 (game_site VARCHAR, attendance VARCHAR, kickoff_ VARCHAR, a_ VARCHAR)
### question: Which date has a Kickoff [a] of 4:00, and an Opponent of detroit lions? ### answer: SELECT date FROM table_name_34 WHERE kickoff_[a_] = "4:00" AND opponent = "detroit lions" ### context: CREATE TABLE table_name_34 (date VARCHAR, opponent VARCHAR, kickoff_ VARCHAR, a_ VARCHAR)
### question: What is the attendance in week 15? ### answer: SELECT attendance FROM table_name_25 WHERE week = "15" ### context: CREATE TABLE table_name_25 (attendance VARCHAR, week VARCHAR)
### question: What is the lowest number of laps obtained by driver Nick Heidfeld? ### answer: SELECT MIN(laps) FROM table_name_32 WHERE driver = "nick heidfeld" ### context: CREATE TABLE table_name_32 (laps INTEGER, driver VARCHAR)
### question: What is the percent yes of Alberta, which had a percent no larger than 60.2? ### answer: SELECT COUNT(percent_yes) FROM table_name_68 WHERE jurisdiction = "alberta" AND percent_no > 60.2 ### context: CREATE TABLE table_name_68 (percent_yes VARCHAR, jurisdiction VARCHAR, percent_no VARCHAR)
### question: What is the total number of yes votes in Newfoundland, which had less than 77,881 vote no? ### answer: SELECT COUNT(voted_yes) FROM table_name_49 WHERE jurisdiction = "newfoundland" AND voted_no < 77 OFFSET 881 ### context: CREATE TABLE table_name_49 (voted_yes VARCHAR, jurisdiction VARCHAR, voted_no VARC...
### question: What is the highest percent of yes Alberta, which had less than 60.2 vote no, has? ### answer: SELECT MAX(percent_yes) FROM table_name_29 WHERE jurisdiction = "alberta" AND percent_no < 60.2 ### context: CREATE TABLE table_name_29 (percent_yes INTEGER, jurisdiction VARCHAR, percent_no VARCHAR)
### question: What team was the away team when Footscray was the home team? ### answer: SELECT away_team FROM table_name_19 WHERE home_team = "footscray" ### context: CREATE TABLE table_name_19 (away_team VARCHAR, home_team VARCHAR)
### question: What was the size of the crowd when North Melbourne was the home team? ### answer: SELECT crowd FROM table_name_64 WHERE home_team = "north melbourne" ### context: CREATE TABLE table_name_64 (crowd VARCHAR, home_team VARCHAR)
### question: What was the largest crowd when Collingwood was the away team? ### answer: SELECT MAX(crowd) FROM table_name_67 WHERE away_team = "collingwood" ### context: CREATE TABLE table_name_67 (crowd INTEGER, away_team VARCHAR)
### question: What year is the result 6th in munich, west germany? ### answer: SELECT SUM(year) FROM table_name_25 WHERE result = "6th" AND venue = "munich, west germany" ### context: CREATE TABLE table_name_25 (year INTEGER, result VARCHAR, venue VARCHAR)
### question: What year is the event in athens, greece? ### answer: SELECT MAX(year) FROM table_name_19 WHERE venue = "athens, greece" ### context: CREATE TABLE table_name_19 (year INTEGER, venue VARCHAR)
### question: What year is the venue in budapest, hungary? ### answer: SELECT SUM(year) FROM table_name_17 WHERE venue = "budapest, hungary" ### context: CREATE TABLE table_name_17 (year INTEGER, venue VARCHAR)
### question: What tournament is in 1971? ### answer: SELECT tournament FROM table_name_61 WHERE year = 1971 ### context: CREATE TABLE table_name_61 (tournament VARCHAR, year VARCHAR)
### question: What is the extra result associated with 6th place in 1972? ### answer: SELECT extra FROM table_name_22 WHERE result = "6th" AND year = 1972 ### context: CREATE TABLE table_name_22 (extra VARCHAR, result VARCHAR, year VARCHAR)
### question: When did Collingwood play? ### answer: SELECT date FROM table_name_36 WHERE home_team = "collingwood" ### context: CREATE TABLE table_name_36 (date VARCHAR, home_team VARCHAR)
### question: How many were in the crowd when there was a game at Junction Oval? ### answer: SELECT SUM(crowd) FROM table_name_88 WHERE venue = "junction oval" ### context: CREATE TABLE table_name_88 (crowd INTEGER, venue VARCHAR)
### question: What is the Competition with a Score of 1–0, and a Result with 3–0? ### answer: SELECT competition FROM table_name_17 WHERE score = "1–0" AND result = "3–0" ### context: CREATE TABLE table_name_17 (competition VARCHAR, score VARCHAR, result VARCHAR)
### question: What is the Result with a Date with 22 january 2008? ### answer: SELECT result FROM table_name_43 WHERE date = "22 january 2008" ### context: CREATE TABLE table_name_43 (result VARCHAR, date VARCHAR)
### question: What was the decision of the Lightning game when the Canadiens were the away team? ### answer: SELECT decision FROM table_name_56 WHERE visitor = "canadiens" ### context: CREATE TABLE table_name_56 (decision VARCHAR, visitor VARCHAR)
### question: What was the date of the 24–27–6 Lightning home game against Tampa Bay that had a decision of Ramo? ### answer: SELECT date FROM table_name_93 WHERE home = "tampa bay" AND decision = "ramo" AND record = "24–27–6" ### context: CREATE TABLE table_name_93 (date VARCHAR, record VARCHAR, home VARCHAR, decision...
### question: What week was October 29, 2000? ### answer: SELECT COUNT(week) FROM table_name_2 WHERE date = "october 29, 2000" ### context: CREATE TABLE table_name_2 (week VARCHAR, date VARCHAR)
### question: Who was the opponent on December 10, 2000? ### answer: SELECT opponent FROM table_name_36 WHERE date = "december 10, 2000" ### context: CREATE TABLE table_name_36 (opponent VARCHAR, date VARCHAR)
### question: Who was the opponent on the game with a 65,569 attendance before week 12? ### answer: SELECT opponent FROM table_name_62 WHERE week < 12 AND attendance = "65,569" ### context: CREATE TABLE table_name_62 (opponent VARCHAR, week VARCHAR, attendance VARCHAR)
### question: What week was September 24, 2000 on? ### answer: SELECT SUM(week) FROM table_name_55 WHERE date = "september 24, 2000" ### context: CREATE TABLE table_name_55 (week INTEGER, date VARCHAR)
### question: What is the engine configuration & notes 0-100km/h with a model with 2.3 t5? ### answer: SELECT engine_configuration_ & _notes_0_100km_h FROM table_name_65 WHERE model = "2.3 t5" ### context: CREATE TABLE table_name_65 (engine_configuration_ VARCHAR, _notes_0_100km_h VARCHAR, model VARCHAR)
### question: What is the engine configuration & notes 0-100km/h with an engine type with b5252 fs? ### answer: SELECT engine_configuration_ & _notes_0_100km_h FROM table_name_49 WHERE engine_type = "b5252 fs" ### context: CREATE TABLE table_name_49 (engine_configuration_ VARCHAR, _notes_0_100km_h VARCHAR, engine_type ...
### question: What is the model with a engine type with b5244 s2? ### answer: SELECT model FROM table_name_97 WHERE engine_type = "b5244 s2" ### context: CREATE TABLE table_name_97 (model VARCHAR, engine_type VARCHAR)
### question: What is the engine type with a model with base 2.4? ### answer: SELECT engine_type FROM table_name_90 WHERE model = "base 2.4" ### context: CREATE TABLE table_name_90 (engine_type VARCHAR, model VARCHAR)
### question: What is the composition of the coin that was issued after 2008, had a mintage larger than 999, and was designed by Jody Broomfield? ### answer: SELECT composition FROM table_name_76 WHERE mintage > 999 AND artist = "jody broomfield" AND year > 2008 ### context: CREATE TABLE table_name_76 (composition VARC...
### question: What is the theme of the coin from before 2006? ### answer: SELECT theme FROM table_name_91 WHERE year < 2006 ### context: CREATE TABLE table_name_91 (theme VARCHAR, year INTEGER)
### question: What was the Tyre for the German Grand Prix? ### answer: SELECT tyre FROM table_name_27 WHERE race = "german grand prix" ### context: CREATE TABLE table_name_27 (tyre VARCHAR, race VARCHAR)
### question: Who had Pole position for the French Grand Prix? ### answer: SELECT pole_position FROM table_name_69 WHERE race = "french grand prix" ### context: CREATE TABLE table_name_69 (pole_position VARCHAR, race VARCHAR)
### question: What was the fastest lap in a race where Phil Hill had the Pole position and was won by Wolfgang von Trips? ### answer: SELECT fastest_lap FROM table_name_36 WHERE pole_position = "phil hill" AND winning_driver = "wolfgang von trips" ### context: CREATE TABLE table_name_36 (fastest_lap VARCHAR, pole_posit...
### question: What is the lowest nuber of games drawn in the total column? ### answer: SELECT MIN(drawn) FROM table_name_31 WHERE against = "total" ### context: CREATE TABLE table_name_31 (drawn INTEGER, against VARCHAR)
### question: What is the lowest number of games lost that has less than 1 game drawn, a 50% winning percentage, against the netherlands, and over 2 played games? ### answer: SELECT MIN(lost) FROM table_name_96 WHERE drawn < 1 AND _percentage_won = "50%" AND against = "netherlands" AND played > 2 ### context: CREATE TA...
### question: What was the venue when the home team was Essendon? ### answer: SELECT venue FROM table_name_53 WHERE home_team = "essendon" ### context: CREATE TABLE table_name_53 (venue VARCHAR, home_team VARCHAR)
### question: Which biggest interview score had an evening gown stat of 9.286? ### answer: SELECT MAX(interview) FROM table_name_56 WHERE evening_gown = 9.286 ### context: CREATE TABLE table_name_56 (interview INTEGER, evening_gown VARCHAR)
### question: Which mean interview number had an average of more than 9.233, a swimsuit stat of more than 9.473, and an evening gown score of more than 9.671? ### answer: SELECT AVG(interview) FROM table_name_79 WHERE average > 9.233 AND swimsuit = 9.473 AND evening_gown > 9.671 ### context: CREATE TABLE table_name_79 ...
### question: Which is the smallest evening gown score when the interview score was more than 9.164, the swimsuit stat was less than 9.35, and the average is less than 9.233? ### answer: SELECT MIN(evening_gown) FROM table_name_63 WHERE interview > 9.164 AND swimsuit < 9.35 AND average < 9.233 ### context: CREATE TABLE...
### question: Which is the largest average number when the swimsuit is 9.4 and the evening gown stat is less than 9.486? ### answer: SELECT MAX(average) FROM table_name_75 WHERE swimsuit = 9.4 AND evening_gown < 9.486 ### context: CREATE TABLE table_name_75 (average INTEGER, swimsuit VARCHAR, evening_gown VARCHAR)
### question: What is the total number of interview scores that have an evening gown score of 9.543 and an average that is bigger than 9.521? ### answer: SELECT SUM(interview) FROM table_name_59 WHERE evening_gown = 9.543 AND average > 9.521 ### context: CREATE TABLE table_name_59 (interview INTEGER, evening_gown VARCH...
### question: What is the mean average score when the evening gown score is more than 9.35, the state is South Carolina, and the swimsuit score is more than 9.4? ### answer: SELECT AVG(average) FROM table_name_52 WHERE evening_gown > 9.35 AND state = "south carolina" AND swimsuit > 9.4 ### context: CREATE TABLE table_n...
### question: What is the total draw count with 52 goals and less than 15 losses? ### answer: SELECT SUM(draws) FROM table_name_38 WHERE goals_against = 52 AND losses < 15 ### context: CREATE TABLE table_name_38 (draws INTEGER, goals_against VARCHAR, losses VARCHAR)
### question: What is the top losses that with Club of cd toledo and Points more than 56? ### answer: SELECT MAX(losses) FROM table_name_23 WHERE club = "cd toledo" AND points > 56 ### context: CREATE TABLE table_name_23 (losses INTEGER, club VARCHAR, points VARCHAR)
### question: What is the low win count with more than 72 goals? ### answer: SELECT MIN(wins) FROM table_name_1 WHERE goals_for > 72 ### context: CREATE TABLE table_name_1 (wins INTEGER, goals_for INTEGER)
### question: What's the Total (kg) of a Snatch of 132.5? ### answer: SELECT total__kg_ FROM table_name_86 WHERE snatch = 132.5 ### context: CREATE TABLE table_name_86 (total__kg_ VARCHAR, snatch VARCHAR)
### question: What's the name of the athlete with a Snatch larger than 140, Bodyweight smaller than 84.55, and Clean and Jerk of 192.5? ### answer: SELECT name FROM table_name_62 WHERE snatch > 140 AND bodyweight < 84.55 AND clean_ & _jerk = "192.5" ### context: CREATE TABLE table_name_62 (name VARCHAR, snatch VARCHAR,...
### question: When was the result 3-1? ### answer: SELECT date FROM table_name_22 WHERE result = "3-1" ### context: CREATE TABLE table_name_22 (date VARCHAR, result VARCHAR)
### question: Which competition had a result of 1-0? ### answer: SELECT competition FROM table_name_44 WHERE result = "1-0" ### context: CREATE TABLE table_name_44 (competition VARCHAR, result VARCHAR)
### question: At what venue was richmond the away team? ### answer: SELECT venue FROM table_name_62 WHERE away_team = "richmond" ### context: CREATE TABLE table_name_62 (venue VARCHAR, away_team VARCHAR)
### question: What venue had an away team of south melbourne? ### answer: SELECT venue FROM table_name_32 WHERE away_team = "south melbourne" ### context: CREATE TABLE table_name_32 (venue VARCHAR, away_team VARCHAR)
### question: What was fitzroy's score at home? ### answer: SELECT home_team AS score FROM table_name_27 WHERE home_team = "fitzroy" ### context: CREATE TABLE table_name_27 (home_team VARCHAR)
### question: What day did South Melbourne play as the away team? ### answer: SELECT date FROM table_name_82 WHERE away_team = "south melbourne" ### context: CREATE TABLE table_name_82 (date VARCHAR, away_team VARCHAR)
### question: What was the attendance when Hawthorn played as the away team? ### answer: SELECT AVG(crowd) FROM table_name_54 WHERE away_team = "hawthorn" ### context: CREATE TABLE table_name_54 (crowd INTEGER, away_team VARCHAR)
### question: Who was Carlton's away team opponent? ### answer: SELECT away_team FROM table_name_79 WHERE home_team = "carlton" ### context: CREATE TABLE table_name_79 (away_team VARCHAR, home_team VARCHAR)
### question: IN EVENTS 1995 STOH, WHO WAS THE THIRD WITH SKIP SANDRA PETERSON AND SECOND JOAN MCCUSKER? ### answer: SELECT third FROM table_name_52 WHERE skip = "sandra peterson" AND second = "joan mccusker" AND events = "1995 stoh" ### context: CREATE TABLE table_name_52 (third VARCHAR, events VARCHAR, skip VARCHAR, ...
### question: What club was derrick byfuglien drafted by before 283? ### answer: SELECT club_team FROM table_name_96 WHERE overall < 283 AND player = "derrick byfuglien" ### context: CREATE TABLE table_name_96 (club_team VARCHAR, overall VARCHAR, player VARCHAR)
### question: What is the Venue with a Result of 3–0, and a Competition with 2006 fifa world cup qualifier, and with a Score of 3–0? ### answer: SELECT venue FROM table_name_22 WHERE result = "3–0" AND competition = "2006 fifa world cup qualifier" AND score = "3–0" ### context: CREATE TABLE table_name_22 (venue VARCHAR...
### question: What is the Date with a Result of 8–2, and a Score with 6–2? ### answer: SELECT date FROM table_name_99 WHERE result = "8–2" AND score = "6–2" ### context: CREATE TABLE table_name_99 (date VARCHAR, result VARCHAR, score VARCHAR)
### question: What is the Result with a Score of 1–0, and a Date with 18 april 2009? ### answer: SELECT result FROM table_name_35 WHERE score = "1–0" AND date = "18 april 2009" ### context: CREATE TABLE table_name_35 (result VARCHAR, score VARCHAR, date VARCHAR)
### question: What is the Venue with a Result of 10–0, and a Score with 3–0? ### answer: SELECT venue FROM table_name_64 WHERE result = "10–0" AND score = "3–0" ### context: CREATE TABLE table_name_64 (venue VARCHAR, result VARCHAR, score VARCHAR)
### question: What is the Competition with a Date with 6 december 2011? ### answer: SELECT competition FROM table_name_72 WHERE date = "6 december 2011" ### context: CREATE TABLE table_name_72 (competition VARCHAR, date VARCHAR)