question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 |
|---|---|---|
What company constructed the vehicle when the driver shows as not held? | CREATE TABLE table_name_61 (constructor VARCHAR, driver VARCHAR) | SELECT constructor FROM table_name_61 WHERE driver = "not held" |
What's the largest pick number for corrie d'alessio with a rd number over 6? | CREATE TABLE table_name_34 (pick__number INTEGER, player VARCHAR, rd__number VARCHAR) | SELECT MAX(pick__number) FROM table_name_34 WHERE player = "corrie d'alessio" AND rd__number > 6 |
What is the grid of team dreyer & reinbold racing, which has 26 points? | CREATE TABLE table_name_14 (grid VARCHAR, team VARCHAR, points VARCHAR) | SELECT grid FROM table_name_14 WHERE team = "dreyer & reinbold racing" AND points = "26" |
Show the names of students who have a grade higher than 5 and have at least 2 friends. | CREATE TABLE Friend (student_id VARCHAR); CREATE TABLE Highschooler (name VARCHAR, id VARCHAR, grade INTEGER) | SELECT T2.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id WHERE T2.grade > 5 GROUP BY T1.student_id HAVING COUNT(*) >= 2 |
What year had the category of best international newcomer? | CREATE TABLE table_name_53 (year VARCHAR, category VARCHAR) | SELECT COUNT(year) FROM table_name_53 WHERE category = "best international newcomer" |
Who was the visiting team on October 15, 2006? | CREATE TABLE table_name_59 (visiting_team VARCHAR, date VARCHAR) | SELECT visiting_team FROM table_name_59 WHERE date = "october 15, 2006" |
Tell me the league for year of 1915/16 | CREATE TABLE table_name_3 (league VARCHAR, year VARCHAR) | SELECT league FROM table_name_3 WHERE year = "1915/16" |
Name the Runs has a Venue of bellerive oval , hobart, and a Season of 2004/05, and a Rank of 5? | CREATE TABLE table_name_26 (runs VARCHAR, rank VARCHAR, venue VARCHAR, season VARCHAR) | SELECT runs FROM table_name_26 WHERE venue = "bellerive oval , hobart" AND season = "2004/05" AND rank = "5" |
Find the id and name of the staff who has been assigned for the shortest period. | CREATE TABLE Staff_Department_Assignments (staff_id VARCHAR); CREATE TABLE staff (staff_id VARCHAR, staff_name VARCHAR) | SELECT T1.staff_id, T1.staff_name FROM staff AS T1 JOIN Staff_Department_Assignments AS T2 ON T1.staff_id = T2.staff_id ORDER BY date_assigned_to - date_assigned_from LIMIT 1 |
For player is adam wiesel mention all the college/junior/club team | CREATE TABLE table_2781227_4 (college_junior_club_team VARCHAR, player VARCHAR) | SELECT college_junior_club_team FROM table_2781227_4 WHERE player = "Adam Wiesel" |
what is the time when laps is less than 21, manufacturer is aprilia, grid is less than 17 and the rider is thomas luthi? | CREATE TABLE table_name_20 (time VARCHAR, rider VARCHAR, grid VARCHAR, laps VARCHAR, manufacturer VARCHAR) | SELECT time FROM table_name_20 WHERE laps < 21 AND manufacturer = "aprilia" AND grid < 17 AND rider = "thomas luthi" |
What is NiCd, when Type is "Capacity under 500mA constant Drain"? | CREATE TABLE table_name_23 (nicd VARCHAR, type VARCHAR) | SELECT nicd FROM table_name_23 WHERE type = "capacity under 500ma constant drain" |
Name the 2011 gdp for pakistan | CREATE TABLE table_2248784_3 (country VARCHAR) | SELECT 2011 AS _gdp__ppp__billions_of_usd FROM table_2248784_3 WHERE country = "Pakistan" |
What college has a round greater than 1, with dylan mcfarland as the player? | CREATE TABLE table_name_95 (college VARCHAR, round VARCHAR, player VARCHAR) | SELECT college FROM table_name_95 WHERE round > 1 AND player = "dylan mcfarland" |
what tournament was on a hard surface and saw jacob adaktusson as the opponent? | CREATE TABLE table_name_78 (tournament VARCHAR, surface VARCHAR, opponent VARCHAR) | SELECT tournament FROM table_name_78 WHERE surface = "hard" AND opponent = "jacob adaktusson" |
What is the to par that has ernie els as the player? | CREATE TABLE table_name_43 (to_par VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_43 WHERE player = "ernie els" |
What was the game site against the Dallas Texans? | CREATE TABLE table_17765888_1 (game_site VARCHAR, opponent VARCHAR) | SELECT game_site FROM table_17765888_1 WHERE opponent = "Dallas Texans" |
Can you tell me the sum of Area km 2 that has the Official Name of glenelg? | CREATE TABLE table_name_75 (area_km_2 INTEGER, official_name VARCHAR) | SELECT SUM(area_km_2) FROM table_name_75 WHERE official_name = "glenelg" |
What is the largest number for tropical Lows for the 1990β91 season with more than 10 tropical cyclones? | CREATE TABLE table_name_13 (tropical_lows INTEGER, season VARCHAR, tropical_cyclones VARCHAR) | SELECT MAX(tropical_lows) FROM table_name_13 WHERE season = "1990β91" AND tropical_cyclones > 10 |
What is the status of the ENG Country with the name of Farquharson? | CREATE TABLE table_name_79 (status VARCHAR, country VARCHAR, name VARCHAR) | SELECT status FROM table_name_79 WHERE country = "eng" AND name = "farquharson" |
What is the average bronze when the total is 2, silver is less than 1 and gold is more than 1? | CREATE TABLE table_name_85 (bronze INTEGER, gold VARCHAR, total VARCHAR, silver VARCHAR) | SELECT AVG(bronze) FROM table_name_85 WHERE total = 2 AND silver < 1 AND gold > 1 |
What is the series number for the Golden Frog? | CREATE TABLE table_2161859_1 (series__number VARCHAR, title VARCHAR) | SELECT series__number FROM table_2161859_1 WHERE title = "The Golden Frog" |
What years did the player ranked less than 8 and had 447 matches play? | CREATE TABLE table_name_83 (years VARCHAR, rank VARCHAR, matches VARCHAR) | SELECT years FROM table_name_83 WHERE rank < 8 AND matches = 447 |
Find the first name of the band mate that has performed in most songs. | CREATE TABLE Songs (SongId VARCHAR); CREATE TABLE Band (firstname VARCHAR, id VARCHAR); CREATE TABLE Performance (bandmate VARCHAR) | SELECT t2.firstname FROM Performance AS t1 JOIN Band AS t2 ON t1.bandmate = t2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId GROUP BY firstname ORDER BY COUNT(*) DESC LIMIT 1 |
Who was the opponent in the final of the Senegal f2 tournament> | CREATE TABLE table_name_8 (opponent_in_the_final VARCHAR, tournament VARCHAR) | SELECT opponent_in_the_final FROM table_name_8 WHERE tournament = "senegal f2" |
What is the topic of the episode that runs 6:07? | CREATE TABLE table_name_7 (historical_references VARCHAR, run_time VARCHAR) | SELECT historical_references FROM table_name_7 WHERE run_time = "6:07" |
How many wins did the player have in the Formula BMW World Final? | CREATE TABLE table_17246160_1 (wins VARCHAR, series VARCHAR) | SELECT wins FROM table_17246160_1 WHERE series = "Formula BMW World Final" |
List the name of all rooms sorted by their prices. | CREATE TABLE Rooms (roomName VARCHAR, basePrice VARCHAR) | SELECT roomName FROM Rooms ORDER BY basePrice |
What is the episode number for series 17? | CREATE TABLE table_20205538_4 (episode__number VARCHAR, series__number VARCHAR) | SELECT episode__number FROM table_20205538_4 WHERE series__number = 17 |
What is the highest number of ends won of 47 Ends Lost and a Shot % less than 73? | CREATE TABLE table_name_4 (ends_won INTEGER, ends_lost VARCHAR, shot__percentage VARCHAR) | SELECT MAX(ends_won) FROM table_name_4 WHERE ends_lost = 47 AND shot__percentage < 73 |
What nationality is Bill Robinzine? | CREATE TABLE table_name_69 (nationality VARCHAR, player VARCHAR) | SELECT nationality FROM table_name_69 WHERE player = "bill robinzine" |
Name the barrel twist for colt model mt6400 | CREATE TABLE table_12834315_4 (barrel_twist VARCHAR, colt_model_no VARCHAR) | SELECT barrel_twist FROM table_12834315_4 WHERE colt_model_no = "MT6400" |
What was the lowest wins in a season less than 1915 with a 7th finish and 0.429 win %? | CREATE TABLE table_name_74 (wins INTEGER, reds_season VARCHAR, finish VARCHAR, win_percentage VARCHAR) | SELECT MIN(wins) FROM table_name_74 WHERE finish = "7th" AND win_percentage > 0.429 AND reds_season < 1915 |
Where did Audette Racing win? | CREATE TABLE table_25773116_2 (location VARCHAR, winning_team VARCHAR) | SELECT location FROM table_25773116_2 WHERE winning_team = "Audette Racing" |
How many people were at the game where the home team was South Melbourne? | CREATE TABLE table_name_16 (crowd VARCHAR, home_team VARCHAR) | SELECT crowd FROM table_name_16 WHERE home_team = "south melbourne" |
Which Total has a Hereditary peer of β, and a Lords spiritual of β, and a Life peers of 2, and an Affiliation of plaid cymru? | CREATE TABLE table_name_17 (total VARCHAR, affiliation VARCHAR, life_peers VARCHAR, hereditary_peers VARCHAR, lords_spiritual VARCHAR) | SELECT COUNT(total) FROM table_name_17 WHERE hereditary_peers = "β" AND lords_spiritual = "β" AND life_peers = "2" AND affiliation = "plaid cymru" |
What is the short name having video of 720p and programming of Main KSTC-TV programming? | CREATE TABLE table_name_19 (psip_short_name VARCHAR, video VARCHAR, programming VARCHAR) | SELECT psip_short_name FROM table_name_19 WHERE video = "720p" AND programming = "main kstc-tv programming" |
Which team did they play at Rich Stadium? | CREATE TABLE table_14423274_3 (opponent VARCHAR, game_site VARCHAR) | SELECT opponent FROM table_14423274_3 WHERE game_site = "Rich Stadium" |
Which highest number of Seats has votes of 244,867? | CREATE TABLE table_name_83 (seats INTEGER, votes VARCHAR) | SELECT MAX(seats) FROM table_name_83 WHERE votes = 244 OFFSET 867 |
what is the television order of the episode directed by ben jones, written by j. m. dematteis and originally aired on february6,2009 | CREATE TABLE table_20360535_2 (television_order VARCHAR, original_air_date VARCHAR, directed_by VARCHAR, written_by VARCHAR) | SELECT television_order FROM table_20360535_2 WHERE directed_by = "Ben Jones" AND written_by = "J. M. DeMatteis" AND original_air_date = "February6,2009" |
What is the carrier of the most expensive phone? | CREATE TABLE phone (Carrier VARCHAR, Price VARCHAR) | SELECT Carrier FROM phone ORDER BY Price DESC LIMIT 1 |
Name the english for j'avais entendu | CREATE TABLE table_1841901_1 (english VARCHAR, french VARCHAR) | SELECT english FROM table_1841901_1 WHERE french = "j'avais entendu" |
When 87 mpg-e (39kw-hrs/100mi) is the epa rated combined fuel economy how many operating modes are there? | CREATE TABLE table_24620684_2 (operating_mode VARCHAR, epa_rated_combined_fuel_economy VARCHAR) | SELECT COUNT(operating_mode) FROM table_24620684_2 WHERE epa_rated_combined_fuel_economy = "87 mpg-e (39kW-hrs/100mi)" |
What is the Nationalist share of the poll for the response in which Undecided/No Answer received 29.2%? | CREATE TABLE table_name_8 (nationalist VARCHAR, undecided__no_answer VARCHAR) | SELECT nationalist FROM table_name_8 WHERE undecided__no_answer = "29.2%" |
What country has 302 as the total? | CREATE TABLE table_name_29 (country VARCHAR, total VARCHAR) | SELECT country FROM table_name_29 WHERE total = 302 |
Show the customer id and number of accounts with most accounts. | CREATE TABLE Accounts (customer_id VARCHAR) | SELECT customer_id, COUNT(*) FROM Accounts GROUP BY customer_id ORDER BY COUNT(*) DESC LIMIT 1 |
What is the average earnings of poker players? | CREATE TABLE poker_player (Earnings INTEGER) | SELECT AVG(Earnings) FROM poker_player |
What date did De Vries start? | CREATE TABLE table_12608427_8 (started VARCHAR, name VARCHAR) | SELECT started FROM table_12608427_8 WHERE name = "de Vries" |
What is the Tie no for the game with the away team Whyteleafe? | CREATE TABLE table_name_99 (tie_no VARCHAR, away_team VARCHAR) | SELECT tie_no FROM table_name_99 WHERE away_team = "whyteleafe" |
Which competition was held on September 10, 2005? | CREATE TABLE table_name_58 (competition VARCHAR, date VARCHAR) | SELECT competition FROM table_name_58 WHERE date = "september 10, 2005" |
What was the PAC-10 record of the game played on April 20? | CREATE TABLE table_27862483_3 (pac_10_record VARCHAR, date VARCHAR) | SELECT pac_10_record FROM table_27862483_3 WHERE date = "April 20" |
What position was less than 421 overall played by Matt Clark? | CREATE TABLE table_name_28 (position VARCHAR, overall VARCHAR, player VARCHAR) | SELECT position FROM table_name_28 WHERE overall < 421 AND player = "matt clark" |
When the conference is west coast and the number of bids are at 2, what's the percentage of games won? | CREATE TABLE table_name_51 (win__percentage VARCHAR, _number_of_bids VARCHAR, conference VARCHAR) | SELECT win__percentage FROM table_name_51 WHERE _number_of_bids = 2 AND conference = "west coast" |
How many Touchdowns have Extra points larger than 0, and Points of 48? | CREATE TABLE table_name_84 (touchdowns VARCHAR, extra_points VARCHAR, points VARCHAR) | SELECT COUNT(touchdowns) FROM table_name_84 WHERE extra_points > 0 AND points = 48 |
What is the number of jurisdiction for 57.3 percent? | CREATE TABLE table_120778_1 (jurisdiction VARCHAR, percent_for VARCHAR) | SELECT COUNT(jurisdiction) FROM table_120778_1 WHERE percent_for = "57.3" |
What year was the 4-6-0 Wheel model train from 1908 withdrawn? | CREATE TABLE table_name_61 (year_s__withdrawn VARCHAR, wheel_arrangement VARCHAR, year_made VARCHAR) | SELECT year_s__withdrawn FROM table_name_61 WHERE wheel_arrangement = "4-6-0" AND year_made = "1908" |
How many top 10's did Pearson have the year he was in 8th position? | CREATE TABLE table_2626564_2 (top_10 INTEGER, position VARCHAR) | SELECT MIN(top_10) FROM table_2626564_2 WHERE position = "8th" |
What's listed for the Wamalwa that has a Turnout % of 55.9%? | CREATE TABLE table_name_32 (wamalwa VARCHAR, turnout__percentage VARCHAR) | SELECT wamalwa FROM table_name_32 WHERE turnout__percentage = "55.9%" |
What is the Median household income associated with a median family income of $46,616? | CREATE TABLE table_name_56 (median_household_income VARCHAR, median_family_income VARCHAR) | SELECT median_household_income FROM table_name_56 WHERE median_family_income = "$46,616" |
What is the City of license with a 88.7 fm frequency | CREATE TABLE table_name_51 (city_of_license VARCHAR, frequency VARCHAR) | SELECT city_of_license FROM table_name_51 WHERE frequency = "88.7 fm" |
What is the lengtho f track 16? | CREATE TABLE table_name_88 (length VARCHAR, track VARCHAR) | SELECT length FROM table_name_88 WHERE track = "16" |
What Player's To par is β6? | CREATE TABLE table_name_54 (player VARCHAR, to_par VARCHAR) | SELECT player FROM table_name_54 WHERE to_par = "β6" |
Wha is the average number of bronze of hungary, which has less than 1 silver? | CREATE TABLE table_name_51 (bronze INTEGER, nation VARCHAR, silver VARCHAR) | SELECT AVG(bronze) FROM table_name_51 WHERE nation = "hungary" AND silver < 1 |
Name the mens doubles for dimitrij ovtcharov | CREATE TABLE table_28138035_4 (mens_doubles VARCHAR, mens_singles VARCHAR) | SELECT mens_doubles FROM table_28138035_4 WHERE mens_singles = "Dimitrij Ovtcharov" |
What method was used in the match that went to round 1, and had a 6-3-1 record? | CREATE TABLE table_name_13 (method VARCHAR, round VARCHAR, record VARCHAR) | SELECT method FROM table_name_13 WHERE round = 1 AND record = "6-3-1" |
What is Money ( $ ), when Player is "Morgan Pressel"? | CREATE TABLE table_name_4 (money___$__ VARCHAR, player VARCHAR) | SELECT money___$__ FROM table_name_4 WHERE player = "morgan pressel" |
Name the high rebounds for march 15 | CREATE TABLE table_17432028_1 (high_rebounds VARCHAR, date VARCHAR) | SELECT high_rebounds FROM table_17432028_1 WHERE date = "March 15" |
Name the number of stations for 15 minutes travel time | CREATE TABLE table_2385460_1 (stations VARCHAR, travel_time VARCHAR) | SELECT COUNT(stations) FROM table_2385460_1 WHERE travel_time = "15 minutes" |
What is Result, when Opponent is "Rochester Royals"? | CREATE TABLE table_name_19 (result VARCHAR, opponent VARCHAR) | SELECT result FROM table_name_19 WHERE opponent = "rochester royals" |
Which score was for the Spurs as visitors with record of 35β16? | CREATE TABLE table_name_60 (score VARCHAR, visitor VARCHAR, record VARCHAR) | SELECT score FROM table_name_60 WHERE visitor = "spurs" AND record = "35β16" |
Which Attendance has more than 90 points? | CREATE TABLE table_name_60 (attendance VARCHAR, points INTEGER) | SELECT attendance FROM table_name_60 WHERE points > 90 |
What was the played with club tumble rfc? | CREATE TABLE table_12828723_5 (played VARCHAR, club VARCHAR) | SELECT played FROM table_12828723_5 WHERE club = "Tumble RFC" |
What is the Lead when the Second was marc kennedy, in the 2012β13 season? | CREATE TABLE table_name_66 (lead VARCHAR, second VARCHAR, season VARCHAR) | SELECT lead FROM table_name_66 WHERE second = "marc kennedy" AND season = "2012β13" |
What First runner-up has a Miss Maja Pilipinas of nanette prodigalidad? | CREATE TABLE table_name_40 (first_runner_up VARCHAR, miss_maja_pilipinas VARCHAR) | SELECT first_runner_up FROM table_name_40 WHERE miss_maja_pilipinas = "nanette prodigalidad" |
Who is the executive director of the Lemery, Batangas extension? | CREATE TABLE table_name_84 (executive_director VARCHAR, type VARCHAR, location VARCHAR) | SELECT executive_director FROM table_name_84 WHERE type = "extension" AND location = "lemery, batangas" |
What is the highest rank for PSV - FC Barcelona? | CREATE TABLE table_name_64 (rank INTEGER, team VARCHAR) | SELECT MAX(rank) FROM table_name_64 WHERE team = "psv - fc barcelona" |
What was the 1999 Tournament at the US Open? | CREATE TABLE table_name_47 (tournament VARCHAR) | SELECT 1999 FROM table_name_47 WHERE tournament = "us open" |
What is the operating voltage of part number amql64dam22gg? | CREATE TABLE table_27277284_27 (voltage VARCHAR, order_part_number VARCHAR) | SELECT voltage FROM table_27277284_27 WHERE order_part_number = "AMQL64DAM22GG" |
What Status has a Date of 18/03/1989? | CREATE TABLE table_name_49 (status VARCHAR, date VARCHAR) | SELECT status FROM table_name_49 WHERE date = "18/03/1989" |
Which Championship has a League Cup larger than 0, and a FA Cup larger than 0? | CREATE TABLE table_name_68 (championship INTEGER, league_cup VARCHAR, fa_cup VARCHAR) | SELECT MIN(championship) FROM table_name_68 WHERE league_cup > 0 AND fa_cup > 0 |
Which average games played number has the Ottawa Hockey Club as a team and a number of wins bigger than 5? | CREATE TABLE table_name_57 (games_played INTEGER, team VARCHAR, wins VARCHAR) | SELECT AVG(games_played) FROM table_name_57 WHERE team = "ottawa hockey club" AND wins > 5 |
What is the mobile phone number of the student named Timmothy Ward ? | CREATE TABLE students (cell_mobile_number VARCHAR, first_name VARCHAR, last_name VARCHAR) | SELECT cell_mobile_number FROM students WHERE first_name = 'timmothy' AND last_name = 'ward' |
Who was Kraco Twin 125 (R2)'s Winning Driver? | CREATE TABLE table_name_6 (winning_driver VARCHAR, name VARCHAR) | SELECT winning_driver FROM table_name_6 WHERE name = "kraco twin 125 (r2)" |
Which position does bert coan play? | CREATE TABLE table_name_19 (position VARCHAR, player VARCHAR) | SELECT position FROM table_name_19 WHERE player = "bert coan" |
How many aircrafts have distance between 1000 and 5000? | CREATE TABLE Aircraft (distance INTEGER) | SELECT COUNT(*) FROM Aircraft WHERE distance BETWEEN 1000 AND 5000 |
What is the away team with a 5 tie no? | CREATE TABLE table_name_66 (away_team VARCHAR, tie_no VARCHAR) | SELECT away_team FROM table_name_66 WHERE tie_no = "5" |
What is the rank of Point Hyllie? | CREATE TABLE table_name_52 (rank VARCHAR, name VARCHAR) | SELECT rank FROM table_name_52 WHERE name = "point hyllie" |
what is the part number(s) when l2 cache is 512 kb, release date is june 2001 and sSpec number is sl5lv, sl5pu, sl6bw, sl6jm? | CREATE TABLE table_name_71 (part_number_s_ VARCHAR, sspec_number VARCHAR, l2_cache VARCHAR, release_date VARCHAR) | SELECT part_number_s_ FROM table_name_71 WHERE l2_cache = "512 kb" AND release_date = "june 2001" AND sspec_number = "sl5lv, sl5pu, sl6bw, sl6jm" |
What event was held in Chihuahua, Mexico? | CREATE TABLE table_name_16 (event VARCHAR, venue VARCHAR) | SELECT event FROM table_name_16 WHERE venue = "chihuahua, mexico" |
What is the average number of draws for teams with more than 10 matches? | CREATE TABLE table_name_47 (draw INTEGER, match INTEGER) | SELECT AVG(draw) FROM table_name_47 WHERE match > 10 |
Name the class AA with class A of rule and school year of 1995-96 | CREATE TABLE table_name_52 (class_aA VARCHAR, class_a VARCHAR, school_year VARCHAR) | SELECT class_aA FROM table_name_52 WHERE class_a = "rule" AND school_year = "1995-96" |
What was the Opponent during the game with a Result of W 37-21? | CREATE TABLE table_name_73 (opponent VARCHAR, result VARCHAR) | SELECT opponent FROM table_name_73 WHERE result = "w 37-21" |
Tell me the highest overall rank for lane less than 8 and time less than 27.16 | CREATE TABLE table_name_37 (overall_rank INTEGER, lane VARCHAR, time VARCHAR) | SELECT MAX(overall_rank) FROM table_name_37 WHERE lane < 8 AND time < 27.16 |
What is the Irish name listed with 62% Irish speakers? | CREATE TABLE table_101196_1 (irish_name VARCHAR, irish_speakers VARCHAR) | SELECT irish_name FROM table_101196_1 WHERE irish_speakers = "62%" |
When 11 is the episode what is the air date? | CREATE TABLE table_28980706_4 (first_air_date VARCHAR, episode VARCHAR) | SELECT first_air_date FROM table_28980706_4 WHERE episode = 11 |
What is the average lap for suzuki gsx-r1000 k7 and at grid 6? | CREATE TABLE table_name_39 (laps INTEGER, bike VARCHAR, grid VARCHAR) | SELECT AVG(laps) FROM table_name_39 WHERE bike = "suzuki gsx-r1000 k7" AND grid = 6 |
What is the lowest Total, when Year(s) Won is "1948 , 1950 , 1951 , 1953"? | CREATE TABLE table_name_58 (total INTEGER, year_s__won VARCHAR) | SELECT MIN(total) FROM table_name_58 WHERE year_s__won = "1948 , 1950 , 1951 , 1953" |
How many grids did Shinichi Nakatomi ride in? | CREATE TABLE table_name_46 (grid INTEGER, rider VARCHAR) | SELECT SUM(grid) FROM table_name_46 WHERE rider = "shinichi nakatomi" |
What Season had Dundee United as a Winner? | CREATE TABLE table_name_87 (season VARCHAR, winners VARCHAR) | SELECT season FROM table_name_87 WHERE winners = "dundee united" |
How many stumpings has Paul Nixon in his career? | CREATE TABLE table_11303072_9 (stumpings VARCHAR, player VARCHAR) | SELECT stumpings FROM table_11303072_9 WHERE player = "Paul Nixon" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.