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