answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT date FROM table_name_85 WHERE round > 9 | CREATE TABLE table_name_85 (date VARCHAR, round INTEGER) | Which date has a round more than 9? |
SELECT winning_driver FROM table_name_76 WHERE winning_team = "tpc team qi-meritus" AND round > 8 | CREATE TABLE table_name_76 (winning_driver VARCHAR, winning_team VARCHAR, round VARCHAR) | Who is the driver that one for the winning tpc team qi-meritus that has a round more than 8? |
SELECT time FROM table_name_81 WHERE record = "start" AND date = "12 december 2009" | CREATE TABLE table_name_81 (time VARCHAR, record VARCHAR, date VARCHAR) | What is the time of 12 December 2009 with record start? |
SELECT nation FROM table_name_70 WHERE athlete_s_ = "elizabeth yarnold" | CREATE TABLE table_name_70 (nation VARCHAR, athlete_s_ VARCHAR) | What is Elizabeth Yarnold's nation? |
SELECT location FROM table_name_59 WHERE unit = "jiufotang formation" | CREATE TABLE table_name_59 (location VARCHAR, unit VARCHAR) | What country is the Jiufotang Formation located in? |
SELECT authors FROM table_name_73 WHERE location = "mexico" | CREATE TABLE table_name_73 (authors VARCHAR, location VARCHAR) | Which author is located in Mexico? |
SELECT location FROM table_name_3 WHERE authors = "wang li duan cheng" | CREATE TABLE table_name_3 (location VARCHAR, authors VARCHAR) | Where is wang li duan cheng located? |
SELECT status FROM table_name_40 WHERE name = "cathayopterus" | CREATE TABLE table_name_40 (status VARCHAR, name VARCHAR) | What is the status of the pterosaur named Cathayopterus? |
SELECT years_in_orlando FROM table_name_74 WHERE school_club_team = "texas tech" | CREATE TABLE table_name_74 (years_in_orlando VARCHAR, school_club_team VARCHAR) | Which Years in Orlando has a School/Club Team of texas tech? |
SELECT nationality FROM table_name_57 WHERE player = "keith bogans" AND years_in_orlando = "2006–2009" | CREATE TABLE table_name_57 (nationality VARCHAR, player VARCHAR, years_in_orlando VARCHAR) | Which Nationality has a Player of keith bogans, and a Years in Orlando of 2006–2009? |
SELECT nationality FROM table_name_34 WHERE player = "pat burke" | CREATE TABLE table_name_34 (nationality VARCHAR, player VARCHAR) | What is Pat Burke's Nationality? |
SELECT school_club_team FROM table_name_36 WHERE player = "michael bradley" | CREATE TABLE table_name_36 (school_club_team VARCHAR, player VARCHAR) | Which School/Club Team has a Player of michael bradley? |
SELECT years_in_orlando FROM table_name_96 WHERE school_club_team = "kentucky" | CREATE TABLE table_name_96 (years_in_orlando VARCHAR, school_club_team VARCHAR) | Which Years in Orlando has a School/Club Team of kentucky? |
SELECT school_club_team FROM table_name_16 WHERE player = "jud buechler" | CREATE TABLE table_name_16 (school_club_team VARCHAR, player VARCHAR) | Which School/Club Team has a Player of jud buechler? |
SELECT pos FROM table_name_2 WHERE year < 1999 | CREATE TABLE table_name_2 (pos VARCHAR, year INTEGER) | What is the position for years under 1999? |
SELECT AVG(year) FROM table_name_46 WHERE team = "team oreca" | CREATE TABLE table_name_46 (year INTEGER, team VARCHAR) | What is the average year for Team Oreca? |
SELECT MIN(position) FROM table_name_50 WHERE against > 17 AND team = "juventus" AND drawn < 4 | CREATE TABLE table_name_50 (position INTEGER, drawn VARCHAR, against VARCHAR, team VARCHAR) | Which Position has an Against larger than 17, and a Team of juventus, and a Drawn smaller than 4? |
SELECT COUNT(lost) FROM table_name_63 WHERE against = 49 AND played < 20 | CREATE TABLE table_name_63 (lost VARCHAR, against VARCHAR, played VARCHAR) | Which Lost has an Against of 49 and a Played smaller than 20? |
SELECT championship FROM table_name_69 WHERE previous_champion_s_ = "defeated justin corino in tournament final" | CREATE TABLE table_name_69 (championship VARCHAR, previous_champion_s_ VARCHAR) | In which championship had a previous champion of "defeated Justin Corino in tournament final"? |
SELECT location FROM table_name_93 WHERE previous_champion_s_ = "mike webb and nick fahrenheit" | CREATE TABLE table_name_93 (location VARCHAR, previous_champion_s_ VARCHAR) | Which location had previous champions of Mike Webb and Nick Fahrenheit? |
SELECT previous_champion_s_ FROM table_name_40 WHERE date_won = "may 1, 2010" | CREATE TABLE table_name_40 (previous_champion_s_ VARCHAR, date_won VARCHAR) | Who were the previous champions from the event won on May 1, 2010? |
SELECT current_champion_s_ FROM table_name_19 WHERE location = "beverly, ma" AND previous_champion_s_ = "mike webb and nick fahrenheit" | CREATE TABLE table_name_19 (current_champion_s_ VARCHAR, location VARCHAR, previous_champion_s_ VARCHAR) | Who is the current champion for the event in Beverly, MA, with previous champions of Mike Webb and Nick Fahrenheit? |
SELECT current_champion_s_ FROM table_name_44 WHERE championship = "necw heavyweight champion" | CREATE TABLE table_name_44 (current_champion_s_ VARCHAR, championship VARCHAR) | Who is the current champion in the NECW Heavyweight Championship? |
SELECT location FROM table_name_65 WHERE championship = "iron 8 championship tournament" | CREATE TABLE table_name_65 (location VARCHAR, championship VARCHAR) | Which location held the Iron 8 Championship tournament? |
SELECT capacity FROM table_name_4 WHERE volts = "3500v" | CREATE TABLE table_name_4 (capacity VARCHAR, volts VARCHAR) | What is the capacity of 3500v volts? |
SELECT volts FROM table_name_44 WHERE energy_to_weight_ratio = "54 kj/kg to 2.0v" | CREATE TABLE table_name_44 (volts VARCHAR, energy_to_weight_ratio VARCHAR) | How many volts has an energy-to-weight ratio of 54 kj/kg to 2.0v? |
SELECT capacity FROM table_name_11 WHERE volts = "2.7v" AND power_to_weight_ratio = "5.44 w/kg c/1 (1.875a)" | CREATE TABLE table_name_11 (capacity VARCHAR, volts VARCHAR, power_to_weight_ratio VARCHAR) | What is the capacity with 2.7v volts and a power-to-weight ratio of 5.44 w/kg c/1 (1.875a)? |
SELECT season FROM table_name_24 WHERE pos = 13 AND head_coach = "protasov lyutyi talalayev balakhnin baidachny" | CREATE TABLE table_name_24 (season VARCHAR, pos VARCHAR, head_coach VARCHAR) | Which season led to a position of 13, and a head coach of Protasov Lyutyi Talalayev Balakhnin Baidachny? |
SELECT MAX(week) FROM table_name_77 WHERE attendance = "58,701" | CREATE TABLE table_name_77 (week INTEGER, attendance VARCHAR) | Which week had the highest attendance with 58,701? |
SELECT SUM(week) FROM table_name_50 WHERE opponent = "san diego chargers" | CREATE TABLE table_name_50 (week INTEGER, opponent VARCHAR) | What was the score of the game against the San Diego Chargers? |
SELECT date FROM table_name_90 WHERE week < 4 AND attendance = "44,851" | CREATE TABLE table_name_90 (date VARCHAR, week VARCHAR, attendance VARCHAR) | When was the attendance less than 44,851 during the first 4 weeks of the season? |
SELECT result FROM table_name_11 WHERE week = 13 | CREATE TABLE table_name_11 (result VARCHAR, week VARCHAR) | On week 13 what was the score of the game? |
SELECT SUM(week) FROM table_name_87 WHERE attendance = "58,025" | CREATE TABLE table_name_87 (week INTEGER, attendance VARCHAR) | What week had 58,025 in attendance? |
SELECT date FROM table_name_26 WHERE attendance = "58,025" | CREATE TABLE table_name_26 (date VARCHAR, attendance VARCHAR) | When was the game that had 58,025 people in attendance? |
SELECT MIN(drawn) FROM table_name_58 WHERE played < 11 AND points > 7 AND team = "mackenzie" | CREATE TABLE table_name_58 (drawn INTEGER, team VARCHAR, played VARCHAR, points VARCHAR) | What is the lowest number of Drawn games for Team Mackenzie where the Played is less and 11 and the Points are greater than 7? |
SELECT COUNT(points) FROM table_name_95 WHERE drawn < 2 AND team = "paulistano" AND against < 15 | CREATE TABLE table_name_95 (points VARCHAR, against VARCHAR, drawn VARCHAR, team VARCHAR) | What number of Points are shown for Team Paulistano where the Drawn is less than 2 and the Against is less than 15? |
SELECT MIN(lost) FROM table_name_71 WHERE played > 10 AND team = "ypiranga-sp" AND against > 50 | CREATE TABLE table_name_71 (lost INTEGER, against VARCHAR, played VARCHAR, team VARCHAR) | What is the Lowest lost for Team Ypiranga-SP where the games Played is more than 10 and the goals Against is greater than 50? |
SELECT MAX(played) FROM table_name_13 WHERE position < 2 AND drawn < 4 | CREATE TABLE table_name_13 (played INTEGER, position VARCHAR, drawn VARCHAR) | What is the highest number of Played games with a Position smaller than 2 and Drawn games less than 4? |
SELECT AVG(runner_up) FROM table_name_62 WHERE university = "national university" AND total_championships > 2 | CREATE TABLE table_name_62 (runner_up INTEGER, university VARCHAR, total_championships VARCHAR) | What is the average number of runner-up that National University, which has more than 2 total championships, has? |
SELECT progressive_ticket FROM table_name_28 WHERE democratic_ticket = "john t. norton" | CREATE TABLE table_name_28 (progressive_ticket VARCHAR, democratic_ticket VARCHAR) | Who was on the Progressive ticket when John T. Norton was on the Democratic ticket? |
SELECT socialist_ticket FROM table_name_92 WHERE democratic_ticket = "thomas j. kreuzer" | CREATE TABLE table_name_92 (socialist_ticket VARCHAR, democratic_ticket VARCHAR) | What name is under the Socialist ticket when Thomas J. Kreuzer was on the Democratic ticket? |
SELECT republican_ticket FROM table_name_49 WHERE progressive_ticket = "frank h. hiscock" | CREATE TABLE table_name_49 (republican_ticket VARCHAR, progressive_ticket VARCHAR) | Who ran under the Republican ticket when Frank H. Hiscock ran under the Progressive ticket? |
SELECT prohibition_ticket FROM table_name_14 WHERE progressive_ticket = "eugene m. travis" | CREATE TABLE table_name_14 (prohibition_ticket VARCHAR, progressive_ticket VARCHAR) | What name ran for the Prohibition ticket when the Progressive ticket was Eugene M. Travis? |
SELECT independence_league_ticket FROM table_name_93 WHERE prohibition_ticket = "coleridge a. hart" | CREATE TABLE table_name_93 (independence_league_ticket VARCHAR, prohibition_ticket VARCHAR) | When Coleridge A. Hart ran under the Prohibition ticket who ran under the Independence League ticket? |
SELECT progressive_ticket FROM table_name_63 WHERE republican_ticket = "frank m. williams" | CREATE TABLE table_name_63 (progressive_ticket VARCHAR, republican_ticket VARCHAR) | With the Republican ticket of Frank M. Williams who was the Progressive ticket? |
SELECT prohibition_ticket FROM table_name_91 WHERE office = "lieutenant governor" | CREATE TABLE table_name_91 (prohibition_ticket VARCHAR, office VARCHAR) | What kind of Prohibition ticket that has a Office of lieutenant governor? |
SELECT socialist_labor_ticket FROM table_name_78 WHERE office = "secretary of state" | CREATE TABLE table_name_78 (socialist_labor_ticket VARCHAR, office VARCHAR) | Which Socialist Labor ticket has a Office of secretary of state? |
SELECT republican_ticket FROM table_name_27 WHERE prohibition_ticket = "stephen mead wing" | CREATE TABLE table_name_27 (republican_ticket VARCHAR, prohibition_ticket VARCHAR) | What kind of Republican ticket has a Prohibition ticket of stephen mead wing? |
SELECT democratic_ticket FROM table_name_14 WHERE office = "comptroller" | CREATE TABLE table_name_14 (democratic_ticket VARCHAR, office VARCHAR) | What is the kind of Democratic ticket has a Office of comptroller? |
SELECT prohibition_ticket FROM table_name_34 WHERE socialist_labor_ticket = "joseph smith" | CREATE TABLE table_name_34 (prohibition_ticket VARCHAR, socialist_labor_ticket VARCHAR) | Which Prohibition ticket has a Socialist Labor ticket of joseph smith? |
SELECT MIN(grid) FROM table_name_46 WHERE rider = "colin edwards" | CREATE TABLE table_name_46 (grid INTEGER, rider VARCHAR) | What is the lowest grid number when Colin Edwards is the rider? |
SELECT time_retired FROM table_name_67 WHERE laps < 22 AND manufacturer = "honda" | CREATE TABLE table_name_67 (time_retired VARCHAR, laps VARCHAR, manufacturer VARCHAR) | What is the time/retired when there are less than 22 laps and honda is the manufacturer? |
SELECT AVG(laps) FROM table_name_48 WHERE grid = 9 | CREATE TABLE table_name_48 (laps INTEGER, grid VARCHAR) | What is the average number of laps when the grid number is 9? |
SELECT MAX(laps) FROM table_name_27 WHERE manufacturer = "honda" AND grid = 12 | CREATE TABLE table_name_27 (laps INTEGER, manufacturer VARCHAR, grid VARCHAR) | What is the highest number of laps when honda is the manufacturer and the grid number is 12? |
SELECT rider FROM table_name_28 WHERE grid = 3 | CREATE TABLE table_name_28 (rider VARCHAR, grid VARCHAR) | Who is the rider when the grid number is 3? |
SELECT COUNT(laps) FROM table_name_93 WHERE time_retired = "+44.284" | CREATE TABLE table_name_93 (laps VARCHAR, time_retired VARCHAR) | How many laps were driven when the time/retired is +44.284? |
SELECT value FROM table_name_52 WHERE composition = "cupronickel" AND weight = "10.5 g" | CREATE TABLE table_name_52 (value VARCHAR, composition VARCHAR, weight VARCHAR) | What is the value of the coin weighing 10.5 g and made of cupronickel? |
SELECT composition FROM table_name_67 WHERE €_equiv = "0.30" | CREATE TABLE table_name_67 (composition VARCHAR, €_equiv VARCHAR) | What is the coin with a € equivalency of 0.30 made of? |
SELECT composition FROM table_name_33 WHERE weight = "3 g" | CREATE TABLE table_name_33 (composition VARCHAR, weight VARCHAR) | What is the coin that weighs 3 g made of? |
SELECT diameter FROM table_name_80 WHERE €_equiv = "0.60" | CREATE TABLE table_name_80 (diameter VARCHAR, €_equiv VARCHAR) | What is the diameter of the coin with a € equivalence of 0.60? |
SELECT weight FROM table_name_52 WHERE diameter = "14mm" | CREATE TABLE table_name_52 (weight VARCHAR, diameter VARCHAR) | How much does the coin with a 14mm diameter weigh? |
SELECT coverage FROM table_name_5 WHERE frequency = "99.5mhz" | CREATE TABLE table_name_5 (coverage VARCHAR, frequency VARCHAR) | What is the coverage for the 99.5mhz frequency? |
SELECT power__kw_ FROM table_name_63 WHERE coverage = "general santos" | CREATE TABLE table_name_63 (power__kw_ VARCHAR, coverage VARCHAR) | What is the power in kW corresponding to the station that covers General Santos? |
SELECT branding FROM table_name_45 WHERE frequency = "93.1mhz" AND coverage = "zamboanga" | CREATE TABLE table_name_45 (branding VARCHAR, frequency VARCHAR, coverage VARCHAR) | What is the branding for the station with a frequency of 93.1mhz and a coverage of Zamboanga? |
SELECT frequency FROM table_name_25 WHERE power__kw_ = "10kw" AND callsign = "dxez" | CREATE TABLE table_name_25 (frequency VARCHAR, power__kw_ VARCHAR, callsign VARCHAR) | What is the frequency for the 10kw station with DXEZ as its callsign? |
SELECT frequency FROM table_name_53 WHERE callsign = "dybt" | CREATE TABLE table_name_53 (frequency VARCHAR, callsign VARCHAR) | What is the frequency for the station with DYBT as its callsign? |
SELECT branding FROM table_name_23 WHERE frequency = "93.1mhz" AND callsign = "dwrx" | CREATE TABLE table_name_23 (branding VARCHAR, frequency VARCHAR, callsign VARCHAR) | What is the branding for the station with a frequency of 93.1mhz and a callsign of DWRX? |
SELECT MIN(total_passengers) FROM table_name_75 WHERE location = "salvador" AND rank > 5 | CREATE TABLE table_name_75 (total_passengers INTEGER, location VARCHAR, rank VARCHAR) | Can you tell me the lowest Total Passengers than has the Location of salvador, and the Rank larger than 5? |
SELECT annual_change FROM table_name_48 WHERE location = "manaus" | CREATE TABLE table_name_48 (annual_change VARCHAR, location VARCHAR) | Can you tell me the Annual change that has the Location of manaus? |
SELECT AVG(cuts_made) FROM table_name_50 WHERE tournaments_played > 2 AND year = 2011 | CREATE TABLE table_name_50 (cuts_made INTEGER, tournaments_played VARCHAR, year VARCHAR) | What is the average number of cuts made when there were more than 2 tournaments played in 2011? |
SELECT COUNT(wins) FROM table_name_52 WHERE cuts_made = 10 AND scoring_average < 74.09 | CREATE TABLE table_name_52 (wins VARCHAR, cuts_made VARCHAR, scoring_average VARCHAR) | What is the total number of wins with 10 cuts made and a score average under 74.09? |
SELECT shot_pct FROM table_name_96 WHERE skip = "madeleine dupont" | CREATE TABLE table_name_96 (shot_pct VARCHAR, skip VARCHAR) | What is Madeleine Dupont's shot pct.? |
SELECT score FROM table_name_41 WHERE high_assists = "rafer alston (8)" | CREATE TABLE table_name_41 (score VARCHAR, high_assists VARCHAR) | Can you tell me the Score that has the High assists of rafer alston (8)? |
SELECT high_points FROM table_name_17 WHERE high_rebounds = "rafer alston (9)" | CREATE TABLE table_name_17 (high_points VARCHAR, high_rebounds VARCHAR) | Can you tell me the High points that has the High rebounds of rafer alston (9)? |
SELECT score FROM table_name_22 WHERE date = "april 8" | CREATE TABLE table_name_22 (score VARCHAR, date VARCHAR) | Can you tell me the Score that has the Date of april 8? |
SELECT MAX(attendance) FROM table_name_87 WHERE game_site = "arrowhead stadium" | CREATE TABLE table_name_87 (attendance INTEGER, game_site VARCHAR) | What's the highest attendance for a game the Texan's played at Arrowhead Stadium? |
SELECT opponent FROM table_name_37 WHERE week = "4" | CREATE TABLE table_name_37 (opponent VARCHAR, week VARCHAR) | Who did the Texan's play on Week 4? |
SELECT date FROM table_name_63 WHERE week = "hof" | CREATE TABLE table_name_63 (date VARCHAR, week VARCHAR) | What's the date for HOF week? |
SELECT total FROM table_name_77 WHERE fa_cup = "1 0 (3)" | CREATE TABLE table_name_77 (total VARCHAR, fa_cup VARCHAR) | What is Total, when FA Cup is 1 0 (3)? |
SELECT MIN(delegates) FROM table_name_75 WHERE candidate = "john mccain" AND counties < 45 | CREATE TABLE table_name_75 (delegates INTEGER, candidate VARCHAR, counties VARCHAR) | What is the lowest number of delegates when John McCain was the candidate with less than 45 candidates? |
SELECT MAX(counties) FROM table_name_62 WHERE candidate = "mitt romney" AND delegates < 0 | CREATE TABLE table_name_62 (counties INTEGER, candidate VARCHAR, delegates VARCHAR) | What is the highest Counties when Mitt Romney was the candidate with less than 0 delegates? |
SELECT COUNT(votes) FROM table_name_28 WHERE candidate = "ron paul" AND counties < 0 | CREATE TABLE table_name_28 (votes VARCHAR, candidate VARCHAR, counties VARCHAR) | What is the number of votes when Ron Paul is the candidate with less than 0 counties? |
SELECT SUM(total) FROM table_name_48 WHERE UEfa_cup = 4 | CREATE TABLE table_name_48 (total INTEGER, UEfa_cup VARCHAR) | What is the sum of totals associated with a UEFA Cup score of 4? |
SELECT SUM(total) FROM table_name_3 WHERE fa_cup < 0 | CREATE TABLE table_name_3 (total INTEGER, fa_cup INTEGER) | What is the sum of totals for FA Cup values of 0? |
SELECT hometown__previous_school_ FROM table_name_72 WHERE name = "tim williams" | CREATE TABLE table_name_72 (hometown__previous_school_ VARCHAR, name VARCHAR) | What is the Hometown of Tim Williams? |
SELECT player FROM table_name_83 WHERE rating > 2746 AND prev < 4 AND chng = "+4" | CREATE TABLE table_name_83 (player VARCHAR, chng VARCHAR, rating VARCHAR, prev VARCHAR) | What player has a rating greater than 2746, with a prev less than 4, and +4 as the chng? |
SELECT chng FROM table_name_55 WHERE rank > 6 AND prev = 12 | CREATE TABLE table_name_55 (chng VARCHAR, rank VARCHAR, prev VARCHAR) | What chng has a rank greater than 6, with 12 as a prev? |
SELECT MAX(prev) FROM table_name_4 WHERE rank = 9 AND rating < 2746 | CREATE TABLE table_name_4 (prev INTEGER, rank VARCHAR, rating VARCHAR) | What is the highest prev that has 9 as the rank, with a rating less than 2746? |
SELECT SUM(block) FROM table_name_16 WHERE weight > 82 AND height < 199 | CREATE TABLE table_name_16 (block INTEGER, weight VARCHAR, height VARCHAR) | How many blocks have a weight greater than 82, and a height less than 199? |
SELECT MIN(block) FROM table_name_20 WHERE spike = 328 AND height < 186 | CREATE TABLE table_name_20 (block INTEGER, spike VARCHAR, height VARCHAR) | What is the lowest block that has 328 as the spike, and a height less than 186? |
SELECT MIN(block) FROM table_name_5 WHERE height < 202 AND date_of_birth = "19.06.1980" AND weight > 76 | CREATE TABLE table_name_5 (block INTEGER, weight VARCHAR, height VARCHAR, date_of_birth VARCHAR) | What is the lowest block that has a height less than 202, 19.06.1980 as the date of birth, and a weight greater than 76? |
SELECT MAX(block) FROM table_name_76 WHERE date_of_birth = "15.09.1981" AND height > 202 | CREATE TABLE table_name_76 (block INTEGER, date_of_birth VARCHAR, height VARCHAR) | What is the highest block that has 15.09.1981 as the date, and a height greater than 202? |
SELECT city FROM table_name_96 WHERE stadium = "estadio san cristóbal" | CREATE TABLE table_name_96 (city VARCHAR, stadium VARCHAR) | Which City has a Stadium of estadio san cristóbal? |
SELECT 2009 AS _season FROM table_name_17 WHERE group = "group b" AND stadium = "cancha del mystic" AND club = "el tecal" | CREATE TABLE table_name_17 (club VARCHAR, group VARCHAR, stadium VARCHAR) | When in 2009 season has a Group of group b, and cancha del mystic with a Club of el tecal? |
SELECT club FROM table_name_93 WHERE city = "colón" | CREATE TABLE table_name_93 (club VARCHAR, city VARCHAR) | WHich Club has a City of colón? |
SELECT 2009 AS _season FROM table_name_21 WHERE city = "panama city" AND group = "group b" | CREATE TABLE table_name_21 (city VARCHAR, group VARCHAR) | WHat kind of 2009 season has a City of panama city, and a Group of group b? |
SELECT city FROM table_name_38 WHERE club = "suntracs f.c." | CREATE TABLE table_name_38 (city VARCHAR, club VARCHAR) | Which City has a Club of suntracs f.c.? |
SELECT MAX(matches) FROM table_name_5 WHERE prize_money = "£5,000" | CREATE TABLE table_name_5 (matches INTEGER, prize_money VARCHAR) | What is the highest Matches, when Prize Money is £5,000? |
SELECT date FROM table_name_55 WHERE matches < 32 AND round = "fifth round proper" | CREATE TABLE table_name_55 (date VARCHAR, matches VARCHAR, round VARCHAR) | What is Date, when Matches is less than 32, and when Round is Fifth Round Proper? |
SELECT AVG(matches) FROM table_name_81 WHERE round = "third qualifying round" | CREATE TABLE table_name_81 (matches INTEGER, round VARCHAR) | What is the average Matches, when Round is Third Qualifying Round? |
Subsets and Splits