text
stringlengths
114
1.06k
### question: What opponent has a loss of McCaskill (9-11)? ### answer: SELECT opponent FROM table_name_10 WHERE loss = "mccaskill (9-11)" ### context: CREATE TABLE table_name_10 (opponent VARCHAR, loss VARCHAR)
### question: Which engine type was used in the model 2.3 v5? ### answer: SELECT engine_type FROM table_name_45 WHERE model = "2.3 v5" ### context: CREATE TABLE table_name_45 (engine_type VARCHAR, model VARCHAR)
### question: Which race has a position of 3rd and a speed of 123.628? ### answer: SELECT race FROM table_name_90 WHERE position = "3rd" AND speed = "123.628" ### context: CREATE TABLE table_name_90 (race VARCHAR, position VARCHAR, speed VARCHAR)
### question: Which race has a replica of DNF? ### answer: SELECT race FROM table_name_72 WHERE replica = "dnf" ### context: CREATE TABLE table_name_72 (race VARCHAR, replica VARCHAR)
### question: Which race has a replica of DNF? ### answer: SELECT race FROM table_name_16 WHERE replica = "dnf" ### context: CREATE TABLE table_name_16 (race VARCHAR, replica VARCHAR)
### question: Which position has a speed of 123.220? ### answer: SELECT position FROM table_name_35 WHERE speed = "123.220" ### context: CREATE TABLE table_name_35 (position VARCHAR, speed VARCHAR)
### question: Which position has a time of 1:45:53:00? ### answer: SELECT position FROM table_name_41 WHERE time = "1:45:53:00" ### context: CREATE TABLE table_name_41 (position VARCHAR, time VARCHAR)
### question: Which race has a position of 3rd and a speed of 126.452? ### answer: SELECT race FROM table_name_66 WHERE position = "3rd" AND speed = "126.452" ### context: CREATE TABLE table_name_66 (race VARCHAR, position VARCHAR, speed VARCHAR)
### question: Which Scrapped/Sold has a Name as rebuilt of trostan? ### answer: SELECT scrapped_sold FROM table_name_11 WHERE name_as_rebuilt = "trostan" ### context: CREATE TABLE table_name_11 (scrapped_sold VARCHAR, name_as_rebuilt VARCHAR)
### question: Which Rebuilt has a Name as rebuilt of binevanagh? ### answer: SELECT rebuilt FROM table_name_40 WHERE name_as_rebuilt = "binevanagh" ### context: CREATE TABLE table_name_40 (rebuilt VARCHAR, name_as_rebuilt VARCHAR)
### question: Which Rebuilt has a Builder of derby, and a Name as rebuilt of ben madigan? ### answer: SELECT rebuilt FROM table_name_64 WHERE builder = "derby" AND name_as_rebuilt = "ben madigan" ### context: CREATE TABLE table_name_64 (rebuilt VARCHAR, builder VARCHAR, name_as_rebuilt VARCHAR)
### question: Which Scrapped/Sold has a Builder of derby, and a Name as rebuilt of ben madigan? ### answer: SELECT scrapped_sold FROM table_name_74 WHERE builder = "derby" AND name_as_rebuilt = "ben madigan" ### context: CREATE TABLE table_name_74 (scrapped_sold VARCHAR, builder VARCHAR, name_as_rebuilt VARCHAR)
### question: What is the to par number of the person who won in 2003? ### answer: SELECT to_par FROM table_name_40 WHERE year_s__won = "2003" ### context: CREATE TABLE table_name_40 (to_par VARCHAR, year_s__won VARCHAR)
### question: In which year(s) did the person who has a total of 291 win? ### answer: SELECT year_s__won FROM table_name_69 WHERE total = 291 ### context: CREATE TABLE table_name_69 (year_s__won VARCHAR, total VARCHAR)
### question: In which year(s) did the person with a total greater than 286 win? ### answer: SELECT year_s__won FROM table_name_36 WHERE total > 286 ### context: CREATE TABLE table_name_36 (year_s__won VARCHAR, total INTEGER)
### question: What is Davis Love III's total? ### answer: SELECT total FROM table_name_33 WHERE player = "davis love iii" ### context: CREATE TABLE table_name_33 (total VARCHAR, player VARCHAR)
### question: In what place did Phil Mickelson finish with a total of 282? ### answer: SELECT finish FROM table_name_96 WHERE total = 282 AND player = "phil mickelson" ### context: CREATE TABLE table_name_96 (finish VARCHAR, total VARCHAR, player VARCHAR)
### question: What's the source of wealth of the person worth $17 billion? ### answer: SELECT source FROM table_name_10 WHERE net_worth_us$__billions_ = 17 ### context: CREATE TABLE table_name_10 (source VARCHAR, net_worth_us$__billions_ VARCHAR)
### question: What final date had 16 housemates? ### answer: SELECT final_date FROM table_name_75 WHERE housemates = 16 ### context: CREATE TABLE table_name_75 (final_date VARCHAR, housemates VARCHAR)
### question: What scored is recorded on April 24? ### answer: SELECT score FROM table_name_92 WHERE date = "april 24" ### context: CREATE TABLE table_name_92 (score VARCHAR, date VARCHAR)
### question: In 1970, what entrant had a cosworth v8 engine? ### answer: SELECT entrant FROM table_name_82 WHERE engine = "cosworth v8" AND year = 1970 ### context: CREATE TABLE table_name_82 (entrant VARCHAR, engine VARCHAR, year VARCHAR)
### question: Who was the entrant in 1971? ### answer: SELECT entrant FROM table_name_3 WHERE year = 1971 ### context: CREATE TABLE table_name_3 (entrant VARCHAR, year VARCHAR)
### question: What was the total amount of points in 1978 with a Chassis of arrows fa1? ### answer: SELECT SUM(points) FROM table_name_98 WHERE year = 1978 AND chassis = "arrows fa1" ### context: CREATE TABLE table_name_98 (points INTEGER, year VARCHAR, chassis VARCHAR)
### question: What venue hosted the stan fox stakes? ### answer: SELECT venue FROM table_name_72 WHERE race = "stan fox stakes" ### context: CREATE TABLE table_name_72 (venue VARCHAR, race VARCHAR)
### question: When was the game with the loss of Moore (0-1)? ### answer: SELECT date FROM table_name_82 WHERE loss = "moore (0-1)" ### context: CREATE TABLE table_name_82 (date VARCHAR, loss VARCHAR)
### question: What is the earliest year that Assists were less than 13 and minutes were under 91? ### answer: SELECT MIN(season) FROM table_name_47 WHERE assists < 13 AND minutes < 91 ### context: CREATE TABLE table_name_47 (season INTEGER, assists VARCHAR, minutes VARCHAR)
### question: Which venues resulted in a draw? ### answer: SELECT venue FROM table_name_22 WHERE result = "draw" ### context: CREATE TABLE table_name_22 (venue VARCHAR, result VARCHAR)
### question: What dates had matches at the venue Sabina Park? ### answer: SELECT date FROM table_name_50 WHERE venue = "sabina park" ### context: CREATE TABLE table_name_50 (date VARCHAR, venue VARCHAR)
### question: What dates contained matches at the venue Bourda? ### answer: SELECT date FROM table_name_32 WHERE venue = "bourda" ### context: CREATE TABLE table_name_32 (date VARCHAR, venue VARCHAR)
### question: How many cuts did he make in the tournament with 3 top 25s and under 13 events? ### answer: SELECT MAX(cuts_made) FROM table_name_44 WHERE top_25 = 3 AND events < 13 ### context: CREATE TABLE table_name_44 (cuts_made INTEGER, top_25 VARCHAR, events VARCHAR)
### question: How many cuts made in the tournament he played 13 times? ### answer: SELECT SUM(cuts_made) FROM table_name_13 WHERE events > 13 ### context: CREATE TABLE table_name_13 (cuts_made INTEGER, events INTEGER)
### question: How many cuts did he make at the PGA championship in 3 events? ### answer: SELECT MAX(cuts_made) FROM table_name_36 WHERE tournament = "pga championship" AND events > 3 ### context: CREATE TABLE table_name_36 (cuts_made INTEGER, tournament VARCHAR, events VARCHAR)
### question: What is the highest number of points scored by minardi team usa in more than 13 laps? ### answer: SELECT MAX(points) FROM table_name_2 WHERE laps > 13 AND team = "minardi team usa" ### context: CREATE TABLE table_name_2 (points INTEGER, laps VARCHAR, team VARCHAR)
### question: What is mario domínguez's average Grid? ### answer: SELECT AVG(grid) FROM table_name_88 WHERE driver = "mario domínguez" ### context: CREATE TABLE table_name_88 (grid INTEGER, driver VARCHAR)
### question: Which opponent plays on September 19? ### answer: SELECT opponent FROM table_name_11 WHERE date = "september 19" ### context: CREATE TABLE table_name_11 (opponent VARCHAR, date VARCHAR)
### question: Name the call sign with frequency of 89.5 ### answer: SELECT call_sign FROM table_name_70 WHERE frequency_mhz = 89.5 ### context: CREATE TABLE table_name_70 (call_sign VARCHAR, frequency_mhz VARCHAR)
### question: Name the sum of frequency will call sign of k259aw ### answer: SELECT SUM(frequency_mhz) FROM table_name_67 WHERE call_sign = "k259aw" ### context: CREATE TABLE table_name_67 (frequency_mhz INTEGER, call_sign VARCHAR)
### question: What's the total failures among rockets that had more than 3 successes, type ariane 5 and more than 0 partial failures? ### answer: SELECT COUNT(failures) FROM table_name_92 WHERE successes > 3 AND type = "ariane 5" AND partial_failures > 0 ### context: CREATE TABLE table_name_92 (failures VARCHAR, partia...
### question: What is the number of successes for rockets that have more than 3 launches, were based in Russia, are type soyuz and a rocket type of soyuz-u? ### answer: SELECT COUNT(successes) FROM table_name_92 WHERE launches > 3 AND country = "russia" AND type = "soyuz" AND rocket = "soyuz-u" ### context: CREATE TABL...
### question: What dates did the episodes air in the United States? ### answer: SELECT dates_aired FROM table_name_6 WHERE region_country = "united states" ### context: CREATE TABLE table_name_6 (dates_aired VARCHAR, region_country VARCHAR)
### question: Who was the star for the Vara network? ### answer: SELECT starring FROM table_name_61 WHERE network = "vara" ### context: CREATE TABLE table_name_61 (starring VARCHAR, network VARCHAR)
### question: What is the local name for the episodes that aired in 1981? ### answer: SELECT local_name FROM table_name_28 WHERE dates_aired = "1981" ### context: CREATE TABLE table_name_28 (local_name VARCHAR, dates_aired VARCHAR)
### question: What is the name of the network in the United Kingdom which aired in 1985–1992? ### answer: SELECT network FROM table_name_44 WHERE region_country = "united kingdom" AND dates_aired = "1985–1992" ### context: CREATE TABLE table_name_44 (network VARCHAR, region_country VARCHAR, dates_aired VARCHAR)
### question: How many total appearances (league only) have a name of gavin dykes? ### answer: SELECT total_appearances_league_only_ FROM table_name_88 WHERE name = "gavin dykes" ### context: CREATE TABLE table_name_88 (total_appearances_league_only_ VARCHAR, name VARCHAR)
### question: What nationality has a ranking less than 7 with tony stenson as the name? ### answer: SELECT nationality FROM table_name_13 WHERE ranking < 7 AND name = "tony stenson" ### context: CREATE TABLE table_name_13 (nationality VARCHAR, ranking VARCHAR, name VARCHAR)
### question: What is the lowest score that Bob Tway get when he placed t5? ### answer: SELECT MIN(score) FROM table_name_70 WHERE place = "t5" AND player = "bob tway" ### context: CREATE TABLE table_name_70 (score INTEGER, place VARCHAR, player VARCHAR)
### question: What is the record for May 31? ### answer: SELECT record FROM table_name_83 WHERE date = "may 31" ### context: CREATE TABLE table_name_83 (record VARCHAR, date VARCHAR)
### question: Who lost on May 31? ### answer: SELECT loss FROM table_name_94 WHERE date = "may 31" ### context: CREATE TABLE table_name_94 (loss VARCHAR, date VARCHAR)
### question: For record 25-24, what is the sum of attendance? ### answer: SELECT COUNT(attendance) FROM table_name_83 WHERE record = "25-24" ### context: CREATE TABLE table_name_83 (attendance VARCHAR, record VARCHAR)
### question: When was the record 27-25? ### answer: SELECT date FROM table_name_64 WHERE record = "27-25" ### context: CREATE TABLE table_name_64 (date VARCHAR, record VARCHAR)
### question: Which engine is responsible for the USAC Championship Car? ### answer: SELECT engine FROM table_name_72 WHERE series = "usac championship car" ### context: CREATE TABLE table_name_72 (engine VARCHAR, series VARCHAR)
### question: What was the 2nd leg score between Patronage Sainte-Anne and Asante Kotoko? ### answer: SELECT 2 AS nd_leg FROM table_name_27 WHERE team_1 = "asante kotoko" ### context: CREATE TABLE table_name_27 (team_1 VARCHAR)
### question: Which teams had an aggregate score of 3-4? ### answer: SELECT team_1 FROM table_name_61 WHERE agg = "3-4" ### context: CREATE TABLE table_name_61 (team_1 VARCHAR, agg VARCHAR)
### question: What is the lowest facility ID that's in Beckley? ### answer: SELECT MIN(facility_id) FROM table_name_24 WHERE city_of_license = "beckley" ### context: CREATE TABLE table_name_24 (facility_id INTEGER, city_of_license VARCHAR)
### question: What city has the A Class licence? ### answer: SELECT city_of_license FROM table_name_20 WHERE class = "a" ### context: CREATE TABLE table_name_20 (city_of_license VARCHAR, class VARCHAR)
### question: on august 16, 1963, what is the velocity? ### answer: SELECT SUM(velocity__km_h_) FROM table_name_56 WHERE date = "august 16, 1963" ### context: CREATE TABLE table_name_56 (velocity__km_h_ INTEGER, date VARCHAR)
### question: What is the highest game number that had a time of 2:44? ### answer: SELECT MAX(game) FROM table_name_78 WHERE time = "2:44" ### context: CREATE TABLE table_name_78 (game INTEGER, time VARCHAR)
### question: Name the highest 3rd place for nation of perak fa ### answer: SELECT MAX(3 AS rd_place) FROM table_name_65 WHERE nation = "perak fa" ### context: CREATE TABLE table_name_65 (nation VARCHAR)
### question: What is the gold medal count for the country with a total greater than 32 and more than 128 silvers? ### answer: SELECT AVG(gold) FROM table_name_53 WHERE total > 32 AND silver > 128 ### context: CREATE TABLE table_name_53 (gold INTEGER, total VARCHAR, silver VARCHAR)
### question: What is the maximum number of silvers for a country with fewer than 12 golds and a total less than 8? ### answer: SELECT MAX(silver) FROM table_name_72 WHERE gold < 12 AND total < 8 ### context: CREATE TABLE table_name_72 (silver INTEGER, gold VARCHAR, total VARCHAR)
### question: What is the total number of wins for riders with fewer than 56 races and more than 0 titles? ### answer: SELECT COUNT(wins) FROM table_name_45 WHERE races < 56 AND titles > 0 ### context: CREATE TABLE table_name_45 (wins VARCHAR, races VARCHAR, titles VARCHAR)
### question: Name the tournament for top-5 more thn 1 and top-25 of 13 with wins of 3 ### answer: SELECT tournament FROM table_name_4 WHERE top_5 > 1 AND top_25 = 13 AND wins = 3 ### context: CREATE TABLE table_name_4 (tournament VARCHAR, wins VARCHAR, top_5 VARCHAR, top_25 VARCHAR)
### question: Name the average cuts for top-25 more than 13 and top-5 less than 11 ### answer: SELECT AVG(cuts_made) FROM table_name_5 WHERE top_25 > 13 AND top_5 < 11 ### context: CREATE TABLE table_name_5 (cuts_made INTEGER, top_25 VARCHAR, top_5 VARCHAR)
### question: Name the total number of wins with top-25 of 10 and events less than 26 ### answer: SELECT COUNT(wins) FROM table_name_67 WHERE top_25 = 10 AND events < 26 ### context: CREATE TABLE table_name_67 (wins VARCHAR, top_25 VARCHAR, events VARCHAR)
### question: Name the sum of top-25 for pga championship and top-5 less than 1 ### answer: SELECT SUM(top_25) FROM table_name_21 WHERE tournament = "pga championship" AND top_5 < 1 ### context: CREATE TABLE table_name_21 (top_25 INTEGER, tournament VARCHAR, top_5 VARCHAR)
### question: What stage has a start of saint-girons in 1988? ### answer: SELECT stage FROM table_name_39 WHERE start = "saint-girons" AND year = 1988 ### context: CREATE TABLE table_name_39 (stage VARCHAR, start VARCHAR, year VARCHAR)
### question: What category was in 1964? ### answer: SELECT category FROM table_name_14 WHERE year = 1964 ### context: CREATE TABLE table_name_14 (category VARCHAR, year VARCHAR)
### question: An artist of the Beatles with an issue date(s) of 19 September has what as the listed weeks on top? ### answer: SELECT weeks_on_top FROM table_name_26 WHERE artist = "the beatles" AND issue_date_s_ = "19 september" ### context: CREATE TABLE table_name_26 (weeks_on_top VARCHAR, artist VARCHAR, issue_date_s...
### question: With an issue date(s) of 12 September, what is in the column for Weeks on Top? ### answer: SELECT weeks_on_top FROM table_name_96 WHERE issue_date_s_ = "12 september" ### context: CREATE TABLE table_name_96 (weeks_on_top VARCHAR, issue_date_s_ VARCHAR)
### question: What Premier League Manager has an Adidas sponsor and a Newcastle United club? ### answer: SELECT manager FROM table_name_52 WHERE manufacturer = "adidas" AND club = "newcastle united" ### context: CREATE TABLE table_name_52 (manager VARCHAR, manufacturer VARCHAR, club VARCHAR)
### question: Which Manchester United captain is sponsored by Nike? ### answer: SELECT captain FROM table_name_54 WHERE manufacturer = "nike" AND club = "manchester united" ### context: CREATE TABLE table_name_54 (captain VARCHAR, manufacturer VARCHAR, club VARCHAR)
### question: Who is Dean Whitehead's manager? ### answer: SELECT manager FROM table_name_92 WHERE captain = "dean whitehead" ### context: CREATE TABLE table_name_92 (manager VARCHAR, captain VARCHAR)
### question: In which club is Ledley King a captain? ### answer: SELECT club FROM table_name_3 WHERE captain = "ledley king" ### context: CREATE TABLE table_name_3 (club VARCHAR, captain VARCHAR)
### question: Who is the captain of Middlesbrough? ### answer: SELECT captain FROM table_name_15 WHERE club = "middlesbrough" ### context: CREATE TABLE table_name_15 (captain VARCHAR, club VARCHAR)
### question: Name the city of license with resolution of sd 480i and official website of telemundo.com ### answer: SELECT city_of_license FROM table_name_34 WHERE resolution = "sd 480i" AND official_website = "telemundo.com" ### context: CREATE TABLE table_name_34 (city_of_license VARCHAR, resolution VARCHAR, official...
### question: Name the dish for resolution of sd 480i and network of bvb ### answer: SELECT dish FROM table_name_8 WHERE resolution = "sd 480i" AND network = "bvb" ### context: CREATE TABLE table_name_8 (dish VARCHAR, resolution VARCHAR, network VARCHAR)
### question: Name the resolution for dish of 5270 ### answer: SELECT resolution FROM table_name_36 WHERE dish = "5270" ### context: CREATE TABLE table_name_36 (resolution VARCHAR, dish VARCHAR)
### question: Name the official website which has dish of • and callsign of kvtv ### answer: SELECT official_website FROM table_name_18 WHERE dish = "•" AND callsign = "kvtv" ### context: CREATE TABLE table_name_18 (official_website VARCHAR, dish VARCHAR, callsign VARCHAR)
### question: Name the resolution for ketftv.com and callsign of kldo-dt2 ### answer: SELECT resolution FROM table_name_87 WHERE official_website = "ketftv.com" AND callsign = "kldo-dt2" ### context: CREATE TABLE table_name_87 (resolution VARCHAR, official_website VARCHAR, callsign VARCHAR)
### question: Name the resolution with dish of 8126 ### answer: SELECT resolution FROM table_name_91 WHERE dish = "8126" ### context: CREATE TABLE table_name_91 (resolution VARCHAR, dish VARCHAR)
### question: What are the highest points for the team of marlboro brm with brm p180 as the chassis? ### answer: SELECT MAX(points) FROM table_name_43 WHERE team = "marlboro brm" AND chassis = "brm p180" ### context: CREATE TABLE table_name_43 (points INTEGER, team VARCHAR, chassis VARCHAR)
### question: Which chassis has marlboro brm as the team? ### answer: SELECT chassis FROM table_name_89 WHERE team = "marlboro brm" ### context: CREATE TABLE table_name_89 (chassis VARCHAR, team VARCHAR)
### question: What place did Jimmy Reece start from when he ranked 12? ### answer: SELECT start FROM table_name_83 WHERE rank = "12" ### context: CREATE TABLE table_name_83 (start VARCHAR, rank VARCHAR)
### question: What place did Jimmy Reece finish in 1957? ### answer: SELECT finish FROM table_name_29 WHERE year = "1957" ### context: CREATE TABLE table_name_29 (finish VARCHAR, year VARCHAR)
### question: what is the Sydney that has Adelaide, Gold Coast, Melbourne, and Auckland are all yes? ### answer: SELECT sydney FROM table_name_61 WHERE adelaide = "yes" AND gold_coast = "yes" AND melbourne = "yes" AND auckland = "yes" ### context: CREATE TABLE table_name_61 (sydney VARCHAR, auckland VARCHAR, melbourne ...
### question: What is The Melbourne with a No- Gold Coast ### answer: SELECT melbourne FROM table_name_67 WHERE gold_coast = "no" ### context: CREATE TABLE table_name_67 (melbourne VARCHAR, gold_coast VARCHAR)
### question: What is the rank of the candidate with more than 2,211 votes? ### answer: SELECT rank FROM table_name_22 WHERE votes > 2 OFFSET 211 ### context: CREATE TABLE table_name_22 (rank VARCHAR, votes INTEGER)
### question: What the since year of the player with a transfer fee of £ 75k? ### answer: SELECT since FROM table_name_76 WHERE transfer_fee = "£ 75k" ### context: CREATE TABLE table_name_76 (since VARCHAR, transfer_fee VARCHAR)
### question: What is the since year for the player with more than 3 goals and a transfer fee of £400k? ### answer: SELECT since FROM table_name_24 WHERE goals > 3 AND transfer_fee = "£400k" ### context: CREATE TABLE table_name_24 (since VARCHAR, goals VARCHAR, transfer_fee VARCHAR)
### question: What is the nationality of the player with a transfer fee of £400k? ### answer: SELECT nat FROM table_name_99 WHERE transfer_fee = "£400k" ### context: CREATE TABLE table_name_99 (nat VARCHAR, transfer_fee VARCHAR)
### question: What is the average goals Sawyer has? ### answer: SELECT AVG(goals) FROM table_name_46 WHERE name = "sawyer" ### context: CREATE TABLE table_name_46 (goals INTEGER, name VARCHAR)
### question: What were the goal conceded that had a lost greater than 8 and more than 17 points? ### answer: SELECT MAX(goals_conceded) FROM table_name_19 WHERE lost > 8 AND points > 17 ### context: CREATE TABLE table_name_19 (goals_conceded INTEGER, lost VARCHAR, points VARCHAR)
### question: For Once Municipal, what were the goals scored that had less than 27 points and greater than place 1? ### answer: SELECT AVG(goals_scored) FROM table_name_69 WHERE place > 1 AND team = "once municipal" AND points < 27 ### context: CREATE TABLE table_name_69 (goals_scored INTEGER, points VARCHAR, place VAR...
### question: How many points were in a game that had a lost of 5, greater than place 2, and 27 goals conceded? ### answer: SELECT COUNT(points) FROM table_name_85 WHERE goals_conceded = 27 AND lost = 5 AND place > 2 ### context: CREATE TABLE table_name_85 (points VARCHAR, place VARCHAR, goals_conceded VARCHAR, lost VA...
### question: What is the lowest amount of goals scored that has more than 19 goal conceded and played less than 18? ### answer: SELECT MIN(goals_scored) FROM table_name_50 WHERE goals_conceded > 19 AND played < 18 ### context: CREATE TABLE table_name_50 (goals_scored INTEGER, goals_conceded VARCHAR, played VARCHAR)
### question: What are the number of goals conceded that has a played greater than 18? ### answer: SELECT COUNT(goals_conceded) FROM table_name_13 WHERE played > 18 ### context: CREATE TABLE table_name_13 (goals_conceded VARCHAR, played INTEGER)
### question: What's the place that Once Municipal has a lost greater than 3? ### answer: SELECT AVG(place) FROM table_name_81 WHERE team = "once municipal" AND lost > 3 ### context: CREATE TABLE table_name_81 (place INTEGER, team VARCHAR, lost VARCHAR)
### question: Give the Finish for years after 2007. ### answer: SELECT finish FROM table_name_42 WHERE year > 2007 ### context: CREATE TABLE table_name_42 (finish VARCHAR, year INTEGER)
### question: Give the Finish for a Stage that is larger than 15 ### answer: SELECT finish FROM table_name_44 WHERE stage > 15 ### context: CREATE TABLE table_name_44 (finish VARCHAR, stage INTEGER)
### question: Name the start of an event in Catagory 2 of the year 1947. ### answer: SELECT start FROM table_name_40 WHERE category = "2" AND year = 1947 ### context: CREATE TABLE table_name_40 (start VARCHAR, category VARCHAR, year VARCHAR)