question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
What is the Theme when the Original artist was carole king, and a Week # shows hollywood?
columns: - name: theme type: VARCHAR - name: original_artist type: VARCHAR - name: week__number type: VARCHAR table: table_name_85
SELECT theme FROM table_name_85 WHERE original_artist = "carole king" AND week__number = "hollywood"
What was the 2012 finish in the US Open?
columns: - name: tournament type: VARCHAR table: table_name_62
SELECT 2012 FROM table_name_62 WHERE tournament = "us open"
What country scored 69-69-73=211?
columns: - name: country type: VARCHAR - name: score type: VARCHAR table: table_name_24
SELECT country FROM table_name_24 WHERE score = 69 - 69 - 73 = 211
What is the Format of the September 22, 2008 release with Catalog number RTRADCD491?
columns: - name: format type: VARCHAR - name: catalog type: VARCHAR - name: date type: VARCHAR table: table_name_41
SELECT format FROM table_name_41 WHERE catalog = "rtradcd491" AND date = "september 22, 2008"
what is the type movinig to alianza atlético?
columns: - name: type type: VARCHAR - name: moving_to type: VARCHAR table: table_name_28
SELECT type FROM table_name_28 WHERE moving_to = "alianza atlético"
What driver has a grid under 12 with a Time/Retired of + 3 laps?
columns: - name: driver type: VARCHAR - name: grid type: VARCHAR - name: time_retired type: VARCHAR table: table_name_87
SELECT driver FROM table_name_87 WHERE grid < 12 AND time_retired = "+ 3 laps"
What is the unanimous result of the player from Michigan Dartmouth?
columns: - name: unanimous type: VARCHAR - name: school type: VARCHAR table: table_name_78
SELECT unanimous FROM table_name_78 WHERE school = "michigan dartmouth"
What was the qualification with more than 585 laps?
columns: - name: qual type: VARCHAR - name: laps type: VARCHAR table: table_name_16
SELECT qual FROM table_name_16 WHERE laps = 585
What is the rank of airport with a (IATA/ICAO) of bcm/lrbc code and an amount of 240,735 in 2010?
columns: - name: rank type: INTEGER - name: code__iata_icao_ type: VARCHAR table: table_name_90
SELECT MIN(rank) FROM table_name_90 WHERE code__iata_icao_ = "bcm/lrbc" AND 2010 > 240 OFFSET 735
Round of first had what opponent?
columns: - name: opponent type: VARCHAR - name: round type: VARCHAR table: table_name_75
SELECT opponent FROM table_name_75 WHERE round = "first"
What is the appointment day for 4 December 2008 vacancy?
columns: - name: date_of_appointment type: VARCHAR - name: date_of_vacancy type: VARCHAR table: table_name_40
SELECT date_of_appointment FROM table_name_40 WHERE date_of_vacancy = "4 december 2008"
Name the most top 10s for 2 best finish
columns: - name: top_10s type: INTEGER - name: best_finish type: VARCHAR table: table_2112220_6
SELECT MAX(top_10s) FROM table_2112220_6 WHERE best_finish = "2"
What is the lowest laps with a 142.744 qual?
columns: - name: laps type: INTEGER - name: qual type: VARCHAR table: table_name_34
SELECT MIN(laps) FROM table_name_34 WHERE qual = "142.744"
How many sitting politicians were originally elected in 1972?
columns: - name: incumbent type: VARCHAR - name: first_elected type: VARCHAR table: table_1341663_11
SELECT COUNT(incumbent) FROM table_1341663_11 WHERE first_elected = 1972
What's the abbreviation of the month in the zodiac sign scorpio?
columns: - name: abbr type: VARCHAR - name: zodiac_sign type: VARCHAR table: table_180802_2
SELECT abbr FROM table_180802_2 WHERE zodiac_sign = "Scorpio"
What was the result for the politician first elected in 1942?
columns: - name: result type: VARCHAR - name: first_elected type: VARCHAR table: table_1342013_20
SELECT result FROM table_1342013_20 WHERE first_elected = 1942
What is the score of the 2002 Tiger Cup third/fourth place match?
columns: - name: score type: VARCHAR - name: competition type: VARCHAR table: table_name_16
SELECT score FROM table_name_16 WHERE competition = "2002 tiger cup third/fourth place"
How many districts for rené l. derouen?
columns: - name: district type: VARCHAR - name: incumbent type: VARCHAR table: table_1342315_17
SELECT COUNT(district) FROM table_1342315_17 WHERE incumbent = "René L. DeRouen"
what is the average for 2005 when 1995 is more than 3, 1996 is less than 4, and 2011 is more than 5?
columns: - name: Id type: VARCHAR table: table_name_77
SELECT AVG(2005) FROM table_name_77 WHERE 1995 > 3 AND 1996 < 4 AND 2011 > 5
What kind of TV Time that has a Result of w 24–10?
columns: - name: tv_time type: VARCHAR - name: result type: VARCHAR table: table_name_72
SELECT tv_time FROM table_name_72 WHERE result = "w 24–10"
What is Prime Mover of Model FM CFA-16-4?
columns: - name: prime_mover type: VARCHAR - name: model type: VARCHAR table: table_name_87
SELECT prime_mover FROM table_name_87 WHERE model = "fm cfa-16-4"
What is the township at longitude -100.680772?
columns: - name: township type: VARCHAR - name: longitude type: VARCHAR table: table_18600760_18
SELECT township FROM table_18600760_18 WHERE longitude = "-100.680772"
Played that has a Points of 38, and a B.P. larger than 5 has what sum?
columns: - name: played type: INTEGER - name: points type: VARCHAR - name: bp type: VARCHAR table: table_name_52
SELECT SUM(played) FROM table_name_52 WHERE points = 38 AND bp > 5
What is the average of laps ridden by Toni Elias?
columns: - name: laps type: INTEGER - name: rider type: VARCHAR table: table_name_42
SELECT AVG(laps) FROM table_name_42 WHERE rider = "toni elias"
What city of license has a Frequency under 107.7, and a call sign of w247aq?
columns: - name: city_of_license type: VARCHAR - name: frequency_mhz type: VARCHAR - name: call_sign type: VARCHAR table: table_name_52
SELECT city_of_license FROM table_name_52 WHERE frequency_mhz < 107.7 AND call_sign = "w247aq"
How many points did the Cowboys have when they had a 7-0 record?
columns: - name: cowboys_points type: VARCHAR - name: record type: VARCHAR table: table_21197135_1
SELECT cowboys_points FROM table_21197135_1 WHERE record = "7-0"
How many different municipal mayors were there in the municipality with an area of 42.66 km2?
columns: - name: municipal_mayor type: VARCHAR - name: "area__km\xB2_" type: VARCHAR table: table_216776_2
SELECT COUNT(municipal_mayor) FROM table_216776_2 WHERE area__km²_ = "42.66"
Who has 187kg and a Snatch of Clean & Jerk?
columns: - name: snatch type: VARCHAR table: table_name_79
SELECT 187 AS kg FROM table_name_79 WHERE snatch = "clean & jerk"
What's the Year Average that has a Power of BHP (KW) and Trim of LS/2LT?
columns: - name: year type: INTEGER - name: power type: VARCHAR - name: trim type: VARCHAR table: table_name_25
SELECT AVG(year) FROM table_name_25 WHERE power = "bhp (kw)" AND trim = "ls/2lt"
What is every country with a TV network of AXN India?
columns: - name: country type: VARCHAR - name: tv_network_s_ type: VARCHAR table: table_18821196_1
SELECT country FROM table_18821196_1 WHERE tv_network_s_ = "AXN India"
What is Pole Position, when Fastest Lap is Ben Spies, and when Location is Barber Motorsports Park?
columns: - name: pole_position type: VARCHAR - name: fastest_lap type: VARCHAR - name: location type: VARCHAR table: table_name_84
SELECT pole_position FROM table_name_84 WHERE fastest_lap = "ben spies" AND location = "barber motorsports park"
Name the title with presentation of credentials of april 24, 1884
columns: - name: title type: VARCHAR - name: presentation_of_credentials type: VARCHAR table: table_name_23
SELECT title FROM table_name_23 WHERE presentation_of_credentials = "april 24, 1884"
Tell me the total number of time for luke hall overall rank being larger than 105
columns: - name: time type: VARCHAR - name: swimmer type: VARCHAR - name: overall_rank type: VARCHAR table: table_name_68
SELECT COUNT(time) FROM table_name_68 WHERE swimmer = "luke hall" AND overall_rank > 105
Who became the champion for the 1984 Grand Prix where Marty Davis was the runner-up?
columns: - name: champion type: VARCHAR - name: runner_up type: VARCHAR table: table_29295463_9
SELECT champion FROM table_29295463_9 WHERE runner_up = "Marty Davis"
What is Player, when Year(s) Won is before 1961, and when To Par is 6?
columns: - name: player type: VARCHAR - name: year_s__won type: VARCHAR - name: to_par type: VARCHAR table: table_name_42
SELECT player FROM table_name_42 WHERE year_s__won < 1961 AND to_par = 6
tries against correct as of 2007-10-15 has what tries for?
columns: - name: tries_for type: VARCHAR - name: tries_against type: VARCHAR table: table_name_54
SELECT tries_for FROM table_name_54 WHERE tries_against = "correct as of 2007-10-15"
What is the percentage of the liberal party with less than 25 percent of seats?
columns: - name: percentage type: VARCHAR - name: party type: VARCHAR - name: percent_of_seats type: VARCHAR table: table_name_20
SELECT COUNT(percentage) FROM table_name_20 WHERE party = "liberal" AND percent_of_seats < 25
HOw many jockeys had eoin harty as a trainer
columns: - name: jockey type: VARCHAR - name: trainer type: VARCHAR table: table_22517564_3
SELECT COUNT(jockey) FROM table_22517564_3 WHERE trainer = "Eoin Harty"
What is the sum of Frequency, when Type is "Christian Pop"?
columns: - name: frequency type: INTEGER - name: type type: VARCHAR table: table_name_13
SELECT SUM(frequency) FROM table_name_13 WHERE type = "christian pop"
What is the score of the game on September 13 when the Expos were the opponent?
columns: - name: score type: VARCHAR - name: opponent type: VARCHAR - name: date type: VARCHAR table: table_name_49
SELECT score FROM table_name_49 WHERE opponent = "expos" AND date = "september 13"
What is the Japanese name of the Province with a Korean name of Chungcheong-Bukdo?
columns: - name: japanese_name type: VARCHAR - name: korean_name type: VARCHAR table: table_name_46
SELECT japanese_name FROM table_name_46 WHERE korean_name = "chungcheong-bukdo"
What is the height with more than 2 HC climbs more recent than 2012, less than 48 times visited, and a first HC climb in 1989?
columns: - name: height__m_ type: VARCHAR - name: first_time_as_hc_climb type: VARCHAR - name: no_of_times_visited type: VARCHAR - name: no_of_hc_climbs type: VARCHAR - name: most_recent type: VARCHAR table: table_name_69
SELECT height__m_ FROM table_name_69 WHERE no_of_hc_climbs > 2 AND most_recent = 2012 AND no_of_times_visited < 48 AND first_time_as_hc_climb = 1989
How many people voted for others in the county where McCain got 65.5% of the votes?
columns: - name: others type: VARCHAR - name: mccain_percentage type: VARCHAR table: table_20453681_1
SELECT others FROM table_20453681_1 WHERE mccain_percentage = "65.5%"
Who are the candidates in the race where Wright Patman is the incumbent?
columns: - name: candidates type: VARCHAR - name: incumbent type: VARCHAR table: table_1342315_42
SELECT candidates FROM table_1342315_42 WHERE incumbent = "Wright Patman"
What award was Trent Tesoro nominated for in 2007?
columns: - name: award type: VARCHAR - name: result type: VARCHAR - name: year type: VARCHAR table: table_name_2
SELECT award FROM table_name_2 WHERE result = "nominated" AND year = 2007
how many rounds had the score 44-22
columns: - name: round type: VARCHAR - name: score type: VARCHAR table: table_21256068_3
SELECT COUNT(round) FROM table_21256068_3 WHERE score = "44-22"
Where was the game on September 11, 2004?
columns: - name: venue type: VARCHAR - name: date type: VARCHAR table: table_name_95
SELECT venue FROM table_name_95 WHERE date = "september 11, 2004"
What position is the player from the Regina Pats (WHL)?
columns: - name: position type: VARCHAR - name: college_junior_club_team type: VARCHAR table: table_2679061_4
SELECT position FROM table_2679061_4 WHERE college_junior_club_team = "Regina Pats (WHL)"
Who was the away team when the home team was Lincoln City?
columns: - name: away_team type: VARCHAR - name: home_team type: VARCHAR table: table_name_53
SELECT away_team FROM table_name_53 WHERE home_team = "lincoln city"
What is the highest Population, when Per Capita Income is "$17,168", and when Number of Households is greater than 3,287?
columns: - name: population type: INTEGER - name: per_capita_income type: VARCHAR - name: number_of_households type: VARCHAR table: table_name_86
SELECT MAX(population) FROM table_name_86 WHERE per_capita_income = "$17,168" AND number_of_households > 3 OFFSET 287
Sport of football, and a Venue of stadion polonii is what league?
columns: - name: league type: VARCHAR - name: sport type: VARCHAR - name: venue type: VARCHAR table: table_name_20
SELECT league FROM table_name_20 WHERE sport = "football" AND venue = "stadion polonii"
For the game where the away team was North Melbourne, what was the venue?
columns: - name: venue type: VARCHAR - name: away_team type: VARCHAR table: table_name_7
SELECT venue FROM table_name_7 WHERE away_team = "north melbourne"
What is the party for the representative who was first elected before 2002 and the results were re-elected?
columns: - name: party type: VARCHAR - name: results type: VARCHAR - name: first_elected type: VARCHAR table: table_name_7
SELECT party FROM table_name_7 WHERE results = "re-elected" AND first_elected < 2002
Name the date for circuit of interlagos
columns: - name: date type: VARCHAR - name: circuit type: VARCHAR table: table_name_50
SELECT date FROM table_name_50 WHERE circuit = "interlagos"
What is the recoupa sudaamericana 1996 result of team flamengo, which did not qualify for the copa conmebol 1996?
columns: - name: recopa_sudamericana_1996 type: VARCHAR - name: copa_conmebol_1996 type: VARCHAR - name: team type: VARCHAR table: table_name_10
SELECT recopa_sudamericana_1996 FROM table_name_10 WHERE copa_conmebol_1996 = "did not qualify" AND team = "flamengo"
How many new conferences are in the NCLL deep south conference?
columns: - name: new_conference type: VARCHAR - name: new_classification type: VARCHAR table: table_26476336_2
SELECT COUNT(new_conference) FROM table_26476336_2 WHERE new_classification = "NCLL Deep South Conference"
What are the numbers for D. Shulman in Warren County?
columns: - name: d_shulman type: VARCHAR - name: county type: VARCHAR table: table_name_12
SELECT d_shulman FROM table_name_12 WHERE county = "warren"
What is the geo id of the land at 35.999?
columns: - name: geo_id type: INTEGER - name: land___sqmi__ type: VARCHAR table: table_18600760_12
SELECT MAX(geo_id) FROM table_18600760_12 WHERE land___sqmi__ = "35.999"
What are the candidates for new york 35?
columns: - name: candidates type: VARCHAR - name: district type: VARCHAR table: table_1342233_32
SELECT candidates FROM table_1342233_32 WHERE district = "New York 35"
What is the lowest total for bronzes over 1, golds over 8, and fewer than 10 silvers?
columns: - name: total type: INTEGER - name: silver type: VARCHAR - name: bronze type: VARCHAR - name: gold type: VARCHAR table: table_name_64
SELECT MIN(total) FROM table_name_64 WHERE bronze > 1 AND gold > 8 AND silver < 10
What were the high assist on january 2?
columns: - name: high_assists type: VARCHAR - name: date type: VARCHAR table: table_name_61
SELECT high_assists FROM table_name_61 WHERE date = "january 2"
What is the lowest figure for her age when the year of marriage is before 1853, the number of children is less than 8, and the bride was Eliza Maria Partridge?
columns: - name: her_age type: INTEGER - name: name type: VARCHAR - name: year_of_marriage type: VARCHAR - name: _number_of_children type: VARCHAR table: table_name_60
SELECT MIN(her_age) FROM table_name_60 WHERE year_of_marriage < 1853 AND _number_of_children < 8 AND name = "eliza maria partridge"
What date did the song by jennifer lopez get issued?
columns: - name: issue_date_s_ type: VARCHAR - name: artist type: VARCHAR table: table_name_54
SELECT issue_date_s_ FROM table_name_54 WHERE artist = "jennifer lopez"
What was the first broadcast date of the episode in which Sean's team is made up of Peter Serafinowicz and Johnny Vegas?
columns: - name: first_broadcast type: VARCHAR - name: seans_team type: VARCHAR table: table_23292220_3
SELECT first_broadcast FROM table_23292220_3 WHERE seans_team = "Peter Serafinowicz and Johnny Vegas"
Which Lead Margin has a Poll Source of rasmussen reports/ fox news?
columns: - name: lead_margin type: INTEGER - name: poll_source type: VARCHAR table: table_name_75
SELECT MIN(lead_margin) FROM table_name_75 WHERE poll_source = "rasmussen reports/ fox news"
How many rounds have an Overall larger than 17, and a Position of quarterback?
columns: - name: round type: VARCHAR - name: overall type: VARCHAR - name: position type: VARCHAR table: table_name_66
SELECT COUNT(round) FROM table_name_66 WHERE overall > 17 AND position = "quarterback"
What is the population of area of 11?
columns: - name: population type: VARCHAR - name: area type: VARCHAR table: table_name_15
SELECT population FROM table_name_15 WHERE area = "11"
What was the second leg score from the group stage on matchday 5?
columns: - name: second_leg type: VARCHAR - name: phase type: VARCHAR - name: round type: VARCHAR table: table_name_35
SELECT second_leg FROM table_name_35 WHERE phase = "group stage" AND round = "matchday 5"
In which location did he win the Superbrawl 16 event?
columns: - name: location type: VARCHAR - name: res type: VARCHAR - name: event type: VARCHAR table: table_name_57
SELECT location FROM table_name_57 WHERE res = "win" AND event = "superbrawl 16"
Where is the Eastern Creek Raceway located?
columns: - name: location___state type: VARCHAR - name: circuit type: VARCHAR table: table_name_19
SELECT location___state FROM table_name_19 WHERE circuit = "eastern creek raceway"
What is the home team venue for the New Zealand Breakers?
columns: - name: venue type: VARCHAR - name: home_team type: VARCHAR table: table_name_30
SELECT venue FROM table_name_30 WHERE home_team = "new zealand breakers"
What is the total for set 2 17-25?
columns: - name: total type: VARCHAR - name: set_2 type: VARCHAR table: table_name_80
SELECT total FROM table_name_80 WHERE set_2 = "17-25"
Which week was the October 17, 2004 game played?
columns: - name: week type: VARCHAR - name: date type: VARCHAR table: table_name_76
SELECT week FROM table_name_76 WHERE date = "october 17, 2004"
How big (in sq mi) is the island that's 4065 km2?
columns: - name: area__sqmi_ type: VARCHAR - name: area__km_2__ type: VARCHAR table: table_13897690_1
SELECT area__sqmi_ FROM table_13897690_1 WHERE area__km_2__ = 4065
What is every value for periselene if period is 4.947432?
columns: - name: periselene__km_ type: VARCHAR - name: period__h_ type: VARCHAR table: table_206217_2
SELECT periselene__km_ FROM table_206217_2 WHERE period__h_ = "4.947432"
Name the regular judge when host is anja rubik
columns: - name: regular_judge type: VARCHAR - name: host type: VARCHAR table: table_1597866_3
SELECT regular_judge FROM table_1597866_3 WHERE host = "Anja Rubik"
Which skipper has barclays adventurer as the name of the yacht?
columns: - name: skipper type: VARCHAR - name: yacht_name type: VARCHAR table: table_name_92
SELECT skipper FROM table_name_92 WHERE yacht_name = "barclays adventurer"
What date has dallas cowboys as the opponent?
columns: - name: date type: VARCHAR - name: opponent type: VARCHAR table: table_name_91
SELECT date FROM table_name_91 WHERE opponent = "dallas cowboys"
Who is the player for the School/Club team in Georgia?
columns: - name: player type: VARCHAR - name: school_club_team type: VARCHAR table: table_name_73
SELECT player FROM table_name_73 WHERE school_club_team = "georgia"
What was the record when the visitor was Atlanta Hawks?
columns: - name: record type: VARCHAR - name: visitor type: VARCHAR table: table_name_90
SELECT record FROM table_name_90 WHERE visitor = "atlanta hawks"
What are all the countries where the electric company Ebisa has a presence?
columns: - name: country type: VARCHAR - name: entities type: VARCHAR table: table_19001916_2
SELECT country FROM table_19001916_2 WHERE entities = "EBISA"
What class had fewer than 336 laps in 2004?
columns: - name: class type: VARCHAR - name: laps type: VARCHAR - name: year type: VARCHAR table: table_name_77
SELECT class FROM table_name_77 WHERE laps < 336 AND year = 2004
What is the race title of the Oran Park raceway circuit with team jps team bmw?
columns: - name: race_title type: VARCHAR - name: team type: VARCHAR - name: circuit type: VARCHAR table: table_name_8
SELECT race_title FROM table_name_8 WHERE team = "jps team bmw" AND circuit = "oran park raceway"
What is the highest goals for that has a drawn less than 11, with a played less than 42?
columns: - name: goals_for type: INTEGER - name: drawn type: VARCHAR - name: played type: VARCHAR table: table_name_54
SELECT MAX(goals_for) FROM table_name_54 WHERE drawn < 11 AND played < 42
Which name has a Lane of 7?
columns: - name: name type: VARCHAR - name: lane type: VARCHAR table: table_name_79
SELECT name FROM table_name_79 WHERE lane = 7
What is the smallest number of third place earned for the Es Sahel at a rank less than 3?
columns: - name: third type: INTEGER - name: club type: VARCHAR - name: rank type: VARCHAR table: table_name_37
SELECT MIN(third) FROM table_name_37 WHERE club = "es sahel" AND rank < 3
what kind of Giro di Lombardiahas a Tour of Flanders of tom boonen ( bel ), and a Paris–Roubaix of fabian cancellara ( sui )?
columns: - name: giro_di_lombardia type: VARCHAR - name: tour_of_flanders type: VARCHAR - name: paris_roubaix type: VARCHAR table: table_name_22
SELECT giro_di_lombardia FROM table_name_22 WHERE tour_of_flanders = "tom boonen ( bel )" AND paris_roubaix = "fabian cancellara ( sui )"
How many seasons in Meistriliiga when the club was kuressaare also had a first season in top division of more than 2000?
columns: - name: number_of_seasons_in_meistriliiga type: VARCHAR - name: club type: VARCHAR - name: first_season_in_top_division type: VARCHAR table: table_name_17
SELECT COUNT(number_of_seasons_in_meistriliiga) FROM table_name_17 WHERE club = "kuressaare" AND first_season_in_top_division > 2000
Which away team goes against the home team Mauritius?
columns: - name: away_team type: VARCHAR - name: home_team type: VARCHAR table: table_name_94
SELECT away_team FROM table_name_94 WHERE home_team = "mauritius"
How many episodes of 30 minutes were written by John Sullivan?
columns: - name: duration type: VARCHAR - name: written_by type: VARCHAR table: table_17641206_4
SELECT COUNT(duration) FROM table_17641206_4 WHERE written_by = "John Sullivan"
What is BYU's lowest pick?
columns: - name: pick__number type: INTEGER - name: college type: VARCHAR table: table_name_16
SELECT MIN(pick__number) FROM table_name_16 WHERE college = "byu"
What was the score on April 22?
columns: - name: score type: VARCHAR - name: date type: VARCHAR table: table_name_17
SELECT score FROM table_name_17 WHERE date = "april 22"
What was the result of events held at Nor Elverum, prior to 2010?
columns: - name: result type: VARCHAR - name: year type: VARCHAR - name: venue type: VARCHAR table: table_name_22
SELECT result FROM table_name_22 WHERE year < 2010 AND venue = "nor elverum"
Which venue has a neutral H/A/N, lower than position 3 and a score of 141?
columns: - name: venue type: VARCHAR - name: score type: VARCHAR - name: h_a_n type: VARCHAR - name: pos type: VARCHAR table: table_name_85
SELECT venue FROM table_name_85 WHERE h_a_n = "neutral" AND pos < 3 AND score = "141"
What percent of the vote went to Meg Whitman in the poll taken on October 21, 2010.
columns: - name: meg_whitman__r_ type: VARCHAR - name: date_s__administered type: VARCHAR table: table_name_51
SELECT meg_whitman__r_ FROM table_name_51 WHERE date_s__administered = "october 21, 2010"
What is the latest Date, when Label is Captain Oi! Records?
columns: - name: date type: INTEGER - name: label type: VARCHAR table: table_name_58
SELECT MAX(date) FROM table_name_58 WHERE label = "captain oi! records"
What is the average speed for ships before 1974 with over 1.73 passengers?
columns: - name: speed type: INTEGER - name: year type: VARCHAR - name: passengers type: VARCHAR table: table_name_31
SELECT AVG(speed) FROM table_name_31 WHERE year < 1974 AND passengers > 1.73
Name the venue for collingwood home team
columns: - name: venue type: VARCHAR - name: home_team type: VARCHAR table: table_name_40
SELECT venue FROM table_name_40 WHERE home_team = "collingwood"
Which station has programming of Me-TV?
columns: - name: station type: VARCHAR - name: programming type: VARCHAR table: table_name_78
SELECT station FROM table_name_78 WHERE programming = "me-tv"
What is the total number of Draws, when Against is "1134", and when Byes is less than 2?
columns: - name: draws type: VARCHAR - name: against type: VARCHAR - name: byes type: VARCHAR table: table_name_21
SELECT COUNT(draws) FROM table_name_21 WHERE against = 1134 AND byes < 2