answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT COUNT(money___) AS $__ FROM table_name_76 WHERE to_par = 9 AND player = "tommy bolt"
How much total money does player tommy bolt, who has a to par of 9, have?
CREATE TABLE table_name_76 (money___ VARCHAR, to_par VARCHAR, player VARCHAR)
SELECT team FROM table_name_80 WHERE losses = "7" AND goals_for = 55
Which team had 7 losses and 55 goals?
CREATE TABLE table_name_80 (team VARCHAR, losses VARCHAR, goals_for VARCHAR)
SELECT song_title FROM table_13805773_2 WHERE points = 259
What is the title of the song that received 259 points?
CREATE TABLE table_13805773_2 (song_title VARCHAR, points VARCHAR)
SELECT COUNT(week) FROM table_14940519_1 WHERE game_site = "Memorial Stadium" AND opponent = "Buffalo Bills"
Name the number of week for game site being memorial stadium for buffalo bills
CREATE TABLE table_14940519_1 (week VARCHAR, game_site VARCHAR, opponent VARCHAR)
SELECT writer_s_ FROM table_25800134_1 WHERE series__number = 56
Who wrote the episode with series number 56?
CREATE TABLE table_25800134_1 (writer_s_ VARCHAR, series__number VARCHAR)
SELECT assists FROM table_name_90 WHERE competition = "k-league" AND total_gs > 20 AND team = "pohang steelers" AND opponent = "chunnam dragons"
How many assists were in the k-league competition, which has more than 20 total Gs, the pohang steelers team, and chunnam dragons as the opponent?
CREATE TABLE table_name_90 (assists VARCHAR, opponent VARCHAR, team VARCHAR, competition VARCHAR, total_gs VARCHAR)
SELECT COUNT(goals_scored) FROM table_28848697_4 WHERE year = "Verano 2001"
How many goals scored entries are listed when the year is verano 2001?
CREATE TABLE table_28848697_4 (goals_scored VARCHAR, year VARCHAR)
SELECT date FROM table_name_80 WHERE tie_no = "4"
on what date was tie number 4?
CREATE TABLE table_name_80 (date VARCHAR, tie_no VARCHAR)
SELECT COUNT(tckl) FROM table_name_9 WHERE year = "2000" AND p_ko_ret < 14
What is the total of TCKL in 2000 with a P/KO RET less than 14?
CREATE TABLE table_name_9 (tckl VARCHAR, year VARCHAR, p_ko_ret VARCHAR)
SELECT competition FROM table_name_57 WHERE position = "1st" AND notes = "57.03"
Which Competition was 1st Position with 57.03 in Notes?
CREATE TABLE table_name_57 (competition VARCHAR, position VARCHAR, notes VARCHAR)
SELECT numeral FROM table_1682865_1 WHERE english_name = "Florin"
What is the numeral where the English name is Florin?
CREATE TABLE table_1682865_1 (numeral VARCHAR, english_name VARCHAR)
SELECT nba_draft FROM table_name_7 WHERE school = "northeast high school"
What was the NBA draft status for Northeast High School?
CREATE TABLE table_name_7 (nba_draft VARCHAR, school VARCHAR)
SELECT AVG(GNP), SUM(population) FROM country WHERE GovernmentForm = "US Territory"
What is the average GNP and total population in all nations whose government is US territory?
CREATE TABLE country (GNP INTEGER, population INTEGER, GovernmentForm VARCHAR)
SELECT record FROM table_name_6 WHERE date = "15 december" AND round = "final"
What is the record for the date 15 december, and a round of final?
CREATE TABLE table_name_6 (record VARCHAR, date VARCHAR, round VARCHAR)
SELECT original_album FROM table_name_23 WHERE time = "3:39"
What is Original Album, when Time is "3:39"?
CREATE TABLE table_name_23 (original_album VARCHAR, time VARCHAR)
SELECT Took AS office FROM table_name_76 WHERE location = "dover" AND type = "executive"
What date did the executive office in Dover take office?
CREATE TABLE table_name_76 (Took VARCHAR, location VARCHAR, type VARCHAR)
SELECT AVG(sp) + fs FROM table_name_2 WHERE places < 94 AND name = "renata baierova"
Name the average SP+FS with places less tha 94 for renata baierova
CREATE TABLE table_name_2 (fs VARCHAR, sp INTEGER, places VARCHAR, name VARCHAR)
SELECT name FROM manufacturers WHERE revenue > (SELECT AVG(revenue) FROM manufacturers)
Find the name of companies whose revenue is greater than the average revenue of all companies.
CREATE TABLE manufacturers (name VARCHAR, revenue INTEGER)
SELECT t1.name FROM swimmer AS t1 JOIN record AS t2 ON t1.id = t2.swimmer_id GROUP BY t2.swimmer_id HAVING COUNT(*) >= 2
Find the name of the swimmer who has at least 2 records.
CREATE TABLE record (swimmer_id VARCHAR); CREATE TABLE swimmer (name VARCHAR, id VARCHAR)
SELECT ground FROM table_name_74 WHERE away_team = "geelong"
What is the ground of the Geelong Away team?
CREATE TABLE table_name_74 (ground VARCHAR, away_team VARCHAR)
SELECT opponent FROM table_name_52 WHERE score = "3–6, 5–7"
Which Opponent has a Score of 3–6, 5–7?
CREATE TABLE table_name_52 (opponent VARCHAR, score VARCHAR)
SELECT T1.name FROM tracks AS T1 JOIN playlist_tracks AS T2 ON T1.id = T2.track_id JOIN playlists AS T3 ON T2.playlist_id = T3.id WHERE T3.name = 'Movies' EXCEPT SELECT T1.name FROM tracks AS T1 JOIN playlist_tracks AS T2 ON T1.id = T2.track_id JOIN playlists AS T3 ON T2.playlist_id = T3.id WHERE T3.name = 'Music'
Find the name of tracks which are in Movies playlist but not in music playlist.
CREATE TABLE playlists (id VARCHAR, name VARCHAR); CREATE TABLE playlist_tracks (track_id VARCHAR, playlist_id VARCHAR); CREATE TABLE tracks (name VARCHAR, id VARCHAR)
SELECT COUNT(large_end) FROM table_name_5 WHERE taper / ft < 0.6000000000000001
Which Large end has a Taper/ft smaller than 0.6000000000000001?
CREATE TABLE table_name_5 (large_end VARCHAR, taper VARCHAR, ft VARCHAR)
SELECT SUM(placings) FROM table_name_31 WHERE nation = "west germany" AND points > 303.72
Which Placings have a Nation of west germany, and Points larger than 303.72?
CREATE TABLE table_name_31 (placings INTEGER, nation VARCHAR, points VARCHAR)
SELECT entrant FROM table_name_37 WHERE year < 1953 AND chassis = "moore"
What entrant drove a car with a Moore chassis prior to 1953?
CREATE TABLE table_name_37 (entrant VARCHAR, year VARCHAR, chassis VARCHAR)
SELECT director FROM table_name_27 WHERE production_number = 1490
What director had a production number of 1490?
CREATE TABLE table_name_27 (director VARCHAR, production_number VARCHAR)
SELECT also_currently_known_as FROM table_20630462_1 WHERE tournament = "Tampa"
What is the current tournament name for the event in Tampa?
CREATE TABLE table_20630462_1 (also_currently_known_as VARCHAR, tournament VARCHAR)
SELECT total FROM table_name_41 WHERE place = "3rd" AND season = "9"
What is the total for 3rd place on season 9?
CREATE TABLE table_name_41 (total VARCHAR, place VARCHAR, season VARCHAR)
SELECT city FROM table_name_97 WHERE years = "1971-1974"
Which city had years 1971-1974?
CREATE TABLE table_name_97 (city VARCHAR, years VARCHAR)
SELECT MIN(game) FROM table_16028459_2 WHERE bills_first_downs = 21
When is the latest game the bills had 21 first downs
CREATE TABLE table_16028459_2 (game INTEGER, bills_first_downs VARCHAR)
SELECT MAX(no_in_series) FROM table_19897294_8 WHERE family_families = "The Ward Family and The Wren Family"
Name the number in series for in the ward family and the wren family
CREATE TABLE table_19897294_8 (no_in_series INTEGER, family_families VARCHAR)
SELECT density__hab__km²__ FROM table_name_61 WHERE altitude_m = "1300"
What is the density (hab/ km²) when the altitude m is 1300?
CREATE TABLE table_name_61 (density__hab__km²__ VARCHAR, altitude_m VARCHAR)
SELECT tournament FROM table_name_36 WHERE runner_up = "pat cash"
Which Tournament has Pat Cash as a runner-up?
CREATE TABLE table_name_36 (tournament VARCHAR, runner_up VARCHAR)
SELECT date FROM table_name_97 WHERE country = "united states"
What was the Date of Country of United States?
CREATE TABLE table_name_97 (date VARCHAR, country VARCHAR)
SELECT COUNT(year) FROM table_name_35 WHERE team = "aston martin racing" AND pos = "6th"
In what year did the team of aston martin racing have a position of 6th?
CREATE TABLE table_name_35 (year VARCHAR, team VARCHAR, pos VARCHAR)
SELECT year FROM table_name_74 WHERE notes = "87.17 m"
Which Year has Notes of 87.17 m?
CREATE TABLE table_name_74 (year VARCHAR, notes VARCHAR)
SELECT language FROM table_2509350_3 WHERE el_villar_municipality = 1264
Name the language for el villar 1264
CREATE TABLE table_2509350_3 (language VARCHAR, el_villar_municipality VARCHAR)
SELECT COUNT(founded) FROM table_16078390_2 WHERE location = "Tacoma, Washington"
How many Universities were founded in Tacoma, Washington?
CREATE TABLE table_16078390_2 (founded VARCHAR, location VARCHAR)
SELECT county FROM table_1304443_2 WHERE bush_percentage = "48.3%"
What's the name of the county where 48.3% voted for Bush?
CREATE TABLE table_1304443_2 (county VARCHAR, bush_percentage VARCHAR)
SELECT SUM(year_of_award) FROM table_name_35 WHERE date_s_ = "june 6, 2004–june 15, 2004"
What year were the awards given june 6, 2004–june 15, 2004?
CREATE TABLE table_name_35 (year_of_award INTEGER, date_s_ VARCHAR)
SELECT last_win FROM table_name_34 WHERE last_final_lost = "2011"
When was the last win for the club that had a final loss in 2011?
CREATE TABLE table_name_34 (last_win VARCHAR, last_final_lost VARCHAR)
SELECT college FROM table_name_52 WHERE round = 14 AND pick__number > 339
A Pick # larger than 339 and the College that has a Round of 14 is what?
CREATE TABLE table_name_52 (college VARCHAR, round VARCHAR, pick__number VARCHAR)
SELECT champion FROM table_name_35 WHERE venue = "old waverly golf club"
Which Champion has a Venue of old waverly golf club?
CREATE TABLE table_name_35 (champion VARCHAR, venue VARCHAR)
SELECT opponent FROM table_name_35 WHERE loss = "wells (4-7)"
Who was the opponent when the loss was Wells (4-7)?
CREATE TABLE table_name_35 (opponent VARCHAR, loss VARCHAR)
SELECT event FROM table_name_98 WHERE location = "brighton, uk"
What bombing happened in Brighton, UK?
CREATE TABLE table_name_98 (event VARCHAR, location VARCHAR)
SELECT width FROM table_name_88 WHERE number_of_vehicles > 15 AND type_designation = "k5000"
Which Width has a Number of vehicles larger than 15, and a Type designation of k5000?
CREATE TABLE table_name_88 (width VARCHAR, number_of_vehicles VARCHAR, type_designation VARCHAR)
SELECT won FROM table_12792876_2 WHERE "club" = "club"
What is the third entry in the row with a first entry of "club"?
CREATE TABLE table_12792876_2 (won VARCHAR)
SELECT MIN(rank) FROM table_18590048_1 WHERE title = "Super Mario Land 2: 6 Golden Coins"
What rank is Super Mario Land 2: 6 Golden Coins?
CREATE TABLE table_18590048_1 (rank INTEGER, title VARCHAR)
SELECT winning_pct__percentage FROM table_2259285_1 WHERE goals_for = 229
What is the winning pct % if the goal for are 229?
CREATE TABLE table_2259285_1 (winning_pct__percentage VARCHAR, goals_for VARCHAR)
SELECT MIN(wins) FROM table_name_70 WHERE events > 30
Which Wins is the lowest one that has Events larger than 30?
CREATE TABLE table_name_70 (wins INTEGER, events INTEGER)
SELECT chassis FROM table_name_12 WHERE driver = "otto stuppacher"
What Chassis was driven by Otto Stuppacher?
CREATE TABLE table_name_12 (chassis VARCHAR, driver VARCHAR)
SELECT yes_vote FROM table_name_73 WHERE date = "2006" AND state = "tennessee"
How many positive votes for Tennessee in 2006?
CREATE TABLE table_name_73 (yes_vote VARCHAR, date VARCHAR, state VARCHAR)
SELECT rally_name FROM table_name_17 WHERE surface = "asphalt and gravel"
Which Rally Name has a Surface of asphalt and gravel?
CREATE TABLE table_name_17 (rally_name VARCHAR, surface VARCHAR)
SELECT AVG(round) FROM table_name_18 WHERE college = "baylor" AND pick < 28
What is the average round of the player from the college of baylor with a pick less than 28?
CREATE TABLE table_name_18 (round INTEGER, college VARCHAR, pick VARCHAR)
SELECT T3.Name, T2.Date FROM news_report AS T1 JOIN event AS T2 ON T1.Event_ID = T2.Event_ID JOIN journalist AS T3 ON T1.journalist_ID = T3.journalist_ID
Show the names of journalists and the dates of the events they reported.
CREATE TABLE journalist (Name VARCHAR, journalist_ID VARCHAR); CREATE TABLE news_report (Event_ID VARCHAR, journalist_ID VARCHAR); CREATE TABLE event (Date VARCHAR, Event_ID VARCHAR)
SELECT record FROM table_name_20 WHERE opponent = "bob ostovich"
What is Bob Ostovich's opponents record?
CREATE TABLE table_name_20 (record VARCHAR, opponent VARCHAR)
SELECT voltage FROM table_name_21 WHERE model_number = "c3 866"
What is the Voltage for Model Number c3 866?
CREATE TABLE table_name_21 (voltage VARCHAR, model_number VARCHAR)
SELECT country FROM table_name_32 WHERE iata = "vie"
Which Country has a IATA of vie?
CREATE TABLE table_name_32 (country VARCHAR, iata VARCHAR)
SELECT _percentage_of_eu_average_gdp__ppp_ FROM table_2293510_1 WHERE €_per_capita__2005_ = 2519
What's the percentage of EU average GDP (PPP) in the region where € per capita is 2519
CREATE TABLE table_2293510_1 (_percentage_of_eu_average_gdp__ppp_ VARCHAR, €_per_capita__2005_ VARCHAR)
SELECT state_province_county, COUNT(*) FROM addresses GROUP BY state_province_county
Show each state and the number of addresses in each state.
CREATE TABLE addresses (state_province_county VARCHAR)
SELECT DISTINCT T2.thing_id, T2.Type_of_Thing_Code FROM Timed_Status_of_Things AS T1 JOIN Things AS T2 ON T1.thing_id = T2.thing_id WHERE T1.Status_of_Thing_Code = 'Close' OR T1.Date_and_Date < '2017-06-19 02:59:21'
What are the distinct id and type of the thing that has the status 'Close' or has a status record before the date '2017-06-19 02:59:21'
CREATE TABLE Timed_Status_of_Things (thing_id VARCHAR, Status_of_Thing_Code VARCHAR, Date_and_Date VARCHAR); CREATE TABLE Things (thing_id VARCHAR, Type_of_Thing_Code VARCHAR)
SELECT record FROM table_name_25 WHERE week > 7 AND opponent = "san diego chargers"
What is the Record in a week later than 7 against the San Diego Chargers?
CREATE TABLE table_name_25 (record VARCHAR, week VARCHAR, opponent VARCHAR)
SELECT nationality FROM table_1213511_7 WHERE pick__number = 89
What nationality is pick # 89
CREATE TABLE table_1213511_7 (nationality VARCHAR, pick__number VARCHAR)
SELECT location FROM table_name_89 WHERE opponent = "scott junk"
Where is the location where Scott Junk was the opponent?
CREATE TABLE table_name_89 (location VARCHAR, opponent VARCHAR)
SELECT headquarters FROM table_name_49 WHERE primary_industry = "oil and gas" AND name = "exxon mobil"
Where is Exxon Mobil, an oil and gas corporation, headquartered?
CREATE TABLE table_name_49 (headquarters VARCHAR, primary_industry VARCHAR, name VARCHAR)
SELECT qual_2 FROM table_name_45 WHERE best = "59.266"
What is the time for qual 2 that has the best time of 59.266?
CREATE TABLE table_name_45 (qual_2 VARCHAR, best VARCHAR)
SELECT comments FROM table_name_64 WHERE year_made = "1875"
What comments are made in 1875?
CREATE TABLE table_name_64 (comments VARCHAR, year_made VARCHAR)
SELECT final_score FROM table_10548224_1 WHERE date_contested = "February 1, 2009"
What was the final score for the game that was contested on February 1, 2009?
CREATE TABLE table_10548224_1 (final_score VARCHAR, date_contested VARCHAR)
SELECT score FROM table_name_17 WHERE game > 7 AND points < 14
Which Score has a Game larger than 7, and Points smaller than 14?
CREATE TABLE table_name_17 (score VARCHAR, game VARCHAR, points VARCHAR)
SELECT opponent FROM table_name_87 WHERE attendance = "64,002"
Who was the opponent with attendance at 64,002?
CREATE TABLE table_name_87 (opponent VARCHAR, attendance VARCHAR)
SELECT MAX(rank) FROM table_name_24 WHERE silver < 1 AND bronze > 1
What is the Rank of the Nation with 0 Silver and more than 1 Bronze?
CREATE TABLE table_name_24 (rank INTEGER, silver VARCHAR, bronze VARCHAR)
SELECT competition FROM table_name_60 WHERE result = "france 46-16 scotland"
Which Competition has a Result of france 46-16 scotland?
CREATE TABLE table_name_60 (competition VARCHAR, result VARCHAR)
SELECT nationality FROM table_name_84 WHERE college_junior_club_team__league_ = "swift current broncos (wchl)"
Which Nationality has a College/Junior/Club Team (League) of swift current broncos (wchl)?
CREATE TABLE table_name_84 (nationality VARCHAR, college_junior_club_team__league_ VARCHAR)
SELECT soccer_stadium FROM table_27369069_1 WHERE province = "NL"
What is the name of the soccer stadium in NL providence?
CREATE TABLE table_27369069_1 (soccer_stadium VARCHAR, province VARCHAR)
SELECT class FROM table_name_33 WHERE quantity < 5 AND gwr_nos = "1322–1323"
Which class is smaller than 5 and the GWR is 1322–1323?
CREATE TABLE table_name_33 (class VARCHAR, quantity VARCHAR, gwr_nos VARCHAR)
SELECT driver FROM table_name_2 WHERE constructor = "bugatti" AND location = "anfa"
What is the name of the driver of the vehicle constructed by Bugatti in Anfa?
CREATE TABLE table_name_2 (driver VARCHAR, constructor VARCHAR, location VARCHAR)
SELECT team FROM table_14003108_1 WHERE stadium = "Borough Briggs"
what's the team with stadium being borough briggs
CREATE TABLE table_14003108_1 (team VARCHAR, stadium VARCHAR)
SELECT species_specific FROM table_name_53 WHERE link = "server/sourcecode"
Which Species Specific has a Link of server/sourcecode?
CREATE TABLE table_name_53 (species_specific VARCHAR, link VARCHAR)
SELECT COUNT(state) FROM table_22916979_1 WHERE population_density__people_per_mi_2__ = "10188.8"
How many states had a population density of 10188.8?
CREATE TABLE table_22916979_1 (state VARCHAR, population_density__people_per_mi_2__ VARCHAR)
SELECT Name FROM people WHERE NOT People_ID IN (SELECT People_ID FROM perpetrator)
List the names of people that are not perpetrators.
CREATE TABLE people (Name VARCHAR, People_ID VARCHAR); CREATE TABLE perpetrator (Name VARCHAR, People_ID VARCHAR)
SELECT score FROM table_name_43 WHERE surface = "clay" AND year > 2006 AND opponent = "david ferrer"
What was the score on a clay surface in a year later than 2006 with David Ferrer as an opponent?
CREATE TABLE table_name_43 (score VARCHAR, opponent VARCHAR, surface VARCHAR, year VARCHAR)
SELECT khmer FROM table_name_20 WHERE other = "mouy"
for the other of mouy, what's the khmer?
CREATE TABLE table_name_20 (khmer VARCHAR, other VARCHAR)
SELECT timeslot FROM table_2639433_4 WHERE episodes = 234
If the episode was number 234, what was it's timeslot?
CREATE TABLE table_2639433_4 (timeslot VARCHAR, episodes VARCHAR)
SELECT MAX(laps) FROM table_name_10 WHERE constructor = "minardi - fondmetal" AND driver = "marc gené" AND grid > 20
Which entry has the highest laps of those with constructor Minardi - Fondmetal, driver Marc Gené, and a grid larger than 20?
CREATE TABLE table_name_10 (laps INTEGER, grid VARCHAR, constructor VARCHAR, driver VARCHAR)
SELECT MIN(silver) FROM table_name_86 WHERE total < 10 AND gold > 1
Total smaller than 10, and a Gold larger than 1 then what is the lowest silver?
CREATE TABLE table_name_86 (silver INTEGER, total VARCHAR, gold VARCHAR)
SELECT COUNT(package_option) FROM table_15887683_10 WHERE television_service = "Music Box Italia"
Name the number of package options for music box italia
CREATE TABLE table_15887683_10 (package_option VARCHAR, television_service VARCHAR)
SELECT score FROM table_name_57 WHERE home = "ny islanders" AND date = "october 20"
What was the score of the game on October 20 when the home team is the NY Islanders?
CREATE TABLE table_name_57 (score VARCHAR, home VARCHAR, date VARCHAR)
SELECT 3 AS rd_place FROM table_name_20 WHERE year = "1990"
Who came in 3rd place in 1990?
CREATE TABLE table_name_20 (year VARCHAR)
SELECT recipients_and_nominees FROM table_name_93 WHERE category = "outstanding achievement in drama" AND year = 1994
What recipients and nominees have outstanding achievement in drama as the category with 1994 as the year?
CREATE TABLE table_name_93 (recipients_and_nominees VARCHAR, category VARCHAR, year VARCHAR)
SELECT T1.cust_name FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id GROUP BY T1.cust_name ORDER BY SUM(T2.amount)
List the name of all different customers who have some loan sorted by their total loan amount.
CREATE TABLE loan (cust_id VARCHAR, amount INTEGER); CREATE TABLE customer (cust_name VARCHAR, cust_id VARCHAR)
SELECT release_date FROM table_name_96 WHERE cat__number = "par116"
What is the release date with par116 as the cat. #?
CREATE TABLE table_name_96 (release_date VARCHAR, cat__number VARCHAR)
SELECT AVG(Order_Quantity) FROM Invoices WHERE payment_method_code = "MasterCard"
What is the average quantities ordered with payment method code "MasterCard" on invoices?
CREATE TABLE Invoices (Order_Quantity INTEGER, payment_method_code VARCHAR)
SELECT result_f_a FROM table_name_43 WHERE opponents = "beijing hyundai"
What was the result against Beijing Hyundai?
CREATE TABLE table_name_43 (result_f_a VARCHAR, opponents VARCHAR)
SELECT COUNT(field_goals) FROM table_name_80 WHERE touchdowns = 0 AND extra_points = 2
What were the total number of field goals when there were 0 touchdowns and 2 extra points?
CREATE TABLE table_name_80 (field_goals VARCHAR, touchdowns VARCHAR, extra_points VARCHAR)
SELECT circuit FROM table_26638600_3 WHERE lites_1_race_one_winning_team = "#66 Gunnar Racing"
On which circuit was the lites 1 race one winning team #66 Gunnar Racing?
CREATE TABLE table_26638600_3 (circuit VARCHAR, lites_1_race_one_winning_team VARCHAR)
SELECT AVG(points) FROM table_name_60 WHERE year > 1989 AND rank = "7th"
What is the average points with a year higher than 1989, and a rank of 7th?
CREATE TABLE table_name_60 (points INTEGER, year VARCHAR, rank VARCHAR)
SELECT captain FROM table_name_56 WHERE team = "crystal palace"
Who was the team captain for Crystal Palace?
CREATE TABLE table_name_56 (captain VARCHAR, team VARCHAR)
SELECT AVG(win__percentage) FROM table_name_91 WHERE span = "2011–2013" AND lost < 1
What is the Win % in the Span of 2011–2013 with a Lost of less than 1?
CREATE TABLE table_name_91 (win__percentage INTEGER, span VARCHAR, lost VARCHAR)
SELECT date FROM table_name_34 WHERE circuit = "mosport park"
What is the date of the Mosport Park circuit?
CREATE TABLE table_name_34 (date VARCHAR, circuit VARCHAR)
SELECT AVG(yards) FROM table_name_2 WHERE game_time = "2nd quarter (0:00)" AND date = "november 8, 1971"
Game time of 2nd quarter (0:00), and a Date of november 8, 1971 has how many average yards?
CREATE TABLE table_name_2 (yards INTEGER, game_time VARCHAR, date VARCHAR)