question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
Where was the game played when the result/margin was won by 70?
columns: - name: venue type: VARCHAR - name: result_margin type: VARCHAR table: table_24919137_2
SELECT venue FROM table_24919137_2 WHERE result_margin = "WON by 70"
What location has October 10 as date?
columns: - name: location type: VARCHAR - name: date type: VARCHAR table: table_name_64
SELECT location FROM table_name_64 WHERE date = "october 10"
Tell me the sum of Year for outcome of runner-up for world darts championship
columns: - name: year type: INTEGER - name: outcome type: VARCHAR - name: championship type: VARCHAR table: table_name_41
SELECT SUM(year) FROM table_name_41 WHERE outcome = "runner-up" AND championship = "world darts championship"
How many types are there for the measure where there were 312680 yes votes?
columns: - name: type type: VARCHAR - name: yes_votes type: VARCHAR table: table_256286_45
SELECT COUNT(type) FROM table_256286_45 WHERE yes_votes = 312680
What is the lowest Decile for a school with a roll smaller than 3?
columns: - name: decile type: INTEGER - name: roll type: INTEGER table: table_name_40
SELECT MIN(decile) FROM table_name_40 WHERE roll < 3
What is the License when the Platform is windows and the Name is Altirra?
columns: - name: license type: VARCHAR - name: platform type: VARCHAR - name: name type: VARCHAR table: table_name_98
SELECT license FROM table_name_98 WHERE platform = "windows" AND name = "altirra"
What is Points, when Tries For is "correct as of 00:00 11 June 2008"?
columns: - name: points type: VARCHAR - name: tries_for type: VARCHAR table: table_name_90
SELECT points FROM table_name_90 WHERE tries_for = "correct as of 00:00 11 june 2008"
What Avoirdupois value has a Russian of берковец?
columns: - name: avoirdupois_value type: VARCHAR - name: russian type: VARCHAR table: table_name_37
SELECT avoirdupois_value FROM table_name_37 WHERE russian = "берковец"
What is the Elmers End with a 09:54 Bingham Road?
columns: - name: elmers_end type: VARCHAR - name: bingham_road type: VARCHAR table: table_name_65
SELECT elmers_end FROM table_name_65 WHERE bingham_road = "09:54"
What is the Venue with a Date with 27-02-2003?
columns: - name: venue type: VARCHAR - name: date type: VARCHAR table: table_name_22
SELECT venue FROM table_name_22 WHERE date = "27-02-2003"
What distance did the winning horse run in the Summer Doldrums.
columns: - name: distance type: VARCHAR - name: winning_horse type: VARCHAR table: table_name_7
SELECT distance FROM table_name_7 WHERE winning_horse = "summer doldrums"
What is Date, when Record is 12-58?
columns: - name: date type: VARCHAR - name: record type: VARCHAR table: table_name_31
SELECT date FROM table_name_31 WHERE record = "12-58"
What is the smallest number of tries for in a game?
columns: - name: tries_for type: INTEGER table: table_16770037_3
SELECT MIN(tries_for) FROM table_16770037_3
Whent he start was 15, what was the Qual?
columns: - name: qual type: VARCHAR - name: start type: VARCHAR table: table_name_4
SELECT qual FROM table_name_4 WHERE start = "15"
What was the surface for the game that was played with partner Tiya Rolle?
columns: - name: surface type: VARCHAR - name: partner type: VARCHAR table: table_name_35
SELECT surface FROM table_name_35 WHERE partner = "tiya rolle"
How many touchdowns were the when there was more than 1.0 extra point?
columns: - name: touchdowns type: VARCHAR - name: extra_points type: INTEGER table: table_25730123_2
SELECT touchdowns FROM table_25730123_2 WHERE extra_points > 1.0
Which Set 2 has a Date of 25 may, and a Set 3 of 21–25?
columns: - name: set_2 type: VARCHAR - name: date type: VARCHAR - name: set_3 type: VARCHAR table: table_name_45
SELECT set_2 FROM table_name_45 WHERE date = "25 may" AND set_3 = "21–25"
What was the attendance number for the venue of Lakeside Park?
columns: - name: attendance type: VARCHAR - name: venue type: VARCHAR table: table_name_37
SELECT attendance FROM table_name_37 WHERE venue = "lakeside park"
Who had a total of 34?
columns: - name: name type: VARCHAR - name: total type: VARCHAR table: table_name_90
SELECT name FROM table_name_90 WHERE total = 34
How many points were scored by the player who played 363 games?
columns: - name: points type: VARCHAR - name: games type: VARCHAR table: table_name_86
SELECT points FROM table_name_86 WHERE games = "363"
How many matches were played when there was 1 draw and 1 win?
columns: - name: matches type: VARCHAR - name: draws type: VARCHAR - name: wins type: VARCHAR table: table_name_92
SELECT matches FROM table_name_92 WHERE draws = "1" AND wins = "1"
What is the song choice where the episode is Live Show 1?
columns: - name: song_choice type: VARCHAR - name: episode type: VARCHAR table: table_25374338_1
SELECT song_choice FROM table_25374338_1 WHERE episode = "Live Show 1"
Lowest against for tour match on 21 july 1990?
columns: - name: against type: INTEGER - name: status type: VARCHAR - name: date type: VARCHAR table: table_name_46
SELECT MIN(against) FROM table_name_46 WHERE status = "tour match" AND date = "21 july 1990"
who had high points on march 27?
columns: - name: high_points type: VARCHAR - name: date type: VARCHAR table: table_27722734_10
SELECT high_points FROM table_27722734_10 WHERE date = "March 27"
What is the score of the game where real espana was the home team?
columns: - name: score type: VARCHAR - name: home type: VARCHAR table: table_name_90
SELECT score FROM table_name_90 WHERE home = "real espana"
What is the Year the competition the british empire and commonwealth games were held?
columns: - name: year type: INTEGER - name: competition type: VARCHAR table: table_name_98
SELECT SUM(year) FROM table_name_98 WHERE competition = "british empire and commonwealth games"
Name the cfl team for saskatchewan
columns: - name: cfl_team type: VARCHAR - name: college type: VARCHAR table: table_25017530_6
SELECT cfl_team FROM table_25017530_6 WHERE college = "Saskatchewan"
What is the maximum pages per minute for the Xerox Travel Scanner 100?
columns: - name: pages_per_minute__color_ type: INTEGER - name: product type: VARCHAR table: table_16409745_1
SELECT MAX(pages_per_minute__color_) FROM table_16409745_1 WHERE product = "Xerox Travel Scanner 100"
In what tournament was the winning score 68-67-65-66=266?
columns: - name: tournament type: VARCHAR - name: winning_score type: VARCHAR table: table_1615980_4
SELECT tournament FROM table_1615980_4 WHERE winning_score = 68 - 67 - 65 - 66 = 266
What is Date, when Meet is "World Championships", when Nationality is "United States", and when Time is "1:46.68"?
columns: - name: date type: VARCHAR - name: time type: VARCHAR - name: meet type: VARCHAR - name: nationality type: VARCHAR table: table_name_86
SELECT date FROM table_name_86 WHERE meet = "world championships" AND nationality = "united states" AND time = "1:46.68"
What is the length (AA) of the animal whose NCBI accession number is CAM15594.1?
columns: - name: length__aa_ type: INTEGER - name: ncbi_accession_number type: VARCHAR table: table_26957063_3
SELECT MIN(length__aa_) FROM table_26957063_3 WHERE ncbi_accession_number = "CAM15594.1"
Which Record has a Date of december 17?
columns: - name: record type: VARCHAR - name: date type: VARCHAR table: table_name_99
SELECT record FROM table_name_99 WHERE date = "december 17"
What is the 2002 result where 2011 and 2000 are 1R?
columns: - name: Id type: VARCHAR table: table_name_22
SELECT 2002 FROM table_name_22 WHERE 2011 = "1r" AND 2000 = "1r"
What was the highest number of losses for a position less than 6, with more than 11 wins and 36 points, with a played entry of more than 30?
columns: - name: losses type: INTEGER - name: played type: VARCHAR - name: points type: VARCHAR - name: position type: VARCHAR - name: wins type: VARCHAR table: table_name_59
SELECT MAX(losses) FROM table_name_59 WHERE position < 6 AND wins > 11 AND points = 36 AND played > 30
What is the highest number of games won where less than 21 games were conceded and less than 18 games were actually played?
columns: - name: won__pg_ type: INTEGER - name: goals_conceded__gc_ type: VARCHAR - name: played__pj_ type: VARCHAR table: table_name_85
SELECT MAX(won__pg_) FROM table_name_85 WHERE goals_conceded__gc_ < 21 AND played__pj_ < 18
What did they do against Villanova?
columns: - name: result type: VARCHAR - name: opponent type: VARCHAR table: table_21058823_1
SELECT result FROM table_21058823_1 WHERE opponent = "Villanova"
How many people wrote episode 9 in the season that was directed by Ernest Dickerson?
columns: - name: written_by type: VARCHAR - name: directed_by type: VARCHAR - name: no_in_season type: VARCHAR table: table_29219286_1
SELECT COUNT(written_by) FROM table_29219286_1 WHERE directed_by = "Ernest Dickerson" AND no_in_season = 9
What is the Segment A entry for the episode that has an entry of Diesel filters for Segment D?
columns: - name: segment_a type: VARCHAR - name: segment_d type: VARCHAR table: table_name_91
SELECT segment_a FROM table_name_91 WHERE segment_d = "diesel filters"
What was tyre that was made by cooper - bristol that was driven by bob gerard?
columns: - name: tyre type: VARCHAR - name: constructor type: VARCHAR - name: driver type: VARCHAR table: table_name_77
SELECT tyre FROM table_name_77 WHERE constructor = "cooper - bristol" AND driver = "bob gerard"
Who is the driver for team Collé Racing with more than 206 points?
columns: - name: driver type: VARCHAR - name: team type: VARCHAR - name: points type: VARCHAR table: table_name_66
SELECT driver FROM table_name_66 WHERE team = "collé racing" AND points > 206
where was sun 09/12/93 record made
columns: - name: stadium type: VARCHAR - name: date_year type: VARCHAR table: table_21436373_12
SELECT stadium FROM table_21436373_12 WHERE date_year = "Sun 09/12/93"
Name the least pick # for doug gibson
columns: - name: pick__number type: INTEGER - name: player type: VARCHAR table: table_1965650_3
SELECT MIN(pick__number) FROM table_1965650_3 WHERE player = "Doug Gibson"
What player has +2 to par?
columns: - name: player type: VARCHAR - name: to_par type: VARCHAR table: table_name_29
SELECT player FROM table_name_29 WHERE to_par = "+2"
What is the total number of Grid, when Time is +43.191, and when Laps is less than 22?
columns: - name: grid type: VARCHAR - name: time type: VARCHAR - name: laps type: VARCHAR table: table_name_51
SELECT COUNT(grid) FROM table_name_51 WHERE time = "+43.191" AND laps < 22
What finals have grant brebner as the name?
columns: - name: finals type: VARCHAR - name: name type: VARCHAR table: table_name_40
SELECT finals FROM table_name_40 WHERE name = "grant brebner"
What was the pick in 2004?
columns: - name: pick type: VARCHAR - name: year type: VARCHAR table: table_name_24
SELECT pick FROM table_name_24 WHERE year = 2004
How much is the net profit when the revenue is 150.6 million dollars?
columns: - name: net_profit__us_$m_ type: VARCHAR - name: revenue__us_$million_ type: VARCHAR table: table_18077713_1
SELECT net_profit__us_$m_ FROM table_18077713_1 WHERE revenue__us_$million_ = "150.6"
What is Race 1, when Race 4 is 1?
columns: - name: race_1 type: VARCHAR - name: race_4 type: VARCHAR table: table_name_85
SELECT race_1 FROM table_name_85 WHERE race_4 = "1"
If the coordinate velocity v dx/dt in units of c is (e 2 − 1)/(e 2 + 1) ≅ 0.761, what is the velocity angle η in i-radians?
columns: - name: "velocity_angle_\u03B7_in_i_radians" type: VARCHAR - name: coordinate_velocity_v_dx_dt_in_units_of_c type: VARCHAR table: table_15314901_1
SELECT velocity_angle_η_in_i_radians FROM table_15314901_1 WHERE coordinate_velocity_v_dx_dt_in_units_of_c = "(e 2 − 1)/(e 2 + 1) ≅ 0.761"
What is the average number of golds for teams with 1 bronze, less than 3 silver, and a total over 2?
columns: - name: gold type: INTEGER - name: silver type: VARCHAR - name: bronze type: VARCHAR - name: total type: VARCHAR table: table_name_55
SELECT AVG(gold) FROM table_name_55 WHERE bronze = 1 AND total > 2 AND silver < 3
With a year larger than 1905, and a location of philadelphia, pennsylvania with a to par [a] of n/a and a country of scotland what is the course?
columns: - name: course type: VARCHAR - name: location type: VARCHAR - name: year type: VARCHAR - name: country type: VARCHAR - name: to_par_ type: VARCHAR - name: a_ type: VARCHAR table: table_name_1
SELECT course FROM table_name_1 WHERE to_par_[a_] = "n/a" AND country = "scotland" AND year > 1905 AND location = "philadelphia, pennsylvania"
What is the party of re-elected, incumbent Charles H. Grosvenor, who was first elected before 1894?
columns: - name: party type: VARCHAR - name: incumbent type: VARCHAR - name: result type: VARCHAR - name: first_elected type: VARCHAR table: table_name_3
SELECT party FROM table_name_3 WHERE result = "re-elected" AND first_elected < 1894 AND incumbent = "charles h. grosvenor"
What is the Format of the Frequency owned by Laval University?
columns: - name: format type: VARCHAR - name: owner type: VARCHAR table: table_name_96
SELECT format FROM table_name_96 WHERE owner = "laval university"
How many were penanced with 0 executions in effigie for a total of 21?
columns: - name: penanced type: VARCHAR - name: executions_in_effigie type: VARCHAR - name: total type: VARCHAR table: table_name_65
SELECT penanced FROM table_name_65 WHERE executions_in_effigie = "0" AND total = "21"
What is the original air date if the ratings is 1.92 million?
columns: - name: original_air_date type: VARCHAR - name: ratings__millions_ type: VARCHAR table: table_23705843_1
SELECT original_air_date FROM table_23705843_1 WHERE ratings__millions_ = "1.92"
What is the to par for the score 64-73-74-69=280?
columns: - name: to_par type: VARCHAR - name: score type: VARCHAR table: table_name_40
SELECT to_par FROM table_name_40 WHERE score = 64 - 73 - 74 - 69 = 280
Which City has a Date on october 26, 2007
columns: - name: city type: VARCHAR - name: date type: VARCHAR table: table_name_70
SELECT city FROM table_name_70 WHERE date = "october 26, 2007"
What is the name of the location and ship type in the Gulf of Mexico that entered service in 1999?
columns: - name: name type: VARCHAR - name: entered_service type: VARCHAR - name: location type: VARCHAR - name: type type: VARCHAR table: table_name_43
SELECT name FROM table_name_43 WHERE location = "gulf of mexico" AND type = "ship" AND entered_service = "1999"
What is the smallest number of gold medals a country with 7 medals has?
columns: - name: gold type: INTEGER - name: total type: VARCHAR table: table_name_23
SELECT MIN(gold) FROM table_name_23 WHERE total = 7
What was the date for morocco when the year was lerger than 1981?
columns: - name: date type: VARCHAR - name: year type: VARCHAR - name: location type: VARCHAR table: table_name_34
SELECT date FROM table_name_34 WHERE year > 1981 AND location = "morocco"
In which position is the team Cerro Porteño?
columns: - name: position type: VARCHAR - name: team type: VARCHAR table: table_14911550_5
SELECT position FROM table_14911550_5 WHERE team = "Cerro Porteño"
When 68-292-68-292 is the ignition timing how many graphicals is it?
columns: - name: graphical type: VARCHAR - name: ignition_timing type: VARCHAR table: table_22915134_2
SELECT COUNT(graphical) FROM table_22915134_2 WHERE ignition_timing = "68-292-68-292"
Which player had 50 balls?
columns: - name: player type: VARCHAR - name: balls type: VARCHAR table: table_name_21
SELECT player FROM table_name_21 WHERE balls = 50
Tell me the number of weeks for december 5, 2005
columns: - name: week type: VARCHAR - name: date type: VARCHAR table: table_name_83
SELECT COUNT(week) FROM table_name_83 WHERE date = "december 5, 2005"
What section were they in when there were tier 2 in 1996?
columns: - name: section type: VARCHAR - name: level type: VARCHAR - name: season type: VARCHAR table: table_name_30
SELECT section FROM table_name_30 WHERE level = "tier 2" AND season = 1996
What is the week with a school that is ball state?
columns: - name: week type: VARCHAR - name: school type: VARCHAR table: table_name_19
SELECT week FROM table_name_19 WHERE school = "ball state"
Which people had the best 10-year period when Capablanca had the best 15-year period?
columns: - name: best_10_year_period type: VARCHAR - name: best_15_year_period type: VARCHAR table: table_1710426_2
SELECT best_10_year_period FROM table_1710426_2 WHERE best_15_year_period = "Capablanca"
What was the venue for the match on October 10?
columns: - name: venue type: VARCHAR - name: date type: VARCHAR table: table_19576091_1
SELECT venue FROM table_19576091_1 WHERE date = "October 10"
What city was in 1889?
columns: - name: city type: VARCHAR - name: year type: VARCHAR table: table_name_97
SELECT city FROM table_name_97 WHERE year = 1889
what is the record when the result is win on 2004-06-26?
columns: - name: record type: VARCHAR - name: result type: VARCHAR - name: date type: VARCHAR table: table_name_96
SELECT record FROM table_name_96 WHERE result = "win" AND date = "2004-06-26"
Who did the play-by-play when the pregame host was Brian Williams and the sideline reporters were Steve Armitage and Brenda Irving?
columns: - name: play_by_play type: VARCHAR - name: pregame_host type: VARCHAR - name: sideline_reporters type: VARCHAR table: table_17628022_2
SELECT play_by_play FROM table_17628022_2 WHERE pregame_host = "Brian Williams" AND sideline_reporters = "Steve Armitage and Brenda Irving"
From what series was the title with a production number of 1614 that was directed by Friz Freleng?
columns: - name: series type: VARCHAR - name: director type: VARCHAR - name: production_number type: VARCHAR table: table_name_15
SELECT series FROM table_name_15 WHERE director = "friz freleng" AND production_number = 1614
What position did lap 296 come in?
columns: - name: pos type: VARCHAR - name: laps type: VARCHAR table: table_name_41
SELECT pos FROM table_name_41 WHERE laps = 296
What is every team with location attendance of Arco Arena 17,014?
columns: - name: team type: VARCHAR - name: location_attendance type: VARCHAR table: table_27902171_5
SELECT team FROM table_27902171_5 WHERE location_attendance = "ARCO Arena 17,014"
What Grid has a Time/Retired of clutch?
columns: - name: grid type: INTEGER - name: time_retired type: VARCHAR table: table_name_2
SELECT SUM(grid) FROM table_name_2 WHERE time_retired = "clutch"
Which Constructor has the goodwood circuit?
columns: - name: constructor type: VARCHAR - name: circuit type: VARCHAR table: table_name_53
SELECT constructor FROM table_name_53 WHERE circuit = "goodwood"
What season had 3rd position, a 36 pld, and a bbl div?
columns: - name: season type: VARCHAR - name: div type: VARCHAR - name: pos type: VARCHAR - name: pld type: VARCHAR table: table_name_81
SELECT season FROM table_name_81 WHERE pos = "3rd" AND pld = "36" AND div = "bbl"
Which engine scored 6 points and used the march 88c chassis?
columns: - name: engine type: VARCHAR - name: points type: VARCHAR - name: chassis type: VARCHAR table: table_name_51
SELECT engine FROM table_name_51 WHERE points = 6 AND chassis = "march 88c"
What was the winning score in 1985 for Championship of u.s. women's open?
columns: - name: winning_score type: VARCHAR - name: year type: VARCHAR - name: championship type: VARCHAR table: table_name_8
SELECT winning_score FROM table_name_8 WHERE year < 1985 AND championship = "u.s. women's open"
What was the score on August 19?
columns: - name: score type: VARCHAR - name: date type: VARCHAR table: table_name_65
SELECT score FROM table_name_65 WHERE date = "august 19"
What 2011 GDP (PPP) billions of USD does Israel have?
columns: - name: country type: VARCHAR table: table_2248784_4
SELECT 2011 AS _gdp__ppp__billions_of_usd FROM table_2248784_4 WHERE country = "Israel"
What is every location attendance on the date December 12?
columns: - name: location_attendance type: VARCHAR - name: date type: VARCHAR table: table_17325580_6
SELECT location_attendance FROM table_17325580_6 WHERE date = "December 12"
What is the Class after 1986?
columns: - name: class type: VARCHAR - name: year type: INTEGER table: table_name_13
SELECT class FROM table_name_13 WHERE year > 1986
What is the average top-25 value for majors that have more than 0 wins?
columns: - name: top_25 type: INTEGER - name: wins type: INTEGER table: table_name_27
SELECT AVG(top_25) FROM table_name_27 WHERE wins > 0
What is the NTFA Div 1 team that has 15 wins and less than 1 draw?
columns: - name: ntfa_div_1 type: VARCHAR - name: draws type: VARCHAR - name: wins type: VARCHAR table: table_name_30
SELECT ntfa_div_1 FROM table_name_30 WHERE draws < 1 AND wins = 15
What date has kimberly po nathalie tauziat as the opponent in the final?
columns: - name: date type: VARCHAR - name: opponent_in_the_final type: VARCHAR table: table_name_92
SELECT date FROM table_name_92 WHERE opponent_in_the_final = "kimberly po nathalie tauziat"
What is the 2010 population of the municipality with 31 barangays?
columns: - name: population__2010_ type: VARCHAR - name: no_of_barangays type: VARCHAR table: table_255829_1
SELECT population__2010_ FROM table_255829_1 WHERE no_of_barangays = 31
Name province of 1936 viana do castelo
columns: - name: province_of_1936 type: VARCHAR - name: district type: VARCHAR table: table_221375_1
SELECT province_of_1936 FROM table_221375_1 WHERE district = "Viana do Castelo"
Name the money for ireland
columns: - name: "money___\xA3__" type: VARCHAR - name: country type: VARCHAR table: table_name_73
SELECT money___£__ FROM table_name_73 WHERE country = "ireland"
What notes have a rank greater than 2, with mexico as the country?
columns: - name: notes type: VARCHAR - name: rank type: VARCHAR - name: country type: VARCHAR table: table_name_64
SELECT notes FROM table_name_64 WHERE rank > 2 AND country = "mexico"
Can you tell me the Club thay has the Try BP of 0?
columns: - name: club type: VARCHAR - name: try_bp type: VARCHAR table: table_name_84
SELECT club FROM table_name_84 WHERE try_bp = "0"
What is Opponent, when October is less than 31, and when Game is greater than 7?
columns: - name: opponent type: VARCHAR - name: october type: VARCHAR - name: game type: VARCHAR table: table_name_12
SELECT opponent FROM table_name_12 WHERE october < 31 AND game > 7
Who was the winner when the total attendance was 16597?
columns: - name: winner type: VARCHAR - name: attendance type: VARCHAR table: table_1672976_5
SELECT winner FROM table_1672976_5 WHERE attendance = 16597
What is the lowest average parish size with 47.2% of adherents and 4,936 regular attendees?
columns: - name: average_parish_size type: INTEGER - name: _percentage_of_adherents type: VARCHAR - name: regular_attendees type: VARCHAR table: table_name_25
SELECT MIN(average_parish_size) FROM table_name_25 WHERE _percentage_of_adherents = "47.2%" AND regular_attendees > 4 OFFSET 936
Name the candidates for new york 21
columns: - name: candidates type: VARCHAR - name: district type: VARCHAR table: table_2668243_17
SELECT candidates FROM table_2668243_17 WHERE district = "New York 21"
What is teh stage with Daniele Bennati as the points classification and Giovanni VIsconti as the general classification?
columns: - name: stage type: VARCHAR - name: points_classification type: VARCHAR - name: general_classification type: VARCHAR table: table_name_36
SELECT stage FROM table_name_36 WHERE points_classification = "daniele bennati" AND general_classification = "giovanni visconti"
What is the date of the match with arnaud di pasquale as the opponent in the final?
columns: - name: date type: VARCHAR - name: opponent_in_the_final type: VARCHAR table: table_name_69
SELECT date FROM table_name_69 WHERE opponent_in_the_final = "arnaud di pasquale"
Which School/Club Team has a Player of michael bradley?
columns: - name: school_club_team type: VARCHAR - name: player type: VARCHAR table: table_name_36
SELECT school_club_team FROM table_name_36 WHERE player = "michael bradley"
What is the highest number of points scored when Acadie-Bathurst had 4 tied games, less than 257 goals, and over 72 games played?
columns: - name: points type: INTEGER - name: games type: VARCHAR - name: tied type: VARCHAR - name: goals_for type: VARCHAR table: table_name_10
SELECT MAX(points) FROM table_name_10 WHERE tied = "4" AND goals_for < 257 AND games > 72
what is the airport when the city is düsseldorf?
columns: - name: airport type: VARCHAR - name: city type: VARCHAR table: table_name_41
SELECT airport FROM table_name_41 WHERE city = "düsseldorf"