question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the wheel arrangement of cf-16-4, and 16 produced?
CREATE TABLE table_name_5 (wheel_arrangement VARCHAR, builder’s_model VARCHAR, total_produced VARCHAR)
SELECT wheel_arrangement FROM table_name_5 WHERE builder’s_model = "cf-16-4" AND total_produced = 16
### Context: CREATE TABLE table_name_5 (wheel_arrangement VARCHAR, builder’s_model VARCHAR, total_produced VARCHAR) ### Question: What is the wheel arrangement of cf-16-4, and 16 produced? ### Answer: SELECT wheel_arrangement FROM table_name_5 WHERE builder’s_model = "cf-16-4" AND total_produced = 16
What is the power of b-b wheel arrangement, built in 1952?
CREATE TABLE table_name_88 (power_output VARCHAR, wheel_arrangement VARCHAR, build_date VARCHAR)
SELECT power_output FROM table_name_88 WHERE wheel_arrangement = "b-b" AND build_date = "1952"
### Context: CREATE TABLE table_name_88 (power_output VARCHAR, wheel_arrangement VARCHAR, build_date VARCHAR) ### Question: What is the power of b-b wheel arrangement, built in 1952? ### Answer: SELECT power_output FROM table_name_88 WHERE wheel_arrangement = "b-b" AND build_date = "1952"
When was the build date for c-c wheel arrangement and freight service?
CREATE TABLE table_name_36 (build_date VARCHAR, service VARCHAR, wheel_arrangement VARCHAR)
SELECT build_date FROM table_name_36 WHERE service = "freight" AND wheel_arrangement = "c-c"
### Context: CREATE TABLE table_name_36 (build_date VARCHAR, service VARCHAR, wheel_arrangement VARCHAR) ### Question: When was the build date for c-c wheel arrangement and freight service? ### Answer: SELECT build_date FROM table_name_36 WHERE service = "freight" AND wheel_arrangement = "c-c"
When was the build date for ff20 PRR class and erie built builder's model?
CREATE TABLE table_name_14 (build_date VARCHAR, prr_class VARCHAR, builder’s_model VARCHAR)
SELECT build_date FROM table_name_14 WHERE prr_class = "ff20" AND builder’s_model = "erie built"
### Context: CREATE TABLE table_name_14 (build_date VARCHAR, prr_class VARCHAR, builder’s_model VARCHAR) ### Question: When was the build date for ff20 PRR class and erie built builder's model? ### Answer: SELECT build_date FROM table_name_14 WHERE prr_class = "ff20" AND builder’s_model = "erie built"
what is the debut when the play er is radoslava topalova and the years played is less than 2?
CREATE TABLE table_name_33 (debut INTEGER, player VARCHAR, years_played VARCHAR)
SELECT AVG(debut) FROM table_name_33 WHERE player = "radoslava topalova" AND years_played < 2
### Context: CREATE TABLE table_name_33 (debut INTEGER, player VARCHAR, years_played VARCHAR) ### Question: what is the debut when the play er is radoslava topalova and the years played is less than 2? ### Answer: SELECT AVG(debut) FROM table_name_33 WHERE player = "radoslava topalova" AND years_played < 2
What was the average attendance of the 2011 season that had games smaller than 519 with several teams bigger than 14 that were also part of the sport of association football?
CREATE TABLE table_name_46 (average_attendance VARCHAR, sport VARCHAR, _number_of_teams VARCHAR, season VARCHAR, games VARCHAR)
SELECT average_attendance FROM table_name_46 WHERE season = "2011" AND games < 519 AND _number_of_teams > 14 AND sport = "association football"
### Context: CREATE TABLE table_name_46 (average_attendance VARCHAR, sport VARCHAR, _number_of_teams VARCHAR, season VARCHAR, games VARCHAR) ### Question: What was the average attendance of the 2011 season that had games smaller than 519 with several teams bigger than 14 that were also part of the sport of association football? ### Answer: SELECT average_attendance FROM table_name_46 WHERE season = "2011" AND games < 519 AND _number_of_teams > 14 AND sport = "association football"
What was the total number of average attendance for games of 1311?
CREATE TABLE table_name_11 (average_attendance INTEGER, games VARCHAR)
SELECT SUM(average_attendance) FROM table_name_11 WHERE games = 1311
### Context: CREATE TABLE table_name_11 (average_attendance INTEGER, games VARCHAR) ### Question: What was the total number of average attendance for games of 1311? ### Answer: SELECT SUM(average_attendance) FROM table_name_11 WHERE games = 1311
When was the season that had more teams larger than 14 in the super rugby league?
CREATE TABLE table_name_72 (season VARCHAR, _number_of_teams VARCHAR, league VARCHAR)
SELECT season FROM table_name_72 WHERE _number_of_teams > 14 AND league = "super rugby"
### Context: CREATE TABLE table_name_72 (season VARCHAR, _number_of_teams VARCHAR, league VARCHAR) ### Question: When was the season that had more teams larger than 14 in the super rugby league? ### Answer: SELECT season FROM table_name_72 WHERE _number_of_teams > 14 AND league = "super rugby"
What is the label for the album with a catalog number of 83061-2?
CREATE TABLE table_name_96 (label VARCHAR, catalog__number VARCHAR)
SELECT label FROM table_name_96 WHERE catalog__number = "83061-2"
### Context: CREATE TABLE table_name_96 (label VARCHAR, catalog__number VARCHAR) ### Question: What is the label for the album with a catalog number of 83061-2? ### Answer: SELECT label FROM table_name_96 WHERE catalog__number = "83061-2"
What is the catalog number of the album whose region is the United Kingdom?
CREATE TABLE table_name_36 (catalog__number VARCHAR, region VARCHAR)
SELECT catalog__number FROM table_name_36 WHERE region = "united kingdom"
### Context: CREATE TABLE table_name_36 (catalog__number VARCHAR, region VARCHAR) ### Question: What is the catalog number of the album whose region is the United Kingdom? ### Answer: SELECT catalog__number FROM table_name_36 WHERE region = "united kingdom"
What is the region for the album with a catalog number of 7567-83061-2?
CREATE TABLE table_name_60 (region VARCHAR, catalog__number VARCHAR)
SELECT region FROM table_name_60 WHERE catalog__number = "7567-83061-2"
### Context: CREATE TABLE table_name_60 (region VARCHAR, catalog__number VARCHAR) ### Question: What is the region for the album with a catalog number of 7567-83061-2? ### Answer: SELECT region FROM table_name_60 WHERE catalog__number = "7567-83061-2"
What is the label for the album with a catalog number of 83061-4?
CREATE TABLE table_name_84 (label VARCHAR, catalog__number VARCHAR)
SELECT label FROM table_name_84 WHERE catalog__number = "83061-4"
### Context: CREATE TABLE table_name_84 (label VARCHAR, catalog__number VARCHAR) ### Question: What is the label for the album with a catalog number of 83061-4? ### Answer: SELECT label FROM table_name_84 WHERE catalog__number = "83061-4"
What is the catalog number of the album whose label is Atlantic Records and region is the United States?
CREATE TABLE table_name_8 (catalog__number VARCHAR, label VARCHAR, region VARCHAR)
SELECT catalog__number FROM table_name_8 WHERE label = "atlantic records" AND region = "united states"
### Context: CREATE TABLE table_name_8 (catalog__number VARCHAR, label VARCHAR, region VARCHAR) ### Question: What is the catalog number of the album whose label is Atlantic Records and region is the United States? ### Answer: SELECT catalog__number FROM table_name_8 WHERE label = "atlantic records" AND region = "united states"
What school/club team did the center Rafael Araújo play for?
CREATE TABLE table_name_78 (school_club_team VARCHAR, position VARCHAR, player VARCHAR)
SELECT school_club_team FROM table_name_78 WHERE position = "center" AND player = "rafael araújo"
### Context: CREATE TABLE table_name_78 (school_club_team VARCHAR, position VARCHAR, player VARCHAR) ### Question: What school/club team did the center Rafael Araújo play for? ### Answer: SELECT school_club_team FROM table_name_78 WHERE position = "center" AND player = "rafael araújo"
What is the nationality of the guard who played for Florida International?
CREATE TABLE table_name_53 (nationality VARCHAR, position VARCHAR, school_club_team VARCHAR)
SELECT nationality FROM table_name_53 WHERE position = "guard" AND school_club_team = "florida international"
### Context: CREATE TABLE table_name_53 (nationality VARCHAR, position VARCHAR, school_club_team VARCHAR) ### Question: What is the nationality of the guard who played for Florida International? ### Answer: SELECT nationality FROM table_name_53 WHERE position = "guard" AND school_club_team = "florida international"
What player had the position guard/forward?
CREATE TABLE table_name_83 (player VARCHAR, position VARCHAR)
SELECT player FROM table_name_83 WHERE position = "guard/forward"
### Context: CREATE TABLE table_name_83 (player VARCHAR, position VARCHAR) ### Question: What player had the position guard/forward? ### Answer: SELECT player FROM table_name_83 WHERE position = "guard/forward"
Who is the driver for laps of 45
CREATE TABLE table_name_62 (driver VARCHAR, laps VARCHAR)
SELECT driver FROM table_name_62 WHERE laps = 45
### Context: CREATE TABLE table_name_62 (driver VARCHAR, laps VARCHAR) ### Question: Who is the driver for laps of 45 ### Answer: SELECT driver FROM table_name_62 WHERE laps = 45
Who was the visiting team on December 17?
CREATE TABLE table_name_90 (visitor VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_90 WHERE date = "december 17"
### Context: CREATE TABLE table_name_90 (visitor VARCHAR, date VARCHAR) ### Question: Who was the visiting team on December 17? ### Answer: SELECT visitor FROM table_name_90 WHERE date = "december 17"
How many people were at Washington's home game against Miami?
CREATE TABLE table_name_31 (attendance VARCHAR, visitor VARCHAR, home VARCHAR)
SELECT COUNT(attendance) FROM table_name_31 WHERE visitor = "miami" AND home = "washington"
### Context: CREATE TABLE table_name_31 (attendance VARCHAR, visitor VARCHAR, home VARCHAR) ### Question: How many people were at Washington's home game against Miami? ### Answer: SELECT COUNT(attendance) FROM table_name_31 WHERE visitor = "miami" AND home = "washington"
Who was the home team that played against the visiting team Minnesota?
CREATE TABLE table_name_63 (home VARCHAR, visitor VARCHAR)
SELECT home FROM table_name_63 WHERE visitor = "minnesota"
### Context: CREATE TABLE table_name_63 (home VARCHAR, visitor VARCHAR) ### Question: Who was the home team that played against the visiting team Minnesota? ### Answer: SELECT home FROM table_name_63 WHERE visitor = "minnesota"
What was total attendance on the day they went 17-7?
CREATE TABLE table_name_17 (attendance VARCHAR, record VARCHAR)
SELECT COUNT(attendance) FROM table_name_17 WHERE record = "17-7"
### Context: CREATE TABLE table_name_17 (attendance VARCHAR, record VARCHAR) ### Question: What was total attendance on the day they went 17-7? ### Answer: SELECT COUNT(attendance) FROM table_name_17 WHERE record = "17-7"
What was the score on April 22?
CREATE TABLE table_name_53 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_53 WHERE date = "april 22"
### Context: CREATE TABLE table_name_53 (score VARCHAR, date VARCHAR) ### Question: What was the score on April 22? ### Answer: SELECT score FROM table_name_53 WHERE date = "april 22"
What event had zhamash l 1–2 in the quarterfinal?
CREATE TABLE table_name_88 (event VARCHAR, quarterfinal VARCHAR)
SELECT event FROM table_name_88 WHERE quarterfinal = "zhamash l 1–2"
### Context: CREATE TABLE table_name_88 (event VARCHAR, quarterfinal VARCHAR) ### Question: What event had zhamash l 1–2 in the quarterfinal? ### Answer: SELECT event FROM table_name_88 WHERE quarterfinal = "zhamash l 1–2"
Hossein Ojaghi participated in what semifinal.
CREATE TABLE table_name_4 (semifinal VARCHAR, athlete VARCHAR)
SELECT semifinal FROM table_name_4 WHERE athlete = "hossein ojaghi"
### Context: CREATE TABLE table_name_4 (semifinal VARCHAR, athlete VARCHAR) ### Question: Hossein Ojaghi participated in what semifinal. ### Answer: SELECT semifinal FROM table_name_4 WHERE athlete = "hossein ojaghi"
Alireza Rouzbahani did not advance to the quarterfinal in what event?
CREATE TABLE table_name_29 (event VARCHAR, quarterfinal VARCHAR, athlete VARCHAR)
SELECT event FROM table_name_29 WHERE quarterfinal = "did not advance" AND athlete = "alireza rouzbahani"
### Context: CREATE TABLE table_name_29 (event VARCHAR, quarterfinal VARCHAR, athlete VARCHAR) ### Question: Alireza Rouzbahani did not advance to the quarterfinal in what event? ### Answer: SELECT event FROM table_name_29 WHERE quarterfinal = "did not advance" AND athlete = "alireza rouzbahani"
How many games have more than 288 goals and less than 34 losses?
CREATE TABLE table_name_38 (games VARCHAR, goals_against VARCHAR, lost VARCHAR)
SELECT COUNT(games) FROM table_name_38 WHERE goals_against > 288 AND lost < 34
### Context: CREATE TABLE table_name_38 (games VARCHAR, goals_against VARCHAR, lost VARCHAR) ### Question: How many games have more than 288 goals and less than 34 losses? ### Answer: SELECT COUNT(games) FROM table_name_38 WHERE goals_against > 288 AND lost < 34
What is the lowest tie with less than 100 points and 277 goals?
CREATE TABLE table_name_57 (tied INTEGER, points VARCHAR, goals_for VARCHAR)
SELECT MIN(tied) FROM table_name_57 WHERE points < 100 AND goals_for = 277
### Context: CREATE TABLE table_name_57 (tied INTEGER, points VARCHAR, goals_for VARCHAR) ### Question: What is the lowest tie with less than 100 points and 277 goals? ### Answer: SELECT MIN(tied) FROM table_name_57 WHERE points < 100 AND goals_for = 277
What is the team with position G?
CREATE TABLE table_name_94 (team VARCHAR, position VARCHAR)
SELECT team FROM table_name_94 WHERE position = "g"
### Context: CREATE TABLE table_name_94 (team VARCHAR, position VARCHAR) ### Question: What is the team with position G? ### Answer: SELECT team FROM table_name_94 WHERE position = "g"
What is the player from Illinois?
CREATE TABLE table_name_33 (player VARCHAR, college VARCHAR)
SELECT player FROM table_name_33 WHERE college = "illinois"
### Context: CREATE TABLE table_name_33 (player VARCHAR, college VARCHAR) ### Question: What is the player from Illinois? ### Answer: SELECT player FROM table_name_33 WHERE college = "illinois"
What is the phone number of the station located at 53 Dayton Road?
CREATE TABLE table_name_46 (phone VARCHAR, address VARCHAR)
SELECT phone FROM table_name_46 WHERE address = "53 dayton road"
### Context: CREATE TABLE table_name_46 (phone VARCHAR, address VARCHAR) ### Question: What is the phone number of the station located at 53 Dayton Road? ### Answer: SELECT phone FROM table_name_46 WHERE address = "53 dayton road"
What is the name of the engine company that is located at 89 Rope Ferry Road?
CREATE TABLE table_name_35 (engine_company VARCHAR, address VARCHAR)
SELECT engine_company FROM table_name_35 WHERE address = "89 rope ferry road"
### Context: CREATE TABLE table_name_35 (engine_company VARCHAR, address VARCHAR) ### Question: What is the name of the engine company that is located at 89 Rope Ferry Road? ### Answer: SELECT engine_company FROM table_name_35 WHERE address = "89 rope ferry road"
What was the Record of the game in which the Trail Blazers was the visiting team?
CREATE TABLE table_name_24 (record VARCHAR, visitor VARCHAR)
SELECT record FROM table_name_24 WHERE visitor = "trail blazers"
### Context: CREATE TABLE table_name_24 (record VARCHAR, visitor VARCHAR) ### Question: What was the Record of the game in which the Trail Blazers was the visiting team? ### Answer: SELECT record FROM table_name_24 WHERE visitor = "trail blazers"
What was the date of the friendly match, ending in a result of 1-1?
CREATE TABLE table_name_30 (date VARCHAR, competition VARCHAR, result VARCHAR)
SELECT date FROM table_name_30 WHERE competition = "friendly match" AND result = "1-1"
### Context: CREATE TABLE table_name_30 (date VARCHAR, competition VARCHAR, result VARCHAR) ### Question: What was the date of the friendly match, ending in a result of 1-1? ### Answer: SELECT date FROM table_name_30 WHERE competition = "friendly match" AND result = "1-1"
What was the result of the game held at the As-Salt venue?
CREATE TABLE table_name_28 (result VARCHAR, venue VARCHAR)
SELECT result FROM table_name_28 WHERE venue = "as-salt"
### Context: CREATE TABLE table_name_28 (result VARCHAR, venue VARCHAR) ### Question: What was the result of the game held at the As-Salt venue? ### Answer: SELECT result FROM table_name_28 WHERE venue = "as-salt"
What was the team's record on May 17?
CREATE TABLE table_name_56 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_56 WHERE date = "may 17"
### Context: CREATE TABLE table_name_56 (record VARCHAR, date VARCHAR) ### Question: What was the team's record on May 17? ### Answer: SELECT record FROM table_name_56 WHERE date = "may 17"
Which zone had mădălina gojnea monica niculescu as the opponent?
CREATE TABLE table_name_30 (zone VARCHAR, opponents VARCHAR)
SELECT zone FROM table_name_30 WHERE opponents = "mădălina gojnea monica niculescu"
### Context: CREATE TABLE table_name_30 (zone VARCHAR, opponents VARCHAR) ### Question: Which zone had mădălina gojnea monica niculescu as the opponent? ### Answer: SELECT zone FROM table_name_30 WHERE opponents = "mădălina gojnea monica niculescu"
Who was against the opponents, mădălina gojnea monica niculescu?
CREATE TABLE table_name_94 (against VARCHAR, opponents VARCHAR)
SELECT against FROM table_name_94 WHERE opponents = "mădălina gojnea monica niculescu"
### Context: CREATE TABLE table_name_94 (against VARCHAR, opponents VARCHAR) ### Question: Who was against the opponents, mădălina gojnea monica niculescu? ### Answer: SELECT against FROM table_name_94 WHERE opponents = "mădălina gojnea monica niculescu"
What was the surface on the game with margit rüütel anett schutting as the opponent?
CREATE TABLE table_name_7 (surface VARCHAR, opponents VARCHAR)
SELECT surface FROM table_name_7 WHERE opponents = "margit rüütel anett schutting"
### Context: CREATE TABLE table_name_7 (surface VARCHAR, opponents VARCHAR) ### Question: What was the surface on the game with margit rüütel anett schutting as the opponent? ### Answer: SELECT surface FROM table_name_7 WHERE opponents = "margit rüütel anett schutting"
What is the zone of the game played against Estonia?
CREATE TABLE table_name_64 (zone VARCHAR, against VARCHAR)
SELECT zone FROM table_name_64 WHERE against = "estonia"
### Context: CREATE TABLE table_name_64 (zone VARCHAR, against VARCHAR) ### Question: What is the zone of the game played against Estonia? ### Answer: SELECT zone FROM table_name_64 WHERE against = "estonia"
Who had the high rebounds on February 24?
CREATE TABLE table_name_36 (high_rebounds VARCHAR, date VARCHAR)
SELECT high_rebounds FROM table_name_36 WHERE date = "february 24"
### Context: CREATE TABLE table_name_36 (high_rebounds VARCHAR, date VARCHAR) ### Question: Who had the high rebounds on February 24? ### Answer: SELECT high_rebounds FROM table_name_36 WHERE date = "february 24"
On February 10, what was the location attendance?
CREATE TABLE table_name_49 (location_attendance VARCHAR, date VARCHAR)
SELECT location_attendance FROM table_name_49 WHERE date = "february 10"
### Context: CREATE TABLE table_name_49 (location_attendance VARCHAR, date VARCHAR) ### Question: On February 10, what was the location attendance? ### Answer: SELECT location_attendance FROM table_name_49 WHERE date = "february 10"
Tell me the player with econ of 4.23
CREATE TABLE table_name_40 (player VARCHAR, econ VARCHAR)
SELECT player FROM table_name_40 WHERE econ = "4.23"
### Context: CREATE TABLE table_name_40 (player VARCHAR, econ VARCHAR) ### Question: Tell me the player with econ of 4.23 ### Answer: SELECT player FROM table_name_40 WHERE econ = "4.23"
Tell me the runs for b lee
CREATE TABLE table_name_15 (runs VARCHAR, player VARCHAR)
SELECT runs FROM table_name_15 WHERE player = "b lee"
### Context: CREATE TABLE table_name_15 (runs VARCHAR, player VARCHAR) ### Question: Tell me the runs for b lee ### Answer: SELECT runs FROM table_name_15 WHERE player = "b lee"
Tell me the player with overs of 87.4
CREATE TABLE table_name_91 (player VARCHAR, overs VARCHAR)
SELECT player FROM table_name_91 WHERE overs = "87.4"
### Context: CREATE TABLE table_name_91 (player VARCHAR, overs VARCHAR) ### Question: Tell me the player with overs of 87.4 ### Answer: SELECT player FROM table_name_91 WHERE overs = "87.4"
Tell me the runs for econ of 3.63
CREATE TABLE table_name_80 (runs VARCHAR, econ VARCHAR)
SELECT runs FROM table_name_80 WHERE econ = "3.63"
### Context: CREATE TABLE table_name_80 (runs VARCHAR, econ VARCHAR) ### Question: Tell me the runs for econ of 3.63 ### Answer: SELECT runs FROM table_name_80 WHERE econ = "3.63"
Tell me the wkts for econ of 4.23
CREATE TABLE table_name_13 (wkts VARCHAR, econ VARCHAR)
SELECT wkts FROM table_name_13 WHERE econ = "4.23"
### Context: CREATE TABLE table_name_13 (wkts VARCHAR, econ VARCHAR) ### Question: Tell me the wkts for econ of 4.23 ### Answer: SELECT wkts FROM table_name_13 WHERE econ = "4.23"
Tell me the overs for mdns of 4
CREATE TABLE table_name_66 (overs VARCHAR, mdns VARCHAR)
SELECT overs FROM table_name_66 WHERE mdns = "4"
### Context: CREATE TABLE table_name_66 (overs VARCHAR, mdns VARCHAR) ### Question: Tell me the overs for mdns of 4 ### Answer: SELECT overs FROM table_name_66 WHERE mdns = "4"
If collingwood is playing away, who played as the home team?
CREATE TABLE table_name_43 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_43 WHERE away_team = "collingwood"
### Context: CREATE TABLE table_name_43 (home_team VARCHAR, away_team VARCHAR) ### Question: If collingwood is playing away, who played as the home team? ### Answer: SELECT home_team FROM table_name_43 WHERE away_team = "collingwood"
What was the away teams score when they played at kardinia park?
CREATE TABLE table_name_7 (away_team VARCHAR, venue VARCHAR)
SELECT away_team AS score FROM table_name_7 WHERE venue = "kardinia park"
### Context: CREATE TABLE table_name_7 (away_team VARCHAR, venue VARCHAR) ### Question: What was the away teams score when they played at kardinia park? ### Answer: SELECT away_team AS score FROM table_name_7 WHERE venue = "kardinia park"
What's the highest turnout when carlton was playing as the away team?
CREATE TABLE table_name_29 (crowd INTEGER, away_team VARCHAR)
SELECT MAX(crowd) FROM table_name_29 WHERE away_team = "carlton"
### Context: CREATE TABLE table_name_29 (crowd INTEGER, away_team VARCHAR) ### Question: What's the highest turnout when carlton was playing as the away team? ### Answer: SELECT MAX(crowd) FROM table_name_29 WHERE away_team = "carlton"
What away team played when the crowd was over 27,463 people?
CREATE TABLE table_name_69 (away_team VARCHAR, crowd INTEGER)
SELECT away_team FROM table_name_69 WHERE crowd > 27 OFFSET 463
### Context: CREATE TABLE table_name_69 (away_team VARCHAR, crowd INTEGER) ### Question: What away team played when the crowd was over 27,463 people? ### Answer: SELECT away_team FROM table_name_69 WHERE crowd > 27 OFFSET 463
On waht date did Antoinette Jeanne Yvonne Boegner get married?
CREATE TABLE table_name_28 (marriage VARCHAR, spouse VARCHAR)
SELECT marriage FROM table_name_28 WHERE spouse = "antoinette jeanne yvonne boegner"
### Context: CREATE TABLE table_name_28 (marriage VARCHAR, spouse VARCHAR) ### Question: On waht date did Antoinette Jeanne Yvonne Boegner get married? ### Answer: SELECT marriage FROM table_name_28 WHERE spouse = "antoinette jeanne yvonne boegner"
What is the largest Crowd number for the Home team of North Melbourne?
CREATE TABLE table_name_3 (crowd INTEGER, home_team VARCHAR)
SELECT MAX(crowd) FROM table_name_3 WHERE home_team = "north melbourne"
### Context: CREATE TABLE table_name_3 (crowd INTEGER, home_team VARCHAR) ### Question: What is the largest Crowd number for the Home team of North Melbourne? ### Answer: SELECT MAX(crowd) FROM table_name_3 WHERE home_team = "north melbourne"
What home team did South Melbourne play as the away team?
CREATE TABLE table_name_19 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_19 WHERE away_team = "south melbourne"
### Context: CREATE TABLE table_name_19 (home_team VARCHAR, away_team VARCHAR) ### Question: What home team did South Melbourne play as the away team? ### Answer: SELECT home_team FROM table_name_19 WHERE away_team = "south melbourne"
What did the home team score against the away team Hawthorn?
CREATE TABLE table_name_30 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team AS score FROM table_name_30 WHERE away_team = "hawthorn"
### Context: CREATE TABLE table_name_30 (home_team VARCHAR, away_team VARCHAR) ### Question: What did the home team score against the away team Hawthorn? ### Answer: SELECT home_team AS score FROM table_name_30 WHERE away_team = "hawthorn"
In the Western Oval venue, what is the average crowd?
CREATE TABLE table_name_38 (crowd INTEGER, venue VARCHAR)
SELECT AVG(crowd) FROM table_name_38 WHERE venue = "western oval"
### Context: CREATE TABLE table_name_38 (crowd INTEGER, venue VARCHAR) ### Question: In the Western Oval venue, what is the average crowd? ### Answer: SELECT AVG(crowd) FROM table_name_38 WHERE venue = "western oval"
When Richmond is the away team, what is the crowd size?
CREATE TABLE table_name_23 (crowd VARCHAR, away_team VARCHAR)
SELECT crowd FROM table_name_23 WHERE away_team = "richmond"
### Context: CREATE TABLE table_name_23 (crowd VARCHAR, away_team VARCHAR) ### Question: When Richmond is the away team, what is the crowd size? ### Answer: SELECT crowd FROM table_name_23 WHERE away_team = "richmond"
Who is the person from round 8?
CREATE TABLE table_name_60 (name VARCHAR, round VARCHAR)
SELECT name FROM table_name_60 WHERE round = 8
### Context: CREATE TABLE table_name_60 (name VARCHAR, round VARCHAR) ### Question: Who is the person from round 8? ### Answer: SELECT name FROM table_name_60 WHERE round = 8
What is the round for Arizona with a pick over 100?
CREATE TABLE table_name_48 (round INTEGER, school VARCHAR, pick VARCHAR)
SELECT AVG(round) FROM table_name_48 WHERE school = "arizona" AND pick > 100
### Context: CREATE TABLE table_name_48 (round INTEGER, school VARCHAR, pick VARCHAR) ### Question: What is the round for Arizona with a pick over 100? ### Answer: SELECT AVG(round) FROM table_name_48 WHERE school = "arizona" AND pick > 100
What pick had a wide receiver named johnny holloway?
CREATE TABLE table_name_66 (pick VARCHAR, position VARCHAR, name VARCHAR)
SELECT pick FROM table_name_66 WHERE position = "wide receiver" AND name = "johnny holloway"
### Context: CREATE TABLE table_name_66 (pick VARCHAR, position VARCHAR, name VARCHAR) ### Question: What pick had a wide receiver named johnny holloway? ### Answer: SELECT pick FROM table_name_66 WHERE position = "wide receiver" AND name = "johnny holloway"
Which score has a Home Team of saskatoon accelerators?
CREATE TABLE table_name_61 (score VARCHAR, home_team VARCHAR)
SELECT score FROM table_name_61 WHERE home_team = "saskatoon accelerators"
### Context: CREATE TABLE table_name_61 (score VARCHAR, home_team VARCHAR) ### Question: Which score has a Home Team of saskatoon accelerators? ### Answer: SELECT score FROM table_name_61 WHERE home_team = "saskatoon accelerators"
Which Visiting Team has a Stadium of servus centre on march 7?
CREATE TABLE table_name_56 (visiting_team VARCHAR, stadium VARCHAR, date VARCHAR)
SELECT visiting_team FROM table_name_56 WHERE stadium = "servus centre" AND date = "march 7"
### Context: CREATE TABLE table_name_56 (visiting_team VARCHAR, stadium VARCHAR, date VARCHAR) ### Question: Which Visiting Team has a Stadium of servus centre on march 7? ### Answer: SELECT visiting_team FROM table_name_56 WHERE stadium = "servus centre" AND date = "march 7"
Which Visiting Team has a Stadium of servus centre?
CREATE TABLE table_name_82 (visiting_team VARCHAR, stadium VARCHAR)
SELECT visiting_team FROM table_name_82 WHERE stadium = "servus centre"
### Context: CREATE TABLE table_name_82 (visiting_team VARCHAR, stadium VARCHAR) ### Question: Which Visiting Team has a Stadium of servus centre? ### Answer: SELECT visiting_team FROM table_name_82 WHERE stadium = "servus centre"
How many heavy attacks did the 450 Luftflotte 2 conduct?
CREATE TABLE table_name_29 (heavy_attacks VARCHAR, luftflotte_2_sorties VARCHAR)
SELECT COUNT(heavy_attacks) FROM table_name_29 WHERE luftflotte_2_sorties = 450
### Context: CREATE TABLE table_name_29 (heavy_attacks VARCHAR, luftflotte_2_sorties VARCHAR) ### Question: How many heavy attacks did the 450 Luftflotte 2 conduct? ### Answer: SELECT COUNT(heavy_attacks) FROM table_name_29 WHERE luftflotte_2_sorties = 450
What is the time/retired for grid 19?
CREATE TABLE table_name_40 (time_retired VARCHAR, grid VARCHAR)
SELECT time_retired FROM table_name_40 WHERE grid = 19
### Context: CREATE TABLE table_name_40 (time_retired VARCHAR, grid VARCHAR) ### Question: What is the time/retired for grid 19? ### Answer: SELECT time_retired FROM table_name_40 WHERE grid = 19
What is the grid total for bruce mclaren with over 73 laps?
CREATE TABLE table_name_14 (grid INTEGER, laps VARCHAR, driver VARCHAR)
SELECT SUM(grid) FROM table_name_14 WHERE laps > 73 AND driver = "bruce mclaren"
### Context: CREATE TABLE table_name_14 (grid INTEGER, laps VARCHAR, driver VARCHAR) ### Question: What is the grid total for bruce mclaren with over 73 laps? ### Answer: SELECT SUM(grid) FROM table_name_14 WHERE laps > 73 AND driver = "bruce mclaren"
What film was released in 1971?
CREATE TABLE table_name_66 (film VARCHAR, year VARCHAR)
SELECT film FROM table_name_66 WHERE year = 1971
### Context: CREATE TABLE table_name_66 (film VARCHAR, year VARCHAR) ### Question: What film was released in 1971? ### Answer: SELECT film FROM table_name_66 WHERE year = 1971
When was steve bartalo picked?
CREATE TABLE table_name_79 (pick INTEGER, player VARCHAR)
SELECT MAX(pick) FROM table_name_79 WHERE player = "steve bartalo"
### Context: CREATE TABLE table_name_79 (pick INTEGER, player VARCHAR) ### Question: When was steve bartalo picked? ### Answer: SELECT MAX(pick) FROM table_name_79 WHERE player = "steve bartalo"
What player is a cornerback?
CREATE TABLE table_name_57 (player VARCHAR, position VARCHAR)
SELECT player FROM table_name_57 WHERE position = "cornerback"
### Context: CREATE TABLE table_name_57 (player VARCHAR, position VARCHAR) ### Question: What player is a cornerback? ### Answer: SELECT player FROM table_name_57 WHERE position = "cornerback"
Windy hill is the home to what team?
CREATE TABLE table_name_85 (home_team VARCHAR, venue VARCHAR)
SELECT home_team FROM table_name_85 WHERE venue = "windy hill"
### Context: CREATE TABLE table_name_85 (home_team VARCHAR, venue VARCHAR) ### Question: Windy hill is the home to what team? ### Answer: SELECT home_team FROM table_name_85 WHERE venue = "windy hill"
What is the name of the competition with a score of 1-5?
CREATE TABLE table_name_49 (competition VARCHAR, score VARCHAR)
SELECT competition FROM table_name_49 WHERE score = "1-5"
### Context: CREATE TABLE table_name_49 (competition VARCHAR, score VARCHAR) ### Question: What is the name of the competition with a score of 1-5? ### Answer: SELECT competition FROM table_name_49 WHERE score = "1-5"
What is the name of the competition with opponents of Sv Werder Bremen and a score of 1-2?
CREATE TABLE table_name_37 (competition VARCHAR, opponents VARCHAR, score VARCHAR)
SELECT competition FROM table_name_37 WHERE opponents = "sv werder bremen" AND score = "1-2"
### Context: CREATE TABLE table_name_37 (competition VARCHAR, opponents VARCHAR, score VARCHAR) ### Question: What is the name of the competition with opponents of Sv Werder Bremen and a score of 1-2? ### Answer: SELECT competition FROM table_name_37 WHERE opponents = "sv werder bremen" AND score = "1-2"
What regular season result had an average attendance less than 942?
CREATE TABLE table_name_16 (reg_season VARCHAR, avg_attendance INTEGER)
SELECT reg_season FROM table_name_16 WHERE avg_attendance < 942
### Context: CREATE TABLE table_name_16 (reg_season VARCHAR, avg_attendance INTEGER) ### Question: What regular season result had an average attendance less than 942? ### Answer: SELECT reg_season FROM table_name_16 WHERE avg_attendance < 942
Which league had a playoffs result of a lost semifinal?
CREATE TABLE table_name_31 (league VARCHAR, playoffs VARCHAR)
SELECT league FROM table_name_31 WHERE playoffs = "lost semifinal"
### Context: CREATE TABLE table_name_31 (league VARCHAR, playoffs VARCHAR) ### Question: Which league had a playoffs result of a lost semifinal? ### Answer: SELECT league FROM table_name_31 WHERE playoffs = "lost semifinal"
What regular season result had an average attendance bigger than 3,170?
CREATE TABLE table_name_67 (reg_season VARCHAR, avg_attendance INTEGER)
SELECT reg_season FROM table_name_67 WHERE avg_attendance > 3 OFFSET 170
### Context: CREATE TABLE table_name_67 (reg_season VARCHAR, avg_attendance INTEGER) ### Question: What regular season result had an average attendance bigger than 3,170? ### Answer: SELECT reg_season FROM table_name_67 WHERE avg_attendance > 3 OFFSET 170
what is the length (miles) when the east or north terminus is ne 2 in lincoln?
CREATE TABLE table_name_95 (length__miles_ VARCHAR, east_or_north_terminus VARCHAR)
SELECT COUNT(length__miles_) FROM table_name_95 WHERE east_or_north_terminus = "ne 2 in lincoln"
### Context: CREATE TABLE table_name_95 (length__miles_ VARCHAR, east_or_north_terminus VARCHAR) ### Question: what is the length (miles) when the east or north terminus is ne 2 in lincoln? ### Answer: SELECT COUNT(length__miles_) FROM table_name_95 WHERE east_or_north_terminus = "ne 2 in lincoln"
what is the length (miles) when the name is l-56g?
CREATE TABLE table_name_19 (length__miles_ INTEGER, name VARCHAR)
SELECT MAX(length__miles_) FROM table_name_19 WHERE name = "l-56g"
### Context: CREATE TABLE table_name_19 (length__miles_ INTEGER, name VARCHAR) ### Question: what is the length (miles) when the name is l-56g? ### Answer: SELECT MAX(length__miles_) FROM table_name_19 WHERE name = "l-56g"
what is the name when the west or south terminus is ne 112 west of blue springs?
CREATE TABLE table_name_63 (name VARCHAR, west_or_south_terminus VARCHAR)
SELECT name FROM table_name_63 WHERE west_or_south_terminus = "ne 112 west of blue springs"
### Context: CREATE TABLE table_name_63 (name VARCHAR, west_or_south_terminus VARCHAR) ### Question: what is the name when the west or south terminus is ne 112 west of blue springs? ### Answer: SELECT name FROM table_name_63 WHERE west_or_south_terminus = "ne 112 west of blue springs"
What is the Time/Retired value for Driver Johnny Herbert with Constructor Benetton - Renault
CREATE TABLE table_name_38 (time_retired VARCHAR, constructor VARCHAR, driver VARCHAR)
SELECT time_retired FROM table_name_38 WHERE constructor = "benetton - renault" AND driver = "johnny herbert"
### Context: CREATE TABLE table_name_38 (time_retired VARCHAR, constructor VARCHAR, driver VARCHAR) ### Question: What is the Time/Retired value for Driver Johnny Herbert with Constructor Benetton - Renault ### Answer: SELECT time_retired FROM table_name_38 WHERE constructor = "benetton - renault" AND driver = "johnny herbert"
What is the Time/Retired value for constructor Jordan - Peugeot with 66 laps and grid value 5?
CREATE TABLE table_name_50 (time_retired VARCHAR, grid VARCHAR, laps VARCHAR, constructor VARCHAR)
SELECT time_retired FROM table_name_50 WHERE laps = "66" AND constructor = "jordan - peugeot" AND grid = "5"
### Context: CREATE TABLE table_name_50 (time_retired VARCHAR, grid VARCHAR, laps VARCHAR, constructor VARCHAR) ### Question: What is the Time/Retired value for constructor Jordan - Peugeot with 66 laps and grid value 5? ### Answer: SELECT time_retired FROM table_name_50 WHERE laps = "66" AND constructor = "jordan - peugeot" AND grid = "5"
What is the Time/Retired value of driver Pedro Diniz?
CREATE TABLE table_name_7 (time_retired VARCHAR, driver VARCHAR)
SELECT time_retired FROM table_name_7 WHERE driver = "pedro diniz"
### Context: CREATE TABLE table_name_7 (time_retired VARCHAR, driver VARCHAR) ### Question: What is the Time/Retired value of driver Pedro Diniz? ### Answer: SELECT time_retired FROM table_name_7 WHERE driver = "pedro diniz"
Which driver has grid value of 18?
CREATE TABLE table_name_45 (driver VARCHAR, grid VARCHAR)
SELECT driver FROM table_name_45 WHERE grid = "18"
### Context: CREATE TABLE table_name_45 (driver VARCHAR, grid VARCHAR) ### Question: Which driver has grid value of 18? ### Answer: SELECT driver FROM table_name_45 WHERE grid = "18"
What is the constructor with grid value 5?
CREATE TABLE table_name_54 (constructor VARCHAR, grid VARCHAR)
SELECT constructor FROM table_name_54 WHERE grid = "5"
### Context: CREATE TABLE table_name_54 (constructor VARCHAR, grid VARCHAR) ### Question: What is the constructor with grid value 5? ### Answer: SELECT constructor FROM table_name_54 WHERE grid = "5"
What is the grid value which has Time/Retired value of accident?
CREATE TABLE table_name_57 (grid VARCHAR, time_retired VARCHAR)
SELECT grid FROM table_name_57 WHERE time_retired = "accident"
### Context: CREATE TABLE table_name_57 (grid VARCHAR, time_retired VARCHAR) ### Question: What is the grid value which has Time/Retired value of accident? ### Answer: SELECT grid FROM table_name_57 WHERE time_retired = "accident"
Who was the leading scorer that was a visitor of the Trail Blazers?
CREATE TABLE table_name_35 (leading_scorer VARCHAR, visitor VARCHAR)
SELECT leading_scorer FROM table_name_35 WHERE visitor = "trail blazers"
### Context: CREATE TABLE table_name_35 (leading_scorer VARCHAR, visitor VARCHAR) ### Question: Who was the leading scorer that was a visitor of the Trail Blazers? ### Answer: SELECT leading_scorer FROM table_name_35 WHERE visitor = "trail blazers"
Who is the leading scorer when they were at home of the Clippers?
CREATE TABLE table_name_51 (leading_scorer VARCHAR, home VARCHAR)
SELECT leading_scorer FROM table_name_51 WHERE home = "clippers"
### Context: CREATE TABLE table_name_51 (leading_scorer VARCHAR, home VARCHAR) ### Question: Who is the leading scorer when they were at home of the Clippers? ### Answer: SELECT leading_scorer FROM table_name_51 WHERE home = "clippers"
Who was the visitor on January 19, 2008?
CREATE TABLE table_name_38 (visitor VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_38 WHERE date = "january 19, 2008"
### Context: CREATE TABLE table_name_38 (visitor VARCHAR, date VARCHAR) ### Question: Who was the visitor on January 19, 2008? ### Answer: SELECT visitor FROM table_name_38 WHERE date = "january 19, 2008"
What was the score when there was a visitor of Magic and at home with the Clippers?
CREATE TABLE table_name_54 (score VARCHAR, visitor VARCHAR, home VARCHAR)
SELECT score FROM table_name_54 WHERE visitor = "magic" AND home = "clippers"
### Context: CREATE TABLE table_name_54 (score VARCHAR, visitor VARCHAR, home VARCHAR) ### Question: What was the score when there was a visitor of Magic and at home with the Clippers? ### Answer: SELECT score FROM table_name_54 WHERE visitor = "magic" AND home = "clippers"
How many games for keith j. miller, who debuted after 1974 with less than 1 goal?
CREATE TABLE table_name_28 (games INTEGER, debut_year VARCHAR, goals VARCHAR, player VARCHAR)
SELECT AVG(games) FROM table_name_28 WHERE goals < 1 AND player = "keith j. miller" AND debut_year > 1974
### Context: CREATE TABLE table_name_28 (games INTEGER, debut_year VARCHAR, goals VARCHAR, player VARCHAR) ### Question: How many games for keith j. miller, who debuted after 1974 with less than 1 goal? ### Answer: SELECT AVG(games) FROM table_name_28 WHERE goals < 1 AND player = "keith j. miller" AND debut_year > 1974
What is the highest crowd when carlton is the away team?
CREATE TABLE table_name_62 (crowd INTEGER, away_team VARCHAR)
SELECT MAX(crowd) FROM table_name_62 WHERE away_team = "carlton"
### Context: CREATE TABLE table_name_62 (crowd INTEGER, away_team VARCHAR) ### Question: What is the highest crowd when carlton is the away team? ### Answer: SELECT MAX(crowd) FROM table_name_62 WHERE away_team = "carlton"
What is the highest crowd at mcg?
CREATE TABLE table_name_72 (crowd INTEGER, venue VARCHAR)
SELECT MAX(crowd) FROM table_name_72 WHERE venue = "mcg"
### Context: CREATE TABLE table_name_72 (crowd INTEGER, venue VARCHAR) ### Question: What is the highest crowd at mcg? ### Answer: SELECT MAX(crowd) FROM table_name_72 WHERE venue = "mcg"
How many grids are associated with a Time/Retired of +1.837?
CREATE TABLE table_name_87 (grid VARCHAR, time_retired VARCHAR)
SELECT COUNT(grid) FROM table_name_87 WHERE time_retired = "+1.837"
### Context: CREATE TABLE table_name_87 (grid VARCHAR, time_retired VARCHAR) ### Question: How many grids are associated with a Time/Retired of +1.837? ### Answer: SELECT COUNT(grid) FROM table_name_87 WHERE time_retired = "+1.837"
What is the hometown of the player that attends UCLA?
CREATE TABLE table_name_99 (hometown VARCHAR, college VARCHAR)
SELECT hometown FROM table_name_99 WHERE college = "ucla"
### Context: CREATE TABLE table_name_99 (hometown VARCHAR, college VARCHAR) ### Question: What is the hometown of the player that attends UCLA? ### Answer: SELECT hometown FROM table_name_99 WHERE college = "ucla"
What college is getting a player that attends Wichita Heights High School?
CREATE TABLE table_name_32 (college VARCHAR, school VARCHAR)
SELECT college FROM table_name_32 WHERE school = "wichita heights high school"
### Context: CREATE TABLE table_name_32 (college VARCHAR, school VARCHAR) ### Question: What college is getting a player that attends Wichita Heights High School? ### Answer: SELECT college FROM table_name_32 WHERE school = "wichita heights high school"
What is the hometown of Cody Zeller?
CREATE TABLE table_name_83 (hometown VARCHAR, player VARCHAR)
SELECT hometown FROM table_name_83 WHERE player = "cody zeller"
### Context: CREATE TABLE table_name_83 (hometown VARCHAR, player VARCHAR) ### Question: What is the hometown of Cody Zeller? ### Answer: SELECT hometown FROM table_name_83 WHERE player = "cody zeller"
What player's hometown is Washington, IN?
CREATE TABLE table_name_83 (player VARCHAR, hometown VARCHAR)
SELECT player FROM table_name_83 WHERE hometown = "washington, in"
### Context: CREATE TABLE table_name_83 (player VARCHAR, hometown VARCHAR) ### Question: What player's hometown is Washington, IN? ### Answer: SELECT player FROM table_name_83 WHERE hometown = "washington, in"
What is the %2006 that has fewer seats than 23 in Seats 2001, more seats than 4 in 2006 Seats, and a % in 2001 of 25.4?
CREATE TABLE table_name_12 (_percentage_2006 VARCHAR, _percentage_2001 VARCHAR, seats_2001 VARCHAR, seats_2006 VARCHAR)
SELECT _percentage_2006 FROM table_name_12 WHERE seats_2001 < 23 AND seats_2006 > 4 AND _percentage_2001 = 25.4
### Context: CREATE TABLE table_name_12 (_percentage_2006 VARCHAR, _percentage_2001 VARCHAR, seats_2001 VARCHAR, seats_2006 VARCHAR) ### Question: What is the %2006 that has fewer seats than 23 in Seats 2001, more seats than 4 in 2006 Seats, and a % in 2001 of 25.4? ### Answer: SELECT _percentage_2006 FROM table_name_12 WHERE seats_2001 < 23 AND seats_2006 > 4 AND _percentage_2001 = 25.4
When the %2001 is more than 61.4, and the %2006 fewer than 54.1, how many Seats in 2001 were there?
CREATE TABLE table_name_30 (seats_2001 INTEGER, _percentage_2001 VARCHAR, _percentage_2006 VARCHAR)
SELECT SUM(seats_2001) FROM table_name_30 WHERE _percentage_2001 > 61.4 AND _percentage_2006 < 54.1
### Context: CREATE TABLE table_name_30 (seats_2001 INTEGER, _percentage_2001 VARCHAR, _percentage_2006 VARCHAR) ### Question: When the %2001 is more than 61.4, and the %2006 fewer than 54.1, how many Seats in 2001 were there? ### Answer: SELECT SUM(seats_2001) FROM table_name_30 WHERE _percentage_2001 > 61.4 AND _percentage_2006 < 54.1
What is the highest number of Seats 2006 held by the Christian Democratic Union of Germany Party/Voter Community, with a %2006 higher than 24.6?
CREATE TABLE table_name_79 (seats_2006 INTEGER, parties_and_voter_communities VARCHAR, _percentage_2006 VARCHAR)
SELECT MAX(seats_2006) FROM table_name_79 WHERE parties_and_voter_communities = "christian democratic union of germany" AND _percentage_2006 > 24.6
### Context: CREATE TABLE table_name_79 (seats_2006 INTEGER, parties_and_voter_communities VARCHAR, _percentage_2006 VARCHAR) ### Question: What is the highest number of Seats 2006 held by the Christian Democratic Union of Germany Party/Voter Community, with a %2006 higher than 24.6? ### Answer: SELECT MAX(seats_2006) FROM table_name_79 WHERE parties_and_voter_communities = "christian democratic union of germany" AND _percentage_2006 > 24.6
What is the highest number of Seats 2006 held by the communities of Bürger Für Groß-Rohrheim Party/Voter Community, with a %2006 less than 21.3?
CREATE TABLE table_name_5 (seats_2006 INTEGER, parties_and_voter_communities VARCHAR, _percentage_2006 VARCHAR)
SELECT MAX(seats_2006) FROM table_name_5 WHERE parties_and_voter_communities = "bürger für groß-rohrheim" AND _percentage_2006 < 21.3
### Context: CREATE TABLE table_name_5 (seats_2006 INTEGER, parties_and_voter_communities VARCHAR, _percentage_2006 VARCHAR) ### Question: What is the highest number of Seats 2006 held by the communities of Bürger Für Groß-Rohrheim Party/Voter Community, with a %2006 less than 21.3? ### Answer: SELECT MAX(seats_2006) FROM table_name_5 WHERE parties_and_voter_communities = "bürger für groß-rohrheim" AND _percentage_2006 < 21.3