combined_text
stringlengths
106
1.05k
###question:What was the Attendance on Week 10?###answer:SELECT attendance FROM table_name_34 WHERE week = 10###context:CREATE TABLE table_name_34 (attendance VARCHAR, week VARCHAR)
###question:How many Points have a Home of pittsburgh, and a Score of 1–7?###answer:SELECT SUM(points) FROM table_name_11 WHERE home = "pittsburgh" AND score = "1–7"###context:CREATE TABLE table_name_11 (points INTEGER, home VARCHAR, score VARCHAR)
###question:Which Date has a Record of 7–7–1?###answer:SELECT date FROM table_name_49 WHERE record = "7–7–1"###context:CREATE TABLE table_name_49 (date VARCHAR, record VARCHAR)
###question:Which Date has a Record of 11–10–2?###answer:SELECT date FROM table_name_92 WHERE record = "11–10–2"###context:CREATE TABLE table_name_92 (date VARCHAR, record VARCHAR)
###question:Which position had 3 podiums and F/laps of 4?###answer:SELECT position FROM table_name_14 WHERE podiums = "3" AND f_laps = "4"###context:CREATE TABLE table_name_14 (position VARCHAR, podiums VARCHAR, f_laps VARCHAR)
###question:What is the number of races associated with Team ASM and 0 poles?###answer:SELECT races FROM table_name_19 WHERE poles = "0" AND team = "asm"###context:CREATE TABLE table_name_19 (races VARCHAR, poles VARCHAR, team VARCHAR)
###question:Which team had 1 race, 1 F/lap and in the series 24 hours of Nurburgring?###answer:SELECT team FROM table_name_44 WHERE races = "1" AND f_laps = "1" AND series = "24 hours of nurburgring"###context:CREATE TABLE table_name_44 (team VARCHAR, series VARCHAR, races VARCHAR, f_laps VARCHAR)
###question:What is the number of podiums associated with 4 wins?###answer:SELECT podiums FROM table_name_89 WHERE wins = "4"###context:CREATE TABLE table_name_89 (podiums VARCHAR, wins VARCHAR)
###question:What is the number of races associated with 7 podiums and a position of 4th?###answer:SELECT races FROM table_name_93 WHERE position = "4th" AND podiums = "7"###context:CREATE TABLE table_name_93 (races VARCHAR, position VARCHAR, podiums VARCHAR)
###question:What is the F/Laps value associated with a position of 3rd?###answer:SELECT f_laps FROM table_name_97 WHERE position = "3rd"###context:CREATE TABLE table_name_97 (f_laps VARCHAR, position VARCHAR)
###question:Can you tell me the Opponent that has the Time of 0:20?###answer:SELECT opponent FROM table_name_72 WHERE time = "0:20"###context:CREATE TABLE table_name_72 (opponent VARCHAR, time VARCHAR)
###question:Can you tell me the Time that has the Opponent of phil baroni?###answer:SELECT time FROM table_name_75 WHERE opponent = "phil baroni"###context:CREATE TABLE table_name_75 (time VARCHAR, opponent VARCHAR)
###question:Can you tell me the lowest Round that has the Location of indiana, united states, and the Method of submission (guillotine choke)?###answer:SELECT MIN(round) FROM table_name_6 WHERE location = "indiana, united states" AND method = "submission (guillotine choke)"###context:CREATE TABLE table_name_6 (round IN...
###question:When was la vista built?###answer:SELECT built FROM table_name_9 WHERE location = "la vista"###context:CREATE TABLE table_name_9 (built VARCHAR, location VARCHAR)
###question:When was the sargent bridge built?###answer:SELECT built FROM table_name_61 WHERE name = "sargent bridge"###context:CREATE TABLE table_name_61 (built VARCHAR, name VARCHAR)
###question:What's the location for the country of platte?###answer:SELECT location FROM table_name_64 WHERE county = "platte"###context:CREATE TABLE table_name_64 (location VARCHAR, county VARCHAR)
###question:what is the listing date for nuckolls county?###answer:SELECT listed FROM table_name_79 WHERE county = "nuckolls"###context:CREATE TABLE table_name_79 (listed VARCHAR, county VARCHAR)
###question:what's the listing date for the verdigris creek bridge in royal of antelope county?###answer:SELECT listed FROM table_name_83 WHERE county = "antelope" AND location = "royal" AND name = "verdigris creek bridge"###context:CREATE TABLE table_name_83 (listed VARCHAR, name VARCHAR, county VARCHAR, location VARC...
###question:what's the county name for the republican river bridge listed on 1992-06-29?###answer:SELECT county FROM table_name_36 WHERE listed = "1992-06-29" AND name = "republican river bridge"###context:CREATE TABLE table_name_36 (county VARCHAR, listed VARCHAR, name VARCHAR)
###question:what is the to par when the place is t10 and the score is 72-74-71-69=286?###answer:SELECT to_par FROM table_name_26 WHERE place = "t10" AND score = 72 - 74 - 71 - 69 = 286###context:CREATE TABLE table_name_26 (to_par VARCHAR, place VARCHAR, score VARCHAR)
###question:what is the to par when the player is hale irwin?###answer:SELECT to_par FROM table_name_80 WHERE player = "hale irwin"###context:CREATE TABLE table_name_80 (to_par VARCHAR, player VARCHAR)
###question:what is the to par for Dave hill?###answer:SELECT to_par FROM table_name_52 WHERE player = "dave hill"###context:CREATE TABLE table_name_52 (to_par VARCHAR, player VARCHAR)
###question:what is the place when the score is 68-67-73-68=276?###answer:SELECT place FROM table_name_20 WHERE score = 68 - 67 - 73 - 68 = 276###context:CREATE TABLE table_name_20 (place VARCHAR, score VARCHAR)
###question:Can you tell me the Date that has the Week smaller than 13, and the Opponent of green bay packers?###answer:SELECT date FROM table_name_16 WHERE week < 13 AND opponent = "green bay packers"###context:CREATE TABLE table_name_16 (date VARCHAR, week VARCHAR, opponent VARCHAR)
###question:Can you tell me the average Attendance that has the Opponent of new orleans saints, and the Week larger than 12?###answer:SELECT AVG(attendance) FROM table_name_45 WHERE opponent = "new orleans saints" AND week > 12###context:CREATE TABLE table_name_45 (attendance INTEGER, opponent VARCHAR, week VARCHAR)
###question:Can you tell me the Attendance that has the Opponent of new york giants?###answer:SELECT attendance FROM table_name_70 WHERE opponent = "new york giants"###context:CREATE TABLE table_name_70 (attendance VARCHAR, opponent VARCHAR)
###question:What is the density (hab/km²) with a population censo 2007(hab) of 336.293*?###answer:SELECT density__hab__km²__ FROM table_name_4 WHERE population_censo_2007_hab_ = "336.293*"###context:CREATE TABLE table_name_4 (density__hab__km²__ VARCHAR, population_censo_2007_hab_ VARCHAR)
###question:What is the under 1 year-old Censo 2007(hab) population with a population censo 2007(hab) of 112.054*?###answer:SELECT population_under_1_year_old_censo_2007_hab_ FROM table_name_91 WHERE population_censo_2007_hab_ = "112.054*"###context:CREATE TABLE table_name_91 (population_under_1_year_old_censo_2007_hab...
###question:What is the density (hab/km²) with a population under 1 year-old censo 2007(hab) of * data from the census taken by the Inei?###answer:SELECT density__hab__km²__ FROM table_name_21 WHERE population_under_1_year_old_censo_2007_hab_ = "* data from the census taken by the inei"###context:CREATE TABLE table_nam...
###question:What is the elevation msnm for a population censo 2007(hab) of 77.392*?###answer:SELECT elevation_msnm FROM table_name_59 WHERE population_censo_2007_hab_ = "77.392*"###context:CREATE TABLE table_name_59 (elevation_msnm VARCHAR, population_censo_2007_hab_ VARCHAR)
###question:What's the report about townsville crocodiles as an away team?###answer:SELECT report FROM table_name_35 WHERE away_team = "townsville crocodiles"###context:CREATE TABLE table_name_35 (report VARCHAR, away_team VARCHAR)
###question:What's the record of game 67?###answer:SELECT record FROM table_name_42 WHERE game = 67###context:CREATE TABLE table_name_42 (record VARCHAR, game VARCHAR)
###question:What's the score of the game against the Boston Bruins and after game 68?###answer:SELECT score FROM table_name_62 WHERE game > 68 AND opponent = "boston bruins"###context:CREATE TABLE table_name_62 (score VARCHAR, game VARCHAR, opponent VARCHAR)
###question:what is the natural change (per 1000) when the crude death rate (per 1000) is 10?###answer:SELECT natural_change__per_1000_ FROM table_name_61 WHERE crude_death_rate__per_1000_ = 10###context:CREATE TABLE table_name_61 (natural_change__per_1000_ VARCHAR, crude_death_rate__per_1000_ VARCHAR)
###question:what is the crude birth rate (per 1000) when the live births 1 is 356 013?###answer:SELECT SUM(crude_birth_rate__per_1000_) FROM table_name_72 WHERE live_births_1 = "356 013"###context:CREATE TABLE table_name_72 (crude_birth_rate__per_1000_ INTEGER, live_births_1 VARCHAR)
###question:what is the natural change (per 1000) when the live births 1 is 278 977?###answer:SELECT natural_change__per_1000_ FROM table_name_73 WHERE live_births_1 = "278 977"###context:CREATE TABLE table_name_73 (natural_change__per_1000_ VARCHAR, live_births_1 VARCHAR)
###question:Which Player has a To par of e, and a Country of united states?###answer:SELECT player FROM table_name_68 WHERE to_par = "e" AND country = "united states"###context:CREATE TABLE table_name_68 (player VARCHAR, to_par VARCHAR, country VARCHAR)
###question:Which Place has a Score smaller than 72, and a To par of −1, and a Country of spain?###answer:SELECT place FROM table_name_51 WHERE score < 72 AND to_par = "−1" AND country = "spain"###context:CREATE TABLE table_name_51 (place VARCHAR, country VARCHAR, score VARCHAR, to_par VARCHAR)
###question:What was john huston's score?###answer:SELECT score FROM table_name_56 WHERE player = "john huston"###context:CREATE TABLE table_name_56 (score VARCHAR, player VARCHAR)
###question:What was willie wood's to par?###answer:SELECT to_par FROM table_name_15 WHERE player = "willie wood"###context:CREATE TABLE table_name_15 (to_par VARCHAR, player VARCHAR)
###question:What is the Prize amount of Winner Dominik Nitsche?###answer:SELECT prize FROM table_name_15 WHERE winner = "dominik nitsche"###context:CREATE TABLE table_name_15 (prize VARCHAR, winner VARCHAR)
###question:What is the Winner of the Event in Nuevo Vallarta?###answer:SELECT winner FROM table_name_63 WHERE city = "nuevo vallarta"###context:CREATE TABLE table_name_63 (winner VARCHAR, city VARCHAR)
###question:What is the Date of the Event in Punta del Este?###answer:SELECT date FROM table_name_68 WHERE city = "punta del este"###context:CREATE TABLE table_name_68 (date VARCHAR, city VARCHAR)
###question:What is the Date of the Event with a Prize of $141,426?###answer:SELECT date FROM table_name_92 WHERE prize = "$141,426"###context:CREATE TABLE table_name_92 (date VARCHAR, prize VARCHAR)
###question:What is the title of ahaziah?###answer:SELECT title FROM table_name_16 WHERE name = "ahaziah"###context:CREATE TABLE table_name_16 (title VARCHAR, name VARCHAR)
###question:What is the type of the king title?###answer:SELECT type FROM table_name_2 WHERE title = "king"###context:CREATE TABLE table_name_2 (type VARCHAR, title VARCHAR)
###question:What is the name of the queen regnant?###answer:SELECT name FROM table_name_48 WHERE title = "queen regnant"###context:CREATE TABLE table_name_48 (name VARCHAR, title VARCHAR)
###question:What is the total number of Grid, when Rider is Aleix Espargaro?###answer:SELECT COUNT(grid) FROM table_name_2 WHERE rider = "aleix espargaro"###context:CREATE TABLE table_name_2 (grid VARCHAR, rider VARCHAR)
###question:What is the Rider, when Grid is less than 16, when Manufacturer is Aprilia, and when Time is +28.288?###answer:SELECT rider FROM table_name_23 WHERE grid < 16 AND manufacturer = "aprilia" AND time = "+28.288"###context:CREATE TABLE table_name_23 (rider VARCHAR, time VARCHAR, grid VARCHAR, manufacturer VARCH...
###question:What is the average Laps, when Grid is 15?###answer:SELECT AVG(laps) FROM table_name_74 WHERE grid = 15###context:CREATE TABLE table_name_74 (laps INTEGER, grid VARCHAR)
###question:What is the Manufacturer, when Laps is 26, and when Rider is Aleix Espargaro?###answer:SELECT manufacturer FROM table_name_47 WHERE laps = 26 AND rider = "aleix espargaro"###context:CREATE TABLE table_name_47 (manufacturer VARCHAR, laps VARCHAR, rider VARCHAR)
###question:What is Date, when Away Team is "Ipswich Town"?###answer:SELECT date FROM table_name_20 WHERE away_team = "ipswich town"###context:CREATE TABLE table_name_20 (date VARCHAR, away_team VARCHAR)
###question:What is Tie No, when Away Team is "Millwall"?###answer:SELECT tie_no FROM table_name_71 WHERE away_team = "millwall"###context:CREATE TABLE table_name_71 (tie_no VARCHAR, away_team VARCHAR)
###question:What is Score, when Date is "13 March 1985", and when Away Team is "Millwall"?###answer:SELECT score FROM table_name_67 WHERE date = "13 march 1985" AND away_team = "millwall"###context:CREATE TABLE table_name_67 (score VARCHAR, date VARCHAR, away_team VARCHAR)
###question:What is Date, when Away Team is "Liverpool"?###answer:SELECT date FROM table_name_91 WHERE away_team = "liverpool"###context:CREATE TABLE table_name_91 (date VARCHAR, away_team VARCHAR)
###question:What is Score, when Home Team is "Manchester United"?###answer:SELECT score FROM table_name_50 WHERE home_team = "manchester united"###context:CREATE TABLE table_name_50 (score VARCHAR, home_team VARCHAR)
###question:What is Team, when High Rebounds is "Carl Landry (11)"?###answer:SELECT team FROM table_name_78 WHERE high_rebounds = "carl landry (11)"###context:CREATE TABLE table_name_78 (team VARCHAR, high_rebounds VARCHAR)
###question:What is Location Attendance, when High Assists is "Rafer Alston (7)", and when High Rebounds is "Yao Ming (13)"?###answer:SELECT location_attendance FROM table_name_64 WHERE high_assists = "rafer alston (7)" AND high_rebounds = "yao ming (13)"###context:CREATE TABLE table_name_64 (location_attendance VARCHA...
###question:What is Score, when Team is "@ Memphis"?###answer:SELECT score FROM table_name_15 WHERE team = "@ memphis"###context:CREATE TABLE table_name_15 (score VARCHAR, team VARCHAR)
###question:What is the result of the ajc craven plate (wfa) race?###answer:SELECT result FROM table_name_88 WHERE race = "ajc craven plate (wfa)"###context:CREATE TABLE table_name_88 (result VARCHAR, race VARCHAR)
###question:What is the result of the sajc king's cup race, which has a weight heavier than 8.1?###answer:SELECT result FROM table_name_23 WHERE weight > 8.1 AND race = "sajc king's cup"###context:CREATE TABLE table_name_23 (result VARCHAR, weight VARCHAR, race VARCHAR)
###question:What is the race with a 10f distance and mollison as the winner or 2nd?###answer:SELECT race FROM table_name_12 WHERE distance = "10f" AND winner_or_2nd = "mollison"###context:CREATE TABLE table_name_12 (race VARCHAR, distance VARCHAR, winner_or_2nd VARCHAR)
###question:What is the highest number of Bush with a 32.40% Bush % and a total less than 5,126?###answer:SELECT MAX(bush_number) FROM table_name_87 WHERE bush_percentage = "32.40%" AND total < 5 OFFSET 126###context:CREATE TABLE table_name_87 (bush_number INTEGER, bush_percentage VARCHAR, total VARCHAR)
###question:What is the location and attendance when the score as w 117–109 (ot)?###answer:SELECT location_attendance FROM table_name_83 WHERE score = "w 117–109 (ot)"###context:CREATE TABLE table_name_83 (location_attendance VARCHAR, score VARCHAR)
###question:What were the last 5 meetings when Columbia was mu, 4-2?###answer:SELECT last_5_meetings FROM table_name_6 WHERE at_columbia = "mu, 4-2"###context:CREATE TABLE table_name_6 (last_5_meetings VARCHAR, at_columbia VARCHAR)
###question:What is the total number of rounds at 5:36?###answer:SELECT COUNT(round) FROM table_name_29 WHERE time = "5:36"###context:CREATE TABLE table_name_29 (round VARCHAR, time VARCHAR)
###question:What is the total number of rounds with a 4-0 record?###answer:SELECT COUNT(round) FROM table_name_57 WHERE record = "4-0"###context:CREATE TABLE table_name_57 (round VARCHAR, record VARCHAR)
###question:Which district is in the province of Piura?###answer:SELECT districts FROM table_name_36 WHERE province = "piura"###context:CREATE TABLE table_name_36 (districts VARCHAR, province VARCHAR)
###question:What is the population of Chimbote?###answer:SELECT SUM(population) FROM table_name_38 WHERE name_of_city = "chimbote"###context:CREATE TABLE table_name_38 (population INTEGER, name_of_city VARCHAR)
###question:What is the result of the game that was played at Detroit Lions?###answer:SELECT result FROM table_name_32 WHERE opponent = "at detroit lions"###context:CREATE TABLE table_name_32 (result VARCHAR, opponent VARCHAR)
###question:What series number was directed by milan cheylov and written by will dixon?###answer:SELECT AVG(series__number) FROM table_name_81 WHERE directed_by = "milan cheylov" AND written_by = "will dixon"###context:CREATE TABLE table_name_81 (series__number INTEGER, directed_by VARCHAR, written_by VARCHAR)
###question:What series # had an original air date of november 30, 1996?###answer:SELECT MIN(series__number) FROM table_name_52 WHERE original_air_date = "november 30, 1996"###context:CREATE TABLE table_name_52 (series__number INTEGER, original_air_date VARCHAR)
###question:What was part 4 when part 3 was *hleupun?###answer:SELECT part_4 FROM table_name_65 WHERE part_3 = "*hleupun"###context:CREATE TABLE table_name_65 (part_4 VARCHAR, part_3 VARCHAR)
###question:What was the class when part 2 was *hēt?###answer:SELECT class FROM table_name_61 WHERE part_2 = "*hēt"###context:CREATE TABLE table_name_61 (class VARCHAR, part_2 VARCHAR)
###question:What was the class when part 4 was *rādanaz?###answer:SELECT class FROM table_name_39 WHERE part_4 = "*rādanaz"###context:CREATE TABLE table_name_39 (class VARCHAR, part_4 VARCHAR)
###question:What was part 2 when part 4 was *blōtanaz?###answer:SELECT part_2 FROM table_name_67 WHERE part_4 = "*blōtanaz"###context:CREATE TABLE table_name_67 (part_2 VARCHAR, part_4 VARCHAR)
###question:What was part 2 when part 4 was *haldanaz?###answer:SELECT part_2 FROM table_name_69 WHERE part_4 = "*haldanaz"###context:CREATE TABLE table_name_69 (part_2 VARCHAR, part_4 VARCHAR)
###question:What was the class when part 3 was *heldun?###answer:SELECT class FROM table_name_79 WHERE part_3 = "*heldun"###context:CREATE TABLE table_name_79 (class VARCHAR, part_3 VARCHAR)
###question:What is the Round din Ullevaal?###answer:SELECT round FROM table_name_23 WHERE venue = "ullevaal"###context:CREATE TABLE table_name_23 (round VARCHAR, venue VARCHAR)
###question:What Round is in Ullevaal?###answer:SELECT round FROM table_name_99 WHERE venue = "ullevaal"###context:CREATE TABLE table_name_99 (round VARCHAR, venue VARCHAR)
###question:In what Venue was the Score 1-1?###answer:SELECT venue FROM table_name_76 WHERE score = "1-1"###context:CREATE TABLE table_name_76 (venue VARCHAR, score VARCHAR)
###question:What was the Score of the Semifinal 1?###answer:SELECT score FROM table_name_31 WHERE round = "semifinal 1"###context:CREATE TABLE table_name_31 (score VARCHAR, round VARCHAR)
###question:What are the ends for the player with a transfer fee of loan?###answer:SELECT ends FROM table_name_33 WHERE transfer_fee = "loan"###context:CREATE TABLE table_name_33 (ends VARCHAR, transfer_fee VARCHAR)
###question:What is the transfer fee for the MLI player with fewer than 63 goals in a year more recent than 2006?###answer:SELECT transfer_fee FROM table_name_60 WHERE since = "2006" AND goals < 63 AND nat = "mli"###context:CREATE TABLE table_name_60 (transfer_fee VARCHAR, nat VARCHAR, since VARCHAR, goals VARCHAR)
###question:What is the royal house for Wu at the state of cai?###answer:SELECT royal_house FROM table_name_45 WHERE name = "wu" AND state = "cai"###context:CREATE TABLE table_name_45 (royal_house VARCHAR, name VARCHAR, state VARCHAR)
###question:What is the state where the title is listed as count?###answer:SELECT state FROM table_name_63 WHERE title = "count"###context:CREATE TABLE table_name_63 (state VARCHAR, title VARCHAR)
###question:What is the state for the royal house of ying?###answer:SELECT state FROM table_name_58 WHERE royal_house = "ying"###context:CREATE TABLE table_name_58 (state VARCHAR, royal_house VARCHAR)
###question:Which Opponent in the final has a Score in the final of 6–2, 6–3, 2–6, 7–5?###answer:SELECT opponent_in_the_final FROM table_name_62 WHERE score_in_the_final = "6–2, 6–3, 2–6, 7–5"###context:CREATE TABLE table_name_62 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR)
###question:How many Dates have a Score in the final of 6–4, 6–2?###answer:SELECT SUM(date) FROM table_name_92 WHERE score_in_the_final = "6–4, 6–2"###context:CREATE TABLE table_name_92 (date INTEGER, score_in_the_final VARCHAR)
###question:Which Surface has an Outcome of runner-up, and a Score in the final of 4–6, 6–7, 6–2, 2–6?###answer:SELECT surface FROM table_name_87 WHERE outcome = "runner-up" AND score_in_the_final = "4–6, 6–7, 6–2, 2–6"###context:CREATE TABLE table_name_87 (surface VARCHAR, outcome VARCHAR, score_in_the_final VARCHAR)
###question:Which Opponent in the final has an Outcome of winner, and a Date larger than 1992, and a Surface of clay, and a Score in the final of 3–6, 6–2, 6–1?###answer:SELECT opponent_in_the_final FROM table_name_65 WHERE outcome = "winner" AND date > 1992 AND surface = "clay" AND score_in_the_final = "3–6, 6–2, 6–1"...
###question:Which Surface has a Score in the final of 2–6, 6–7?###answer:SELECT surface FROM table_name_42 WHERE score_in_the_final = "2–6, 6–7"###context:CREATE TABLE table_name_42 (surface VARCHAR, score_in_the_final VARCHAR)
###question:What day in November has a record of 15-6-1?###answer:SELECT AVG(november) FROM table_name_91 WHERE record = "15-6-1"###context:CREATE TABLE table_name_91 (november INTEGER, record VARCHAR)
###question:What day in November has the game less than 12?###answer:SELECT november FROM table_name_55 WHERE game < 12###context:CREATE TABLE table_name_55 (november VARCHAR, game INTEGER)
###question:What is the earliest day in November with a record of 15-7-1?###answer:SELECT MIN(november) FROM table_name_67 WHERE record = "15-7-1"###context:CREATE TABLE table_name_67 (november INTEGER, record VARCHAR)
###question:What is Finish, when Country is "South Africa"?###answer:SELECT finish FROM table_name_54 WHERE country = "south africa"###context:CREATE TABLE table_name_54 (finish VARCHAR, country VARCHAR)
###question:What is Player, when Country is "United States", and when Year(s) Won is "1976"?###answer:SELECT player FROM table_name_40 WHERE country = "united states" AND year_s__won = "1976"###context:CREATE TABLE table_name_40 (player VARCHAR, country VARCHAR, year_s__won VARCHAR)
###question:Which first round has a first team of angers sco (d1)?###answer:SELECT 1 AS st_round FROM table_name_90 WHERE team_1 = "angers sco (d1)"###context:CREATE TABLE table_name_90 (team_1 VARCHAR)
###question:In which stadium does Club Pro Patria play?###answer:SELECT stadium FROM table_name_43 WHERE club = "pro patria"###context:CREATE TABLE table_name_43 (stadium VARCHAR, club VARCHAR)
###question:What was the result of the 2007-08 season for the city of Ferrara?###answer:SELECT 2007 AS _08_season FROM table_name_33 WHERE city = "ferrara"###context:CREATE TABLE table_name_33 (city VARCHAR)