question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What is Balls, when Venue is "Bristol", and when Score is "104*"?
CREATE TABLE table_name_3 (balls VARCHAR, venue VARCHAR, score VARCHAR)
SELECT balls FROM table_name_3 WHERE venue = "bristol" AND score = "104*"
What is the scoring average where the wins are 0?
CREATE TABLE table_name_56 (scoring_average VARCHAR, wins INTEGER)
SELECT COUNT(scoring_average) FROM table_name_56 WHERE wins < 0
Name the total number of swimsuits for evening gowns less than 8.21 and average of 8.453 with interview less than 9.09
CREATE TABLE table_name_54 (swimsuit VARCHAR, average VARCHAR, interview VARCHAR, evening_gown VARCHAR)
SELECT COUNT(swimsuit) FROM table_name_54 WHERE interview < 9.09 AND evening_gown < 8.21 AND average = 8.453
How many vacant seats were filled by newcomer Joseph H. Bottum (r)?
CREATE TABLE table_1802522_3 (vacator VARCHAR, successor VARCHAR)
SELECT COUNT(vacator) FROM table_1802522_3 WHERE successor = "Joseph H. Bottum (R)"
What was the score in the final when the outcome was winner in 1989?
CREATE TABLE table_23235546_1 (score_in_the_final VARCHAR, outcome VARCHAR, year VARCHAR)
SELECT score_in_the_final FROM table_23235546_1 WHERE outcome = "Winner" AND year = 1989
What is the highest rank for a nation with 26 golds and over 17 silvers?
CREATE TABLE table_name_39 (rank INTEGER, gold VARCHAR, silver VARCHAR)
SELECT MAX(rank) FROM table_name_39 WHERE gold = 26 AND silver > 17
What is Brian Mateer's Speed?
CREATE TABLE table_name_1 (speed VARCHAR, rider VARCHAR)
SELECT speed FROM table_name_1 WHERE rider = "brian mateer"
What district first elected in 1978?
CREATE TABLE table_1341472_51 (district VARCHAR, first_elected VARCHAR)
SELECT district FROM table_1341472_51 WHERE first_elected = 1978
What is the number of distinct continents where Chinese is spoken?
CREATE TABLE country (Code VARCHAR); CREATE TABLE countrylanguage (CountryCode VARCHAR, Language VARCHAR)
SELECT COUNT(DISTINCT Continent) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = "Chinese"
What is the record when the Nuggets are the home team?
CREATE TABLE table_name_33 (record VARCHAR, home VARCHAR)
SELECT record FROM table_name_33 WHERE home = "nuggets"
What was the population in 2010 for Minane
CREATE TABLE table_2144436_1 (population__2010_ INTEGER, barangay VARCHAR)
SELECT MAX(population__2010_) FROM table_2144436_1 WHERE barangay = "Minane"
how many games with high rebounds where in february 26
CREATE TABLE table_19169116_6 (high_rebounds VARCHAR, date VARCHAR)
SELECT COUNT(high_rebounds) FROM table_19169116_6 WHERE date = "February 26"
What is the lowest Total Medals that has madison independent and Bronze Medals larger than 0
CREATE TABLE table_name_76 (total_medals INTEGER, ensemble VARCHAR, bronze_medals VARCHAR)
SELECT MIN(total_medals) FROM table_name_76 WHERE ensemble = "madison independent" AND bronze_medals > 0
What is latitude when 2010 population is 24 and water is more than 0.319?
CREATE TABLE table_name_24 (latitude INTEGER, pop__2010_ VARCHAR, water__sqmi_ VARCHAR)
SELECT MAX(latitude) FROM table_name_24 WHERE pop__2010_ = 24 AND water__sqmi_ > 0.319
What is the mix pack when the artist 2 is Eminem?
CREATE TABLE table_23649244_2 (mix_pack VARCHAR, artist_2 VARCHAR)
SELECT mix_pack FROM table_23649244_2 WHERE artist_2 = "Eminem"
What is the location and attendance of the game with a 3-1-0 record?
CREATE TABLE table_name_6 (location_attendance VARCHAR, record VARCHAR)
SELECT location_attendance FROM table_name_6 WHERE record = "3-1-0"
Name the lfop for 5/11/09 with lfop 1/9/09 of 5%
CREATE TABLE table_name_18 (ifop_5_11_09 VARCHAR, ifop_1_9_09 VARCHAR)
SELECT ifop_5_11_09 FROM table_name_18 WHERE ifop_1_9_09 = "5%"
I want the constituency which has a swing to gain less than 6.05 and a rank of 2
CREATE TABLE table_name_4 (constituency VARCHAR, swing_to_gain VARCHAR, rank VARCHAR)
SELECT constituency FROM table_name_4 WHERE swing_to_gain < 6.05 AND rank = 2
Which Bronze is the highest one that has a Rank larger than 1, and a Nation of dominican republic, and a Total larger than 4?
CREATE TABLE table_name_44 (bronze INTEGER, total VARCHAR, rank VARCHAR, nation VARCHAR)
SELECT MAX(bronze) FROM table_name_44 WHERE rank > 1 AND nation = "dominican republic" AND total > 4
What is Years, when Jersey Number(s) is 21, and when Position is SG?
CREATE TABLE table_name_97 (years VARCHAR, jersey_number_s_ VARCHAR, position VARCHAR)
SELECT years FROM table_name_97 WHERE jersey_number_s_ = "21" AND position = "sg"
What is the corresponding Akira when Milano Collection A.T is Milano (10:29)?
CREATE TABLE table_name_58 (akira VARCHAR, milano_collection_at VARCHAR)
SELECT akira FROM table_name_58 WHERE milano_collection_at = "milano (10:29)"
Show the name of singers whose birth year is either 1948 or 1949?
CREATE TABLE singer (Name VARCHAR, Birth_Year VARCHAR)
SELECT Name FROM singer WHERE Birth_Year = 1948 OR Birth_Year = 1949
In what position did Salina Kosgei finish in the Tokyo Marathon?
CREATE TABLE table_name_23 (position VARCHAR, competition VARCHAR)
SELECT position FROM table_name_23 WHERE competition = "tokyo marathon"
born on 1983-03-14, what is the cb's name?
CREATE TABLE table_name_28 (name VARCHAR, pos VARCHAR, date_of_birth VARCHAR)
SELECT name FROM table_name_28 WHERE pos = "cb" AND date_of_birth = "1983-03-14"
How many average Cars Entered have a Third Driver of manny ayulo?
CREATE TABLE table_name_53 (cars_entered INTEGER, third_driver VARCHAR)
SELECT AVG(cars_entered) FROM table_name_53 WHERE third_driver = "manny ayulo"
What is the smallest population with an Area (km²) of 1115.4?
CREATE TABLE table_name_72 (population INTEGER, area__km²_ VARCHAR)
SELECT MIN(population) FROM table_name_72 WHERE area__km²_ = 1115.4
Which Winning score has a Tournament of walt disney world/oldsmobile classic?
CREATE TABLE table_name_67 (winning_score VARCHAR, tournament VARCHAR)
SELECT winning_score FROM table_name_67 WHERE tournament = "walt disney world/oldsmobile classic"
What was the highest guard picked?
CREATE TABLE table_name_50 (pick INTEGER, position VARCHAR)
SELECT MAX(pick) FROM table_name_50 WHERE position = "guard"
Which circuit has two heats as the format?
CREATE TABLE table_19886463_1 (circuit VARCHAR, format VARCHAR)
SELECT circuit FROM table_19886463_1 WHERE format = "Two heats"
Which year had a position of 9?
CREATE TABLE table_name_45 (year VARCHAR, position VARCHAR)
SELECT year FROM table_name_45 WHERE position = "9"
What is the result where the opponent is Columbus Destroyers?
CREATE TABLE table_name_99 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_name_99 WHERE opponent = "columbus destroyers"
Which Government has 57 seats?
CREATE TABLE table_name_56 (government VARCHAR, seats VARCHAR)
SELECT government FROM table_name_56 WHERE seats = 57
Which Cultural and Educational Panel has a Labour Panel larger than 5, and an Industrial and Commercial Panel larger than 9?
CREATE TABLE table_name_9 (cultural_and_educational_panel VARCHAR, labour_panel VARCHAR, industrial_and_commercial_panel VARCHAR)
SELECT COUNT(cultural_and_educational_panel) FROM table_name_9 WHERE labour_panel > 5 AND industrial_and_commercial_panel > 9
How many players have played for Jazz during 2006-2007?
CREATE TABLE table_11545282_6 (player VARCHAR, years_for_jazz VARCHAR)
SELECT COUNT(player) FROM table_11545282_6 WHERE years_for_jazz = "2006-2007"
What is the lowest Overs with a Run that is 18?
CREATE TABLE table_name_61 (overs INTEGER, runs VARCHAR)
SELECT MIN(overs) FROM table_name_61 WHERE runs = 18
What are the census ranking(s) of maugerville?
CREATE TABLE table_176521_2 (census_ranking VARCHAR, official_name VARCHAR)
SELECT census_ranking FROM table_176521_2 WHERE official_name = "Maugerville"
What school has the new conference as SELC?
CREATE TABLE table_26476336_2 (institution VARCHAR, new_conference VARCHAR)
SELECT institution FROM table_26476336_2 WHERE new_conference = "SELC"
What is the outcome of the match played on carpet surface?
CREATE TABLE table_name_27 (outcome VARCHAR, surface VARCHAR)
SELECT outcome FROM table_name_27 WHERE surface = "carpet"
Name the FCC info for frequency Mhz less than 97.3 and call sign of w237br
CREATE TABLE table_name_37 (fcc_info VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR)
SELECT fcc_info FROM table_name_37 WHERE frequency_mhz < 97.3 AND call_sign = "w237br"
What is the conference when Ferris State is the championship game opponent?
CREATE TABLE table_22165661_3 (conference VARCHAR, championship_game_opponent VARCHAR)
SELECT conference FROM table_22165661_3 WHERE championship_game_opponent = "Ferris State"
How many round values are associated with Cleveland McCrae?
CREATE TABLE table_name_91 (round VARCHAR, player VARCHAR)
SELECT COUNT(round) FROM table_name_91 WHERE player = "cleveland mccrae"
What is the sum of the points of all teams that had against scores less than 14?
CREATE TABLE table_name_96 (points INTEGER, against INTEGER)
SELECT SUM(points) FROM table_name_96 WHERE against < 14
What is the lowest gold that has a silver less than 2, Zimbabwe as the nation, and a bronze less than 1?
CREATE TABLE table_name_34 (gold INTEGER, bronze VARCHAR, silver VARCHAR, nation VARCHAR)
SELECT MIN(gold) FROM table_name_34 WHERE silver < 2 AND nation = "zimbabwe" AND bronze < 1
How many attended tie number 3?
CREATE TABLE table_name_97 (attendance INTEGER, tie_no VARCHAR)
SELECT MAX(attendance) FROM table_name_97 WHERE tie_no = "3"
What is the sum of Points, when the Performer is fe-mail?
CREATE TABLE table_name_64 (points INTEGER, performer VARCHAR)
SELECT SUM(points) FROM table_name_64 WHERE performer = "fe-mail"
What is the lowest Draft, when Player is "Dave Christian Category:Articles with hCards"?
CREATE TABLE table_name_74 (draft INTEGER, player VARCHAR)
SELECT MIN(draft) FROM table_name_74 WHERE player = "dave christian category:articles with hcards"
What is the date of the 2nd round 2nd leg?
CREATE TABLE table_name_63 (date VARCHAR, round VARCHAR)
SELECT date FROM table_name_63 WHERE round = "2nd round 2nd leg"
What is the nationality of the guard who played for Florida International?
CREATE TABLE table_name_53 (nationality VARCHAR, position VARCHAR, school_club_team VARCHAR)
SELECT nationality FROM table_name_53 WHERE position = "guard" AND school_club_team = "florida international"
Who is performing in the back stage position for the song "Badlands"? Show the first name and the last name.
CREATE TABLE Band (firstname VARCHAR, lastname VARCHAR, id VARCHAR); CREATE TABLE Performance (bandmate VARCHAR, SongId VARCHAR, StagePosition VARCHAR); CREATE TABLE Songs (SongId VARCHAR, Title VARCHAR)
SELECT T2.firstname, T2.lastname FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId WHERE T3.Title = "Badlands" AND T1.StagePosition = "back"
What is the callsign of Cagayan de Oro with 5kW?
CREATE TABLE table_name_81 (callsign VARCHAR, power__kw_ VARCHAR, location VARCHAR)
SELECT callsign FROM table_name_81 WHERE power__kw_ = "5kw" AND location = "cagayan de oro"
Who was the successor that was formally installed on March 30, 1870?
CREATE TABLE table_2417345_3 (successor VARCHAR, date_of_successors_formal_installation VARCHAR)
SELECT successor FROM table_2417345_3 WHERE date_of_successors_formal_installation = "March 30, 1870"
Which class was on the Las Vegas Motor Speedway for 2 hours?
CREATE TABLE table_name_3 (class VARCHAR, length VARCHAR, circuit VARCHAR)
SELECT class FROM table_name_3 WHERE length = "2 hours" AND circuit = "las vegas motor speedway"
what is the filter when the wavelength is 222mm (k-band)?
CREATE TABLE table_2583036_1 (filter VARCHAR, wavelength VARCHAR)
SELECT filter FROM table_2583036_1 WHERE wavelength = "222mm (K-band)"
What television service is in italy and is in english?
CREATE TABLE table_15887683_15 (television_service VARCHAR, country VARCHAR, language VARCHAR)
SELECT television_service FROM table_15887683_15 WHERE country = "Italy" AND language = "English"
Which Nickname has Founded of 1954?
CREATE TABLE table_name_66 (nickname VARCHAR, founded VARCHAR)
SELECT nickname FROM table_name_66 WHERE founded = 1954
How many in the introduced section had Fokker as a manufacturer, a quantity of 5, and retired later than 1999?
CREATE TABLE table_name_94 (introduced INTEGER, retired VARCHAR, manufacturer VARCHAR, quantity VARCHAR)
SELECT SUM(introduced) FROM table_name_94 WHERE manufacturer = "fokker" AND quantity = 5 AND retired > 1999
Name the date for qíngyuán … yìmǎ
CREATE TABLE table_16162581_1 (date__ce_ VARCHAR, pinyin VARCHAR)
SELECT date__ce_ FROM table_16162581_1 WHERE pinyin = "qíngyuán … yìmǎ"
Who was the home team in the match against Luton Town?
CREATE TABLE table_name_21 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_21 WHERE away_team = "luton town"
Which district has both stores with less than 3000 products and stores with more than 10000 products?
CREATE TABLE shop (district VARCHAR, Number_products INTEGER)
SELECT district FROM shop WHERE Number_products < 3000 INTERSECT SELECT district FROM shop WHERE Number_products > 10000
What Chassis has a year later than 1989?
CREATE TABLE table_name_31 (chassis VARCHAR, year INTEGER)
SELECT chassis FROM table_name_31 WHERE year > 1989
What year (s) won was +2 the To par, and t22 the finish?
CREATE TABLE table_name_5 (year_s__won VARCHAR, to_par VARCHAR, finish VARCHAR)
SELECT year_s__won FROM table_name_5 WHERE to_par = "+2" AND finish = "t22"
Who scored the highest points and how much against the raptors?
CREATE TABLE table_23248910_6 (high_points VARCHAR, team VARCHAR)
SELECT high_points FROM table_23248910_6 WHERE team = "Raptors"
What was the earliest year where USL PDL played in 3rd, Southeast season?
CREATE TABLE table_2402864_1 (year INTEGER, regular_season VARCHAR, league VARCHAR)
SELECT MIN(year) FROM table_2402864_1 WHERE regular_season = "3rd, Southeast" AND league = "USL PDL"
What is the date when Grimsby Town is the home team?
CREATE TABLE table_name_67 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_67 WHERE home_team = "grimsby town"
In episode Top 16 (8 Men), what are the themes?
CREATE TABLE table_26250199_1 (theme VARCHAR, episode VARCHAR)
SELECT theme FROM table_26250199_1 WHERE episode = "Top 16 (8 Men)"
What was the date when the opponent was at South carolina?
CREATE TABLE table_name_8 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_8 WHERE opponent = "at south carolina"
On what Date was the Works Number 7?
CREATE TABLE table_name_18 (date VARCHAR, works_number VARCHAR)
SELECT date FROM table_name_18 WHERE works_number = "7"
What won best pc intro when my kingdom (haujobb & scoopex) won best amiga demo?
CREATE TABLE table_2490289_1 (pc_intro VARCHAR, amiga_demo VARCHAR)
SELECT pc_intro FROM table_2490289_1 WHERE amiga_demo = "My Kingdom (Haujobb & Scoopex)"
What is the lowest nuber of games drawn in the total column?
CREATE TABLE table_name_31 (drawn INTEGER, against VARCHAR)
SELECT MIN(drawn) FROM table_name_31 WHERE against = "total"
Name the team of darren manning
CREATE TABLE table_17271495_1 (team VARCHAR, driver VARCHAR)
SELECT team FROM table_17271495_1 WHERE driver = "Darren Manning"
What is the highest YARDS with a TCKL more than 51 and less than 2 SACK?
CREATE TABLE table_name_61 (yards INTEGER, tckl VARCHAR, sack VARCHAR)
SELECT MAX(yards) FROM table_name_61 WHERE tckl > 51 AND sack < 2
What is the enrollment for the school in bottineau?
CREATE TABLE table_2076522_2 (enrollment__fall_2010_ VARCHAR, location_s_ VARCHAR)
SELECT enrollment__fall_2010_ FROM table_2076522_2 WHERE location_s_ = "Bottineau"
Which rank is 40 for s Wicket with a player of Daniel Marsh?
CREATE TABLE table_name_63 (rank VARCHAR, s_wicket VARCHAR, player VARCHAR)
SELECT rank FROM table_name_63 WHERE s_wicket = "40" AND player = "daniel marsh"
Which Losses have a South West DFL of branxholme-wallacedale, and less than 2 Byes?
CREATE TABLE table_name_21 (losses INTEGER, south_west_dfl VARCHAR, byes VARCHAR)
SELECT AVG(losses) FROM table_name_21 WHERE south_west_dfl = "branxholme-wallacedale" AND byes < 2
Find the names of schools that have some students playing in goalie and mid positions.
CREATE TABLE tryout (cName VARCHAR, pPos VARCHAR)
SELECT cName FROM tryout WHERE pPos = 'goalie' INTERSECT SELECT cName FROM tryout WHERE pPos = 'mid'
What is the name of the Leftfielder when Davey Lopes was the Second Baseman and first baseman was steve garvey, Shortstop of bill russell eariler than 1977?
CREATE TABLE table_name_90 (leftfielder VARCHAR, year VARCHAR, shortstop VARCHAR, second_baseman VARCHAR, first_baseman VARCHAR)
SELECT leftfielder FROM table_name_90 WHERE second_baseman = "davey lopes" AND first_baseman = "steve garvey" AND shortstop = "bill russell" AND year > 1977
What did Fred Couples place?
CREATE TABLE table_name_61 (place VARCHAR, player VARCHAR)
SELECT place FROM table_name_61 WHERE player = "fred couples"
In which week was the Theme 1960s?
CREATE TABLE table_name_44 (week__number VARCHAR, theme VARCHAR)
SELECT week__number FROM table_name_44 WHERE theme = "1960s"
what is the place when the score is 76-69-71-70=286?
CREATE TABLE table_name_34 (place VARCHAR, score VARCHAR)
SELECT place FROM table_name_34 WHERE score = 76 - 69 - 71 - 70 = 286
How many schools did player number 3 play at?
CREATE TABLE table_10015132_11 (school_club_team VARCHAR, no VARCHAR)
SELECT COUNT(school_club_team) FROM table_10015132_11 WHERE no = "3"
What is the sum of Date of Official Foundation of Municipality, when Province is "Kermān", when 2006 us "167014", and when Rank is less than 46?
CREATE TABLE table_name_65 (date_of_official_foundation_of_municipality INTEGER, rank VARCHAR, province VARCHAR)
SELECT SUM(date_of_official_foundation_of_municipality) FROM table_name_65 WHERE province = "kermān" AND 2006 = 167014 AND rank < 46
What is the total of the roll with a Decile of 8, and an Area of hororata?
CREATE TABLE table_name_73 (roll INTEGER, decile VARCHAR, area VARCHAR)
SELECT SUM(roll) FROM table_name_73 WHERE decile = 8 AND area = "hororata"
What surface was played on when Piet Norval was a partner?
CREATE TABLE table_name_24 (surface VARCHAR, partner VARCHAR)
SELECT surface FROM table_name_24 WHERE partner = "piet norval"
what is the section where gordon lee ran
CREATE TABLE table_1342393_10 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1342393_10 WHERE incumbent = "Gordon Lee"
Which player is an offensive tackle for the New York Jets?
CREATE TABLE table_name_37 (player VARCHAR, position VARCHAR, afl_team VARCHAR)
SELECT player FROM table_name_37 WHERE position = "offensive tackle" AND afl_team = "new york jets"
How many weeks on top was OMC?
CREATE TABLE table_name_48 (weeks_on_top VARCHAR, artist VARCHAR)
SELECT weeks_on_top FROM table_name_48 WHERE artist = "omc"
What is the highest rated West Lancashire with a Pendle greater than 1 and a Rossendale more than 2?
CREATE TABLE table_name_15 (west_lancashire INTEGER, pendle VARCHAR, rossendale VARCHAR)
SELECT MAX(west_lancashire) FROM table_name_15 WHERE pendle > 1 AND rossendale > 2
What date is associated with the label Village Records?
CREATE TABLE table_name_88 (date VARCHAR, label VARCHAR)
SELECT date FROM table_name_88 WHERE label = "village records"
What is the name of the episode written by glen mazzara?
CREATE TABLE table_30030477_1 (title VARCHAR, written_by VARCHAR)
SELECT title FROM table_30030477_1 WHERE written_by = "Glen Mazzara"
What home/away game is on February 29, 2008?
CREATE TABLE table_name_19 (home_away VARCHAR, date VARCHAR)
SELECT home_away FROM table_name_19 WHERE date = "february 29, 2008"
how many people are there whose weight is higher than 85 for each gender?
CREATE TABLE people (sex VARCHAR, weight INTEGER)
SELECT COUNT(*), sex FROM people WHERE weight > 85 GROUP BY sex
How many players were in the team Boston Red Stockings in 2000?
CREATE TABLE salary (team_id VARCHAR, year VARCHAR); CREATE TABLE team (team_id_br VARCHAR, name VARCHAR)
SELECT COUNT(*) FROM salary AS T1 JOIN team AS T2 ON T1.team_id = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' AND T1.year = 2000
Loss of peavy (4–3) is what score?
CREATE TABLE table_name_5 (score VARCHAR, loss VARCHAR)
SELECT score FROM table_name_5 WHERE loss = "peavy (4–3)"
Which Position has Throws of r, and a DOB of 12 february 1983?
CREATE TABLE table_name_59 (position VARCHAR, throws VARCHAR, dob VARCHAR)
SELECT position FROM table_name_59 WHERE throws = "r" AND dob = "12 february 1983"
What was the largest attendance?
CREATE TABLE table_2015453_1 (attendance INTEGER)
SELECT MAX(attendance) FROM table_2015453_1
If the equation is 6 × 9² + 6 × 9 + 6, what is the 2nd throw?
CREATE TABLE table_17265535_7 (equation VARCHAR)
SELECT MAX(2 AS nd_throw) FROM table_17265535_7 WHERE equation = "6 × 9² + 6 × 9 + 6"
What is the greatest number of bills sponsored in any year?
CREATE TABLE table_18852984_2 (all_bills_sponsored INTEGER)
SELECT MAX(all_bills_sponsored) FROM table_18852984_2
In which event before 2001 did the athlete place 16th?
CREATE TABLE table_name_96 (event VARCHAR, year VARCHAR, result VARCHAR)
SELECT event FROM table_name_96 WHERE year < 2001 AND result = "16th"
What is Date, when Outcome is "Winner", and when Surface is "Grass"?
CREATE TABLE table_name_72 (date VARCHAR, outcome VARCHAR, surface VARCHAR)
SELECT date FROM table_name_72 WHERE outcome = "winner" AND surface = "grass"
What is the most common nationality of people?
CREATE TABLE people (Nationality VARCHAR)
SELECT Nationality FROM people GROUP BY Nationality ORDER BY COUNT(*) DESC LIMIT 1