combined_text
stringlengths
106
1.05k
###question:What is the minimum hydroelectricity with a less than 116.4 total, and a greater than 18.637 solar?###answer:SELECT MIN(hydroelectricity) FROM table_name_51 WHERE total < 116.4 AND solar > 18.637###context:CREATE TABLE table_name_51 (hydroelectricity INTEGER, total VARCHAR, solar VARCHAR)
###question:In 2011 with a less than 13.333 wind power what is the mean hydroelectricity?###answer:SELECT AVG(hydroelectricity) FROM table_name_73 WHERE year > 2011 AND wind_power < 13.333###context:CREATE TABLE table_name_73 (hydroelectricity INTEGER, year VARCHAR, wind_power VARCHAR)
###question:What country has a less than 136.1 total and a 0.02 solar?###answer:SELECT country FROM table_name_38 WHERE total < 136.1 AND solar = 0.02###context:CREATE TABLE table_name_38 (country VARCHAR, total VARCHAR, solar VARCHAR)
###question:Home for away of hispano?###answer:SELECT home FROM table_name_4 WHERE away = "hispano"###context:CREATE TABLE table_name_4 (home VARCHAR, away VARCHAR)
###question:Which Position has a Pick # smaller than 23, and a Player of garrett sutherland?###answer:SELECT position FROM table_name_12 WHERE pick__number < 23 AND player = "garrett sutherland"###context:CREATE TABLE table_name_12 (position VARCHAR, pick__number VARCHAR, player VARCHAR)
###question:Name the CFL Team which has a Player of chris evraire?###answer:SELECT cfl_team FROM table_name_53 WHERE player = "chris evraire"###context:CREATE TABLE table_name_53 (cfl_team VARCHAR, player VARCHAR)
###question:Name The Player who has a Pick # of 27?###answer:SELECT player FROM table_name_13 WHERE pick__number = 27###context:CREATE TABLE table_name_13 (player VARCHAR, pick__number VARCHAR)
###question:Name the Player who has a CFL Team of toronto?###answer:SELECT player FROM table_name_24 WHERE cfl_team = "toronto"###context:CREATE TABLE table_name_24 (player VARCHAR, cfl_team VARCHAR)
###question:Name the Pick # which has a Position of lb, and a CFL Team of winnipeg?###answer:SELECT SUM(pick__number) FROM table_name_74 WHERE position = "lb" AND cfl_team = "winnipeg"###context:CREATE TABLE table_name_74 (pick__number INTEGER, position VARCHAR, cfl_team VARCHAR)
###question:WHAT IS THE SUM OF ATTENDANCE FOR DETROIT, WHEN POINTS ARE LARGER THAN 33?###answer:SELECT SUM(attendance) FROM table_name_26 WHERE home = "detroit" AND points > 33###context:CREATE TABLE table_name_26 (attendance INTEGER, home VARCHAR, points VARCHAR)
###question:What was the location and attendance for the game on December 12?###answer:SELECT location_attendance FROM table_name_68 WHERE date = "december 12"###context:CREATE TABLE table_name_68 (location_attendance VARCHAR, date VARCHAR)
###question:What is the lowest Touchdowns, when Player is Andrew Glover, and when Yards is greater than 281?###answer:SELECT MIN(touchdowns) FROM table_name_14 WHERE player = "andrew glover" AND yards > 281###context:CREATE TABLE table_name_14 (touchdowns INTEGER, player VARCHAR, yards VARCHAR)
###question:What is the average Touchdowns, when Yards is less than 293, and when Long is greater than 39?###answer:SELECT AVG(touchdowns) FROM table_name_7 WHERE yards < 293 AND long > 39###context:CREATE TABLE table_name_7 (touchdowns INTEGER, yards VARCHAR, long VARCHAR)
###question:What is the total number of Attempts, when Touchdowns is 6?###answer:SELECT COUNT(attempts) FROM table_name_61 WHERE touchdowns = 6###context:CREATE TABLE table_name_61 (attempts VARCHAR, touchdowns VARCHAR)
###question:What is Venue, when Extra is Pentathlon?###answer:SELECT venue FROM table_name_39 WHERE extra = "pentathlon"###context:CREATE TABLE table_name_39 (venue VARCHAR, extra VARCHAR)
###question:What is the highest Year, when Extra is Pentathlon?###answer:SELECT MAX(year) FROM table_name_33 WHERE extra = "pentathlon"###context:CREATE TABLE table_name_33 (year INTEGER, extra VARCHAR)
###question:What is the sum of Year, when Result is 9th?###answer:SELECT SUM(year) FROM table_name_10 WHERE result = "9th"###context:CREATE TABLE table_name_10 (year INTEGER, result VARCHAR)
###question:What is Tournament, when Result is 2nd, and when Year is 2009?###answer:SELECT tournament FROM table_name_74 WHERE result = "2nd" AND year = 2009###context:CREATE TABLE table_name_74 (tournament VARCHAR, result VARCHAR, year VARCHAR)
###question:What is Result, when Venue is Götzis , Austria?###answer:SELECT result FROM table_name_77 WHERE venue = "götzis , austria"###context:CREATE TABLE table_name_77 (result VARCHAR, venue VARCHAR)
###question:What label does Germany have?###answer:SELECT label FROM table_name_24 WHERE region = "germany"###context:CREATE TABLE table_name_24 (label VARCHAR, region VARCHAR)
###question:What region has the Chrysalis label, and a Catalog of chr 1047?###answer:SELECT region FROM table_name_13 WHERE label = "chrysalis" AND catalog = "chr 1047"###context:CREATE TABLE table_name_13 (region VARCHAR, label VARCHAR, catalog VARCHAR)
###question:When did the United Kingdom format a stereo LP?###answer:SELECT date FROM table_name_29 WHERE region = "united kingdom" AND format = "stereo lp"###context:CREATE TABLE table_name_29 (date VARCHAR, region VARCHAR, format VARCHAR)
###question:What region goes along with January 1974?###answer:SELECT region FROM table_name_93 WHERE date = "january 1974"###context:CREATE TABLE table_name_93 (region VARCHAR, date VARCHAR)
###question:What is the label from 1973 that has a catalog number of l 35023?###answer:SELECT label FROM table_name_98 WHERE date = "1973" AND catalog = "l 35023"###context:CREATE TABLE table_name_98 (label VARCHAR, date VARCHAR, catalog VARCHAR)
###question:How many wins did the driver with 1 second and more than 12 races have?###answer:SELECT wins FROM table_name_98 WHERE second = "1" AND races > 12###context:CREATE TABLE table_name_98 (wins VARCHAR, second VARCHAR, races VARCHAR)
###question:What is the lowest Loss number when the Gain is less than 61 and the Avg/G is 6?###answer:SELECT MIN(loss) FROM table_name_94 WHERE gain < 61 AND avg_g = 6###context:CREATE TABLE table_name_94 (loss INTEGER, gain VARCHAR, avg_g VARCHAR)
###question:What is the sum of Avg/G for Dan Dierking when the Loss is 0 and the Gain is more than 34?###answer:SELECT SUM(avg_g) FROM table_name_95 WHERE loss = 0 AND name = "dan dierking" AND gain > 34###context:CREATE TABLE table_name_95 (avg_g INTEGER, gain VARCHAR, loss VARCHAR, name VARCHAR)
###question:Who was the visiting team on April 6?###answer:SELECT visitor FROM table_name_27 WHERE date = "april 6"###context:CREATE TABLE table_name_27 (visitor VARCHAR, date VARCHAR)
###question:What was the date of the game that led to a 4-3 record?###answer:SELECT date FROM table_name_64 WHERE record = "4-3"###context:CREATE TABLE table_name_64 (date VARCHAR, record VARCHAR)
###question:Who was the home team in the game that led to a 2-3 series record?###answer:SELECT home FROM table_name_10 WHERE record = "2-3"###context:CREATE TABLE table_name_10 (home VARCHAR, record VARCHAR)
###question:Which home team had a score of 100-86?###answer:SELECT home_team FROM table_name_29 WHERE score = "100-86"###context:CREATE TABLE table_name_29 (home_team VARCHAR, score VARCHAR)
###question:Which report corresponds to the State Sports Centre?###answer:SELECT report FROM table_name_89 WHERE venue = "state sports centre"###context:CREATE TABLE table_name_89 (report VARCHAR, venue VARCHAR)
###question:Who was the away team at the Win Entertainment Centre?###answer:SELECT away_team FROM table_name_31 WHERE venue = "win entertainment centre"###context:CREATE TABLE table_name_31 (away_team VARCHAR, venue VARCHAR)
###question:Can you tell me the total number of Gain that has the Name of williams, jonathan, and the Loss larger than 3?###answer:SELECT COUNT(gain) FROM table_name_55 WHERE name = "williams, jonathan" AND loss > 3###context:CREATE TABLE table_name_55 (gain VARCHAR, name VARCHAR, loss VARCHAR)
###question:Can you tell me the sum of Loss that has the Gain of 2646?###answer:SELECT SUM(loss) FROM table_name_82 WHERE gain = 2646###context:CREATE TABLE table_name_82 (loss INTEGER, gain VARCHAR)
###question:Can you tell me the sum of Gain that has the Name of kass, rob, and the Avg/g smaller than 1.9?###answer:SELECT SUM(gain) FROM table_name_75 WHERE name = "kass, rob" AND avg_g < 1.9###context:CREATE TABLE table_name_75 (gain INTEGER, name VARCHAR, avg_g VARCHAR)
###question:Can you tell me the lowest Long that has the Gain of 20, and the Loss smaller than 0?###answer:SELECT MIN(long) FROM table_name_19 WHERE gain = 20 AND loss < 0###context:CREATE TABLE table_name_19 (long INTEGER, gain VARCHAR, loss VARCHAR)
###question:What is the highest ERP W with a w216bo call sign?###answer:SELECT MAX(erp_w) FROM table_name_10 WHERE call_sign = "w216bo"###context:CREATE TABLE table_name_10 (erp_w INTEGER, call_sign VARCHAR)
###question:What kind of Crowd has a Ground of subiaco oval?###answer:SELECT SUM(crowd) FROM table_name_41 WHERE ground = "subiaco oval"###context:CREATE TABLE table_name_41 (crowd INTEGER, ground VARCHAR)
###question:How many Crowd that has a Date on saturday, 29 january and an Away team of collingwood?###answer:SELECT AVG(crowd) FROM table_name_67 WHERE date = "saturday, 29 january" AND away_team = "collingwood"###context:CREATE TABLE table_name_67 (crowd INTEGER, date VARCHAR, away_team VARCHAR)
###question:On which date after week 11 was the opponent the arizona cardinals?###answer:SELECT date FROM table_name_88 WHERE week > 11 AND opponent = "arizona cardinals"###context:CREATE TABLE table_name_88 (date VARCHAR, week VARCHAR, opponent VARCHAR)
###question:What was the lead with an alternate of li dongyan?###answer:SELECT lead FROM table_name_78 WHERE alternate = "li dongyan"###context:CREATE TABLE table_name_78 (lead VARCHAR, alternate VARCHAR)
###question:Which lead had a season of 2007-08?###answer:SELECT lead FROM table_name_18 WHERE season = "2007-08"###context:CREATE TABLE table_name_18 (lead VARCHAR, season VARCHAR)
###question:Which lead had a season of 2009-10?###answer:SELECT lead FROM table_name_40 WHERE season = "2009-10"###context:CREATE TABLE table_name_40 (lead VARCHAR, season VARCHAR)
###question:Which Name has a Yes Saturday and a Yes Evening?###answer:SELECT name FROM table_name_49 WHERE saturday = "yes" AND evening = "yes"###context:CREATE TABLE table_name_49 (name VARCHAR, saturday VARCHAR, evening VARCHAR)
###question:Name the Daytime which has Saturday of yes and a Name of exmouth?###answer:SELECT daytime FROM table_name_5 WHERE saturday = "yes" AND name = "exmouth"###context:CREATE TABLE table_name_5 (daytime VARCHAR, saturday VARCHAR, name VARCHAR)
###question:Name the Evening that has a Sunday of no, and a Name of s. vidal/plant express?###answer:SELECT evening FROM table_name_18 WHERE sunday = "no" AND name = "s. vidal/plant express"###context:CREATE TABLE table_name_18 (evening VARCHAR, sunday VARCHAR, name VARCHAR)
###question:Name the Daytime which has a Name of exmouth?###answer:SELECT daytime FROM table_name_22 WHERE name = "exmouth"###context:CREATE TABLE table_name_22 (daytime VARCHAR, name VARCHAR)
###question:Which Saturday has a Sunday of yes and a Evening of yes?###answer:SELECT saturday FROM table_name_80 WHERE sunday = "yes" AND evening = "yes"###context:CREATE TABLE table_name_80 (saturday VARCHAR, sunday VARCHAR, evening VARCHAR)
###question:Which Saturday has a Name of confederation?###answer:SELECT saturday FROM table_name_68 WHERE name = "confederation"###context:CREATE TABLE table_name_68 (saturday VARCHAR, name VARCHAR)
###question:What was the GP-GS for the 2009 season?###answer:SELECT gp_gs FROM table_name_52 WHERE season = "2009"###context:CREATE TABLE table_name_52 (gp_gs VARCHAR, season VARCHAR)
###question:Which GP-GS had a long of 17 and a season of total?###answer:SELECT gp_gs FROM table_name_13 WHERE long = "17" AND season = "total"###context:CREATE TABLE table_name_13 (gp_gs VARCHAR, long VARCHAR, season VARCHAR)
###question:Which Long has redshirt for its Avg/G?###answer:SELECT long FROM table_name_97 WHERE avg_g = "redshirt"###context:CREATE TABLE table_name_97 (long VARCHAR, avg_g VARCHAR)
###question:What was the Av/G of the 2009 season?###answer:SELECT avg_g FROM table_name_74 WHERE season = "2009"###context:CREATE TABLE table_name_74 (avg_g VARCHAR, season VARCHAR)
###question:For the Avg/G of 5.9, what was the long?###answer:SELECT long FROM table_name_56 WHERE avg_g = "5.9"###context:CREATE TABLE table_name_56 (long VARCHAR, avg_g VARCHAR)
###question:What is the Location Attendance, when High Points is "D. McKey (24)", and when Score is "L 96-105"?###answer:SELECT location_attendance FROM table_name_55 WHERE high_points = "d. mckey (24)" AND score = "l 96-105"###context:CREATE TABLE table_name_55 (location_attendance VARCHAR, high_points VARCHAR, score ...
###question:What is High Rebounds, when Game is greater than 33, and when Score is "W 132-101"?###answer:SELECT high_rebounds FROM table_name_44 WHERE game > 33 AND score = "w 132-101"###context:CREATE TABLE table_name_44 (high_rebounds VARCHAR, game VARCHAR, score VARCHAR)
###question:What is Team, when Game is "32"?###answer:SELECT team FROM table_name_96 WHERE game = 32###context:CREATE TABLE table_name_96 (team VARCHAR, game VARCHAR)
###question:What is the sum of Game, when High Points is "D. McKey (24)", and when Team is "@ Dallas Mavericks"?###answer:SELECT SUM(game) FROM table_name_35 WHERE high_points = "d. mckey (24)" AND team = "@ dallas mavericks"###context:CREATE TABLE table_name_35 (game INTEGER, high_points VARCHAR, team VARCHAR)
###question:Which Tournament has Opponents of marc lópez santiago ventura?###answer:SELECT tournament FROM table_name_16 WHERE opponents = "marc lópez santiago ventura"###context:CREATE TABLE table_name_16 (tournament VARCHAR, opponents VARCHAR)
###question:Which Opponents have a Partnering of alessandro motti, and a Date of 12 september 2005?###answer:SELECT opponents FROM table_name_60 WHERE partnering = "alessandro motti" AND date = "12 september 2005"###context:CREATE TABLE table_name_60 (opponents VARCHAR, partnering VARCHAR, date VARCHAR)
###question:Which Opponents have a Score of 6–4, 6–3?###answer:SELECT opponents FROM table_name_59 WHERE score = "6–4, 6–3"###context:CREATE TABLE table_name_59 (opponents VARCHAR, score VARCHAR)
###question:Which Tournament has a Surface of hard, and a Date of 24 september 2011?###answer:SELECT tournament FROM table_name_40 WHERE surface = "hard" AND date = "24 september 2011"###context:CREATE TABLE table_name_40 (tournament VARCHAR, surface VARCHAR, date VARCHAR)
###question:How many rounds did the match at GCF: Strength and Honor last?###answer:SELECT AVG(round) FROM table_name_49 WHERE event = "gcf: strength and honor"###context:CREATE TABLE table_name_49 (round INTEGER, event VARCHAR)
###question:What is the total population for Saint-Antoine with an area squared of 6.43?###answer:SELECT SUM(population) FROM table_name_60 WHERE official_name = "saint-antoine" AND area_km_2 > 6.43###context:CREATE TABLE table_name_60 (population INTEGER, official_name VARCHAR, area_km_2 VARCHAR)
###question:What is the current status of a location with a census ranking of 1,769 of 5,008 and population greater than 930?###answer:SELECT status FROM table_name_21 WHERE population > 930 AND census_ranking = "1,769 of 5,008"###context:CREATE TABLE table_name_21 (status VARCHAR, population VARCHAR, census_ranking VA...
###question:How many games in February have a record of 40-15-5?###answer:SELECT SUM(february) FROM table_name_8 WHERE record = "40-15-5"###context:CREATE TABLE table_name_8 (february INTEGER, record VARCHAR)
###question:What is the lowest numbered game with an opponent of Minnesota North Stars earlier than February 25?###answer:SELECT MIN(game) FROM table_name_95 WHERE opponent = "minnesota north stars" AND february < 25###context:CREATE TABLE table_name_95 (game INTEGER, opponent VARCHAR, february VARCHAR)
###question:How many games have the New York Islanders as an opponent before February 7?###answer:SELECT SUM(game) FROM table_name_63 WHERE opponent = "new york islanders" AND february < 7###context:CREATE TABLE table_name_63 (game INTEGER, opponent VARCHAR, february VARCHAR)
###question:What is the earliest February date with a record of 37-13-4 in a game earlier than 54?###answer:SELECT MIN(february) FROM table_name_52 WHERE record = "37-13-4" AND game < 54###context:CREATE TABLE table_name_52 (february INTEGER, record VARCHAR, game VARCHAR)
###question:What is the date of the game when the record is 2-0?###answer:SELECT date FROM table_name_53 WHERE record = "2-0"###context:CREATE TABLE table_name_53 (date VARCHAR, record VARCHAR)
###question:What is the average game number when the record is 4-1?###answer:SELECT AVG(game) FROM table_name_18 WHERE record = "4-1"###context:CREATE TABLE table_name_18 (game INTEGER, record VARCHAR)
###question:What is the location and attendance of game 1?###answer:SELECT location_attendance FROM table_name_95 WHERE game = 1###context:CREATE TABLE table_name_95 (location_attendance VARCHAR, game VARCHAR)
###question:What is the date of the game located in Madison Square Garden, when the team is Seattle and the game number is less than 6?###answer:SELECT date FROM table_name_36 WHERE location_attendance = "madison square garden" AND game < 6 AND team = "seattle"###context:CREATE TABLE table_name_36 (date VARCHAR, team V...
###question:What is the location and attendance of the game when the score is 125-100?###answer:SELECT location_attendance FROM table_name_89 WHERE score = "125-100"###context:CREATE TABLE table_name_89 (location_attendance VARCHAR, score VARCHAR)
###question:Who was the winning driver in 1956?###answer:SELECT winning_driver FROM table_name_93 WHERE year = "1956"###context:CREATE TABLE table_name_93 (winning_driver VARCHAR, year VARCHAR)
###question:Which circuit did Peter Whitehead win?###answer:SELECT circuit FROM table_name_43 WHERE winning_driver = "peter whitehead"###context:CREATE TABLE table_name_43 (circuit VARCHAR, winning_driver VARCHAR)
###question:What report did Jack Brabham win?###answer:SELECT report FROM table_name_21 WHERE winning_driver = "jack brabham"###context:CREATE TABLE table_name_21 (report VARCHAR, winning_driver VARCHAR)
###question:What year did Ferrari win the Kyalami circuit?###answer:SELECT year FROM table_name_16 WHERE circuit = "kyalami" AND winning_constructor = "ferrari"###context:CREATE TABLE table_name_16 (year VARCHAR, circuit VARCHAR, winning_constructor VARCHAR)
###question:Which circuit did Jim Clark win in 1962?###answer:SELECT circuit FROM table_name_38 WHERE winning_driver = "jim clark" AND year = "1962"###context:CREATE TABLE table_name_38 (circuit VARCHAR, winning_driver VARCHAR, year VARCHAR)
###question:On what Date was the 2011 LG Cup Competittion?###answer:SELECT date FROM table_name_46 WHERE competition = "2011 lg cup"###context:CREATE TABLE table_name_46 (date VARCHAR, competition VARCHAR)
###question:What is the pick for the player with 2 years in the NBA and who plays for the Utah Jazz?###answer:SELECT pick FROM table_name_68 WHERE nba_years_[a_] = "2" AND previous_team = "utah jazz"###context:CREATE TABLE table_name_68 (pick VARCHAR, previous_team VARCHAR, nba_years_ VARCHAR, a_ VARCHAR)
###question:What was the final score for the game in which Carmelo Anthony (26) was the high points scorer?###answer:SELECT score FROM table_name_78 WHERE high_points = "carmelo anthony (26)"###context:CREATE TABLE table_name_78 (score VARCHAR, high_points VARCHAR)
###question:In which game number was Chris Andersen (12) the high rebounds scorer?###answer:SELECT game FROM table_name_48 WHERE high_rebounds = "chris andersen (12)"###context:CREATE TABLE table_name_48 (game VARCHAR, high_rebounds VARCHAR)
###question:What was the final score for the game played against @ Milwaukee?###answer:SELECT score FROM table_name_39 WHERE team = "@ milwaukee"###context:CREATE TABLE table_name_39 (score VARCHAR, team VARCHAR)
###question:For the game played against the L.A. Lakers, where was the match played and what was the attendance level?###answer:SELECT location_attendance FROM table_name_80 WHERE team = "l.a. lakers"###context:CREATE TABLE table_name_80 (location_attendance VARCHAR, team VARCHAR)
###question:What is Name, when Laps is "50", when Grid is greater than 9, when Team is "Jim Beam Racing", and when Time/Retired is "+ 18.0s"?###answer:SELECT name FROM table_name_35 WHERE laps = 50 AND grid > 9 AND team = "jim beam racing" AND time_retired = "+ 18.0s"###context:CREATE TABLE table_name_35 (name VARCHAR,...
###question:What is the lowest Laps, when Grid is greater than 7, and when Name is "Fabian Coulthard"?###answer:SELECT MIN(laps) FROM table_name_83 WHERE grid > 7 AND name = "fabian coulthard"###context:CREATE TABLE table_name_83 (laps INTEGER, grid VARCHAR, name VARCHAR)
###question:What is Time/Retired, when Laps is less than 49, and when Name is "Michael Caruso"?###answer:SELECT time_retired FROM table_name_65 WHERE laps < 49 AND name = "michael caruso"###context:CREATE TABLE table_name_65 (time_retired VARCHAR, laps VARCHAR, name VARCHAR)
###question:What is Time/Retired, when Team is "Team Vodafone", and when Grid is greater than 4?###answer:SELECT time_retired FROM table_name_16 WHERE team = "team vodafone" AND grid > 4###context:CREATE TABLE table_name_16 (time_retired VARCHAR, team VARCHAR, grid VARCHAR)
###question:What is the draw number of the Artist Dav Mcnamara and a place bigger than 4?###answer:SELECT COUNT(draw) FROM table_name_75 WHERE artist = "dav mcnamara" AND place > 4###context:CREATE TABLE table_name_75 (draw VARCHAR, artist VARCHAR, place VARCHAR)
###question:What is the stadium name that has 144 as the runs?###answer:SELECT stadium FROM table_name_86 WHERE runs = "144"###context:CREATE TABLE table_name_86 (stadium VARCHAR, runs VARCHAR)
###question:For what year was 100* runs happen?###answer:SELECT year FROM table_name_45 WHERE runs = "100*"###context:CREATE TABLE table_name_45 (year VARCHAR, runs VARCHAR)
###question:How many runs happened in 2013?###answer:SELECT runs FROM table_name_18 WHERE year = "2013"###context:CREATE TABLE table_name_18 (runs VARCHAR, year VARCHAR)
###question:With 42 as the match what are the runs?###answer:SELECT runs FROM table_name_42 WHERE match = "42"###context:CREATE TABLE table_name_42 (runs VARCHAR, match VARCHAR)
###question:In 2009 with 100* runs, what is the match?###answer:SELECT match FROM table_name_8 WHERE year = "2009" AND runs = "100*"###context:CREATE TABLE table_name_8 (match VARCHAR, year VARCHAR, runs VARCHAR)
###question:When the game was played in the stadium called stadium what was the match?###answer:SELECT match FROM table_name_90 WHERE "stadium" = "stadium"###context:CREATE TABLE table_name_90 (match VARCHAR)
###question:What is the 2nd round with a score of 3 - 3, and a team 1 fc gueugnon (d2)?###answer:SELECT 2 AS nd_round FROM table_name_86 WHERE score = "3 - 3" AND team_1 = "fc gueugnon (d2)"###context:CREATE TABLE table_name_86 (score VARCHAR, team_1 VARCHAR)
###question:What is the 2nd round with a score of 3 - 3, and a team 2 fc lorient (d2)?###answer:SELECT 2 AS nd_round FROM table_name_60 WHERE score = "3 - 3" AND team_2 = "fc lorient (d2)"###context:CREATE TABLE table_name_60 (score VARCHAR, team_2 VARCHAR)
###question:What is the 1st round with a team 2 paris sg (d1)?###answer:SELECT 1 AS st_round FROM table_name_91 WHERE team_2 = "paris sg (d1)"###context:CREATE TABLE table_name_91 (team_2 VARCHAR)