answer
stringlengths 18
557
| question
stringlengths 12
244
| context
stringlengths 27
489
|
|---|---|---|
SELECT color_commentator_s_ FROM table_name_53 WHERE year < 2012 AND network = "espn"
|
Who were the collor commentator(s) for ESPN before 2012?
|
CREATE TABLE table_name_53 (color_commentator_s_ VARCHAR, year VARCHAR, network VARCHAR)
|
SELECT AVG(games) FROM table_name_70 WHERE rating < 3.8 AND yards < 9
|
What is the games average with less than 3.8 in rating and less than 9 yards?
|
CREATE TABLE table_name_70 (games INTEGER, rating VARCHAR, yards VARCHAR)
|
SELECT surface FROM table_name_30 WHERE city = "caracas" AND tournament = "venezuela f5 futures"
|
On what Surface will the Venezuela F5 Futures in Caracas be played?
|
CREATE TABLE table_name_30 (surface VARCHAR, city VARCHAR, tournament VARCHAR)
|
SELECT opponent FROM table_name_67 WHERE location_attendance = "mellon arena - 17,132"
|
What is Opponent, when Location/Attendance is "Mellon Arena - 17,132"?
|
CREATE TABLE table_name_67 (opponent VARCHAR, location_attendance VARCHAR)
|
SELECT MAX(grid) FROM table_name_91 WHERE driver = "ronnie bremer" AND points > 18
|
What's the highest grid of Ronnie Bremer, who had more than 18 points?
|
CREATE TABLE table_name_91 (grid INTEGER, driver VARCHAR, points VARCHAR)
|
SELECT time FROM table_name_95 WHERE rower = "lee ka man"
|
What is Lee Ka Man's Time?
|
CREATE TABLE table_name_95 (time VARCHAR, rower VARCHAR)
|
SELECT COUNT(bronze) FROM table_name_25 WHERE total > 1 AND nation = "east germany" AND silver > 1
|
How many times was the total more than 1, the nation was east germany and silver was more than 1?
|
CREATE TABLE table_name_25 (bronze VARCHAR, silver VARCHAR, total VARCHAR, nation VARCHAR)
|
SELECT result FROM table_20626467_1 WHERE time = "1-26.21"
|
What was the result for the time of 1-26.21?
|
CREATE TABLE table_20626467_1 (result VARCHAR, time VARCHAR)
|
SELECT MAX(swimsuit) FROM table_name_63 WHERE interview > 9.55 AND evening_gown = 9.75 AND average > 9.67
|
What is the highest swimsuit score of the contestant with a higher than 9.55 interview score, and evening gown of 9.75, and an average higher than 9.67?
|
CREATE TABLE table_name_63 (swimsuit INTEGER, average VARCHAR, interview VARCHAR, evening_gown VARCHAR)
|
SELECT airport FROM table_name_59 WHERE iata = "bkk"
|
Which airport has IATA of BKK?
|
CREATE TABLE table_name_59 (airport VARCHAR, iata VARCHAR)
|
SELECT power FROM table_name_58 WHERE year < 1999
|
How powerful is the model before 1999?
|
CREATE TABLE table_name_58 (power VARCHAR, year INTEGER)
|
SELECT years_for_jazz FROM table_name_53 WHERE player = "eddie hughes"
|
What years did Eddie Hughes play for the Jazz?
|
CREATE TABLE table_name_53 (years_for_jazz VARCHAR, player VARCHAR)
|
SELECT prothrombin_time FROM table_name_28 WHERE platelet_count = "unaffected" AND bleeding_time = "unaffected" AND partial_thromboplastin_time = "normal or mildly prolonged"
|
Which Prothrombin time has a Platelet count of unaffected, and a Bleeding time of unaffected, and a Partial thromboplastin time of normal or mildly prolonged?
|
CREATE TABLE table_name_28 (prothrombin_time VARCHAR, partial_thromboplastin_time VARCHAR, platelet_count VARCHAR, bleeding_time VARCHAR)
|
SELECT MAX(first_elected) FROM table_1341423_40 WHERE results = "Re-elected" AND district = "South Carolina 3"
|
what is the earliest first elected with the results re-elected in the district south carolina 3?
|
CREATE TABLE table_1341423_40 (first_elected INTEGER, results VARCHAR, district VARCHAR)
|
SELECT MAX(round) FROM table_name_34 WHERE college = "toledo" AND pick < 92
|
What is the largest round of a pick smaller than 92 from Toledo University?
|
CREATE TABLE table_name_34 (round INTEGER, college VARCHAR, pick VARCHAR)
|
SELECT SUM(gold) FROM table_name_74 WHERE nation = "total" AND silver > 19
|
What is the sum of the gold medals of the total nation, which has more than 19 silver medals?
|
CREATE TABLE table_name_74 (gold INTEGER, nation VARCHAR, silver VARCHAR)
|
SELECT result FROM table_name_11 WHERE year = "1964: (37th)"
|
For the film made in 1964: (37th), what was the result?
|
CREATE TABLE table_name_11 (result VARCHAR, year VARCHAR)
|
SELECT COUNT(score) FROM table_22883210_7 WHERE date = "January 18"
|
What was the total score for january 18?
|
CREATE TABLE table_22883210_7 (score VARCHAR, date VARCHAR)
|
SELECT unit FROM table_name_75 WHERE construction_start = "1 december 1984"
|
Construction start of 1 december 1984 is what unit?
|
CREATE TABLE table_name_75 (unit VARCHAR, construction_start VARCHAR)
|
SELECT surface FROM table_name_81 WHERE opponents_in_final = "gigi fernández robin white"
|
What is Surface, when Opponents, when Final is "Gigi Fernández Robin White"?
|
CREATE TABLE table_name_81 (surface VARCHAR, opponents_in_final VARCHAR)
|
SELECT 2011 FROM table_name_34 WHERE 2007 = "atp masters series"
|
What is the 2011 value that has ATP Masters Series in 2007?
|
CREATE TABLE table_name_34 (Id VARCHAR)
|
SELECT MIN(position) FROM table_name_84 WHERE wins = 2 AND loses > 13
|
What is the lowest positioned team with 2 wins and losses greater than 13?
|
CREATE TABLE table_name_84 (position INTEGER, wins VARCHAR, loses VARCHAR)
|
SELECT venue FROM table_name_24 WHERE home = "fk crvena stijena"
|
In what venue did FK Crvena Stijena play at home?
|
CREATE TABLE table_name_24 (venue VARCHAR, home VARCHAR)
|
SELECT race AS Winner FROM table_name_99 WHERE location = "spa-francorchamps"
|
Who was the winner at spa-francorchamps?
|
CREATE TABLE table_name_99 (race VARCHAR, location VARCHAR)
|
SELECT DISTINCT T2.firstname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE grade = 1
|
Find the first names of the teachers that teach first grade.
|
CREATE TABLE list (classroom VARCHAR); CREATE TABLE teachers (firstname VARCHAR, classroom VARCHAR)
|
SELECT date FROM table_name_33 WHERE score = "4–2"
|
Whic Date has a Score of 4–2?
|
CREATE TABLE table_name_33 (date VARCHAR, score VARCHAR)
|
SELECT venue FROM table_name_22 WHERE date = "27-02-2003"
|
What is the Venue with a Date with 27-02-2003?
|
CREATE TABLE table_name_22 (venue VARCHAR, date VARCHAR)
|
SELECT winner FROM table_name_84 WHERE course = "milan circuit race"
|
Who was the winner at Milan Circuit Race?
|
CREATE TABLE table_name_84 (winner VARCHAR, course VARCHAR)
|
SELECT tournament FROM table_name_19 WHERE partner = "martín rodríguez"
|
Which Tournament has a Partner of martín rodríguez?
|
CREATE TABLE table_name_19 (tournament VARCHAR, partner VARCHAR)
|
SELECT 2009 FROM table_name_32 WHERE 2012 = "a" AND 2011 = "q2"
|
What is the 2009 value with A in 2012 and q2 in 2011?
|
CREATE TABLE table_name_32 (Id VARCHAR)
|
SELECT film_title_used_in_nomination FROM table_18987377_1 WHERE director = "Marcel Camus Category:Articles with hCards"
|
Name the film titled for marcel camus category:articles with hcards
|
CREATE TABLE table_18987377_1 (film_title_used_in_nomination VARCHAR, director VARCHAR)
|
SELECT ba___running_bear FROM table_2603017_2 WHERE ab___angry_boar = "OS - Ox Soldier"
|
what is ba - running bear where ab - angry boar is os - ox soldier?
|
CREATE TABLE table_2603017_2 (ba___running_bear VARCHAR, ab___angry_boar VARCHAR)
|
SELECT MAX(top_10) FROM table_name_49 WHERE tournament = "u.s. open" AND top_25 > 12
|
What is the highest top-10 that has a u.s. open for the tournament, and a top-25 greater than 12?
|
CREATE TABLE table_name_49 (top_10 INTEGER, tournament VARCHAR, top_25 VARCHAR)
|
SELECT venue FROM table_name_44 WHERE date = "14/12/1996"
|
What is Venue, when Date is "14/12/1996"?
|
CREATE TABLE table_name_44 (venue VARCHAR, date VARCHAR)
|
SELECT _percentage_0_19_years FROM table_29615165_5 WHERE quartier = "Saint-Loup"
|
How many o-19% are where the quartier is in saint-loup?
|
CREATE TABLE table_29615165_5 (_percentage_0_19_years VARCHAR, quartier VARCHAR)
|
SELECT settlement FROM table_2562572_30 WHERE cyrillic_name_other_names = "Сигет"
|
Which settlement has the cyrillic name сигет?
|
CREATE TABLE table_2562572_30 (settlement VARCHAR, cyrillic_name_other_names VARCHAR)
|
SELECT pick FROM table_name_76 WHERE player = "marc lewis (lhp)"
|
Which pick's player was Marc Lewis (lhp)?
|
CREATE TABLE table_name_76 (pick VARCHAR, player VARCHAR)
|
SELECT home_team AS score FROM table_name_96 WHERE venue = "lake oval"
|
What was the home team's score when they played at Lake Oval?
|
CREATE TABLE table_name_96 (home_team VARCHAR, venue VARCHAR)
|
SELECT player FROM table_name_17 WHERE season = "2007"
|
Which player played in 2007?
|
CREATE TABLE table_name_17 (player VARCHAR, season VARCHAR)
|
SELECT date FROM table_name_32 WHERE attendance = "n/a" AND man_of_the_match = "unknown"
|
What was the date when the attendance was n/a and the Man of the Match was unknown?
|
CREATE TABLE table_name_32 (date VARCHAR, attendance VARCHAR, man_of_the_match VARCHAR)
|
SELECT COUNT(roll) FROM table_name_19 WHERE name = "st joseph's school" AND decile < 5
|
Name the total number of roll for st joseph's school when decile is less than 5
|
CREATE TABLE table_name_19 (roll VARCHAR, name VARCHAR, decile VARCHAR)
|
SELECT COUNT(team) FROM table_27495117_3 WHERE date_of_appointment = "11 April 2011"
|
how many teams had an appointment date of 11 april 2011
|
CREATE TABLE table_27495117_3 (team VARCHAR, date_of_appointment VARCHAR)
|
SELECT season FROM table_name_75 WHERE club = "south melbourne"
|
In what season was there a club of South Melbourne?
|
CREATE TABLE table_name_75 (season VARCHAR, club VARCHAR)
|
SELECT date FROM table_name_49 WHERE home_team = "footscray"
|
On what date was the home team Footscray?
|
CREATE TABLE table_name_49 (date VARCHAR, home_team VARCHAR)
|
SELECT hometown FROM table_name_62 WHERE height = "6-3" AND name = "devon bookert"
|
What is the hometown of Devon Bookert who is 6-3 tall?
|
CREATE TABLE table_name_62 (hometown VARCHAR, height VARCHAR, name VARCHAR)
|
SELECT MAX(wins) FROM table_name_77 WHERE losses < 4 AND ties > 0
|
What is the most wins when the number of losses was less than 4 and there was more than 0 ties?
|
CREATE TABLE table_name_77 (wins INTEGER, losses VARCHAR, ties VARCHAR)
|
SELECT release_date FROM table_18138132_2 WHERE title = "Metronome"
|
What was the release date for metronome?
|
CREATE TABLE table_18138132_2 (release_date VARCHAR, title VARCHAR)
|
SELECT COUNT(total) FROM table_name_24 WHERE player = "seve ballesteros"
|
What is the total number for Seve Ballesteros?
|
CREATE TABLE table_name_24 (total VARCHAR, player VARCHAR)
|
SELECT score FROM table_name_48 WHERE surface = "clay" AND outcome = "winner" AND tournament = "ciudad juárez" AND opponent_in_the_final = "estefania craciún"
|
What is the Score of the match on a clay surface with an outcome of winner, at the tournament ciudad juárez, and an Opponent in the final of estefania craciún?
|
CREATE TABLE table_name_48 (score VARCHAR, opponent_in_the_final VARCHAR, tournament VARCHAR, surface VARCHAR, outcome VARCHAR)
|
SELECT no4 FROM table_name_46 WHERE no5 = "susana telmo"
|
Who is the no. 4 team that has the no. 5 player Susana Telmo?
|
CREATE TABLE table_name_46 (no4 VARCHAR, no5 VARCHAR)
|
SELECT SUM(silver) FROM table_name_52 WHERE bronze < 4 AND rank = "3" AND gold > 2
|
What is the sum of silver values that have bronze values under 4, golds over 2, and a rank of 3?
|
CREATE TABLE table_name_52 (silver INTEGER, gold VARCHAR, bronze VARCHAR, rank VARCHAR)
|
SELECT time FROM table_name_74 WHERE name = "mina clavero 2"
|
What was the Time in the Mina Clavero 2 Stage?
|
CREATE TABLE table_name_74 (time VARCHAR, name VARCHAR)
|
SELECT to_par FROM table_name_75 WHERE player = "roger maltbie"
|
what is the to par when the player is roger maltbie?
|
CREATE TABLE table_name_75 (to_par VARCHAR, player VARCHAR)
|
SELECT COUNT(crowd) FROM table_name_70 WHERE away_team = "geelong"
|
What was the attendance when Geelong played as the away team?
|
CREATE TABLE table_name_70 (crowd VARCHAR, away_team VARCHAR)
|
SELECT airport FROM table_name_64 WHERE city = "oslo"
|
What is the Airport in Oslo?
|
CREATE TABLE table_name_64 (airport VARCHAR, city VARCHAR)
|
SELECT MIN(year_of_recording) FROM table_name_63 WHERE orchestra = "royal philharmonic orchestra" AND record_company = "decca records"
|
What is the oldest year that the Royal Philharmonic Orchestra released a record with Decca Records?
|
CREATE TABLE table_name_63 (year_of_recording INTEGER, orchestra VARCHAR, record_company VARCHAR)
|
SELECT COUNT(round) FROM table_name_89 WHERE name = "will rackley"
|
What were Will Rackley's total rounds?
|
CREATE TABLE table_name_89 (round VARCHAR, name VARCHAR)
|
SELECT visitor FROM table_name_39 WHERE record = "2-4"
|
Which visitor has a record of 2-4?
|
CREATE TABLE table_name_39 (visitor VARCHAR, record VARCHAR)
|
SELECT glendale FROM table_name_20 WHERE la_cañada_flintridge = "5%"
|
What is the percentage of Glendale when La Canada Flintridge is 5%?
|
CREATE TABLE table_name_20 (glendale VARCHAR, la_cañada_flintridge VARCHAR)
|
SELECT high_assists FROM table_name_41 WHERE game < 13 AND score = "w 75-66"
|
who had the high assists when the game was less than 13 and the score was w 75-66?
|
CREATE TABLE table_name_41 (high_assists VARCHAR, game VARCHAR, score VARCHAR)
|
SELECT date FROM table_name_64 WHERE record = "27-25"
|
When was the record 27-25?
|
CREATE TABLE table_name_64 (date VARCHAR, record VARCHAR)
|
SELECT MIN(gold) FROM table_name_88 WHERE rank > 4 AND total < 1
|
What's the lowest Gold if the Rank is over 4 but the Total is less than 1?
|
CREATE TABLE table_name_88 (gold INTEGER, rank VARCHAR, total VARCHAR)
|
SELECT purpose FROM table_name_59 WHERE freq_currently = "4gld"
|
What is the Purpose of the Callsign with a Freq currently of 4gld?
|
CREATE TABLE table_name_59 (purpose VARCHAR, freq_currently VARCHAR)
|
SELECT cardinal_direction FROM table_14850099_18 WHERE planet = "Venus"
|
What is the cardinal direction associated with Venus?
|
CREATE TABLE table_14850099_18 (cardinal_direction VARCHAR, planet VARCHAR)
|
SELECT t1.product_name FROM products AS t1 JOIN ref_product_categories AS t2 ON t1.product_category_code = t2.product_category_code JOIN ref_colors AS t3 ON t1.color_code = t3.color_code WHERE t3.color_description = "white" AND t2.unit_of_measure <> "Handful"
|
Find the product names that are colored 'white' but do not have unit of measurement "Handful".
|
CREATE TABLE products (product_name VARCHAR, product_category_code VARCHAR, color_code VARCHAR); CREATE TABLE ref_colors (color_code VARCHAR, color_description VARCHAR); CREATE TABLE ref_product_categories (product_category_code VARCHAR, unit_of_measure VARCHAR)
|
SELECT date FROM table_name_30 WHERE grand_prix = "portuguese grand prix"
|
What date is the Portuguese Grand Prix?
|
CREATE TABLE table_name_30 (date VARCHAR, grand_prix VARCHAR)
|
SELECT acceleration_0_100km_h FROM table_name_32 WHERE name = "1.5 dci"
|
What is the acceleration 1-100km/h when the name is 1.5 dci?
|
CREATE TABLE table_name_32 (acceleration_0_100km_h VARCHAR, name VARCHAR)
|
SELECT regionalliga_süd FROM table_name_13 WHERE season = "1995-96"
|
What is the Regionalliga Sud for 1995-96?
|
CREATE TABLE table_name_13 (regionalliga_süd VARCHAR, season VARCHAR)
|
SELECT AVG(match) FROM table_name_33 WHERE points < 6
|
Which average match has points less than 6?
|
CREATE TABLE table_name_33 (match INTEGER, points INTEGER)
|
SELECT LOCATION FROM bridge WHERE name = 'Kolob Arch' OR name = 'Rainbow Bridge'
|
What is the location of the bridge named 'Kolob Arch' or 'Rainbow Bridge'?
|
CREATE TABLE bridge (LOCATION VARCHAR, name VARCHAR)
|
SELECT music_video FROM table_name_91 WHERE album = "high society" AND length = "3:50"
|
What was the music video that was from the album High Society, with a length of 3:50?
|
CREATE TABLE table_name_91 (music_video VARCHAR, album VARCHAR, length VARCHAR)
|
SELECT MAX(goals_for) FROM table_name_8 WHERE losses < 16 AND wins < 11 AND goal_difference > -9
|
What was the highest goals with fewer than 16 losses, fewer than 11 wins, and a goal difference greater than -9?
|
CREATE TABLE table_name_8 (goals_for INTEGER, goal_difference VARCHAR, losses VARCHAR, wins VARCHAR)
|
SELECT outcome FROM table_name_48 WHERE tournament = "melbourne"
|
What is the Outcome of the Melbourne Tournament?
|
CREATE TABLE table_name_48 (outcome VARCHAR, tournament VARCHAR)
|
SELECT round FROM table_name_38 WHERE club = "bečej"
|
What is the round of club bečej?
|
CREATE TABLE table_name_38 (round VARCHAR, club VARCHAR)
|
SELECT series FROM table_name_85 WHERE title = "barbary coast bunny"
|
From which series is the title Barbary Coast Bunny?
|
CREATE TABLE table_name_85 (series VARCHAR, title VARCHAR)
|
SELECT title FROM table_name_66 WHERE director = "raoul walsh" AND year > 1945
|
What title was directed by Raoul Walsh later than 1945?
|
CREATE TABLE table_name_66 (title VARCHAR, director VARCHAR, year VARCHAR)
|
SELECT release_date FROM table_10979230_5 WHERE reference = "KIDS-270"
|
What release date is when kids-270 is a reference?
|
CREATE TABLE table_10979230_5 (release_date VARCHAR, reference VARCHAR)
|
SELECT finish FROM table_name_88 WHERE league = "al" AND year = 1939
|
In the Year 1939, what was the Finish when Al was the League?
|
CREATE TABLE table_name_88 (finish VARCHAR, league VARCHAR, year VARCHAR)
|
SELECT phoneme FROM table_name_13 WHERE realization = "[ɪj]"
|
Name the phoneme for realizaiton of [ɪj]
|
CREATE TABLE table_name_13 (phoneme VARCHAR, realization VARCHAR)
|
SELECT COUNT(type_of_work) FROM table_207795_1 WHERE russian_title = "Хромая судьба"
|
How many types of work is хромая судьба?
|
CREATE TABLE table_207795_1 (type_of_work VARCHAR, russian_title VARCHAR)
|
SELECT sign FROM table_name_50 WHERE modern_title_of_house = "house of partnerships"
|
Which sign has a modern house title of House of Partnerships?
|
CREATE TABLE table_name_50 (sign VARCHAR, modern_title_of_house VARCHAR)
|
SELECT bleeding_time FROM table_14006_1 WHERE condition = "Liver failure, end-stage"
|
what's the bleeding time with condition being liver failure, end-stage
|
CREATE TABLE table_14006_1 (bleeding_time VARCHAR, condition VARCHAR)
|
SELECT full_word FROM table_name_46 WHERE case_suffix__case_ = "-sa (dative)"
|
What is the Full Word, when Case Suffix (case) is "-sa (dative)"?
|
CREATE TABLE table_name_46 (full_word VARCHAR, case_suffix__case_ VARCHAR)
|
SELECT sport FROM table_name_26 WHERE name = "ma yuxi"
|
What sport has Ma Yuxi in it?
|
CREATE TABLE table_name_26 (sport VARCHAR, name VARCHAR)
|
SELECT MIN(bills_first_downs) FROM table_name_47 WHERE date = "oct. 29" AND bills_points > 23
|
What was the Bills first downs on Oct. 29 with more the 23 Bills points?
|
CREATE TABLE table_name_47 (bills_first_downs INTEGER, date VARCHAR, bills_points VARCHAR)
|
SELECT country FROM table_name_76 WHERE score = 71 - 67 = 138
|
What Country had a Score of 71-67=138?
|
CREATE TABLE table_name_76 (country VARCHAR, score VARCHAR)
|
SELECT MAX(afc_titles) FROM table_1952065_4 WHERE super_bowl_wins = 2
|
How many afc titles were there when there were 2 super bowl wins?
|
CREATE TABLE table_1952065_4 (afc_titles INTEGER, super_bowl_wins VARCHAR)
|
SELECT MAX(money___) AS $__ FROM table_name_76 WHERE score = 69 - 71 - 71 - 73 = 284
|
What is the highest amount of money a player with a score of 69-71-71-73=284 has?
|
CREATE TABLE table_name_76 (money___ INTEGER, score VARCHAR)
|
SELECT opponent FROM table_name_25 WHERE rockets_score = 107
|
Which Opponent has a Rockets score of 107?
|
CREATE TABLE table_name_25 (opponent VARCHAR, rockets_score VARCHAR)
|
SELECT winner FROM table_name_23 WHERE tournament = "western open"
|
What is the winners name at the western open?
|
CREATE TABLE table_name_23 (winner VARCHAR, tournament VARCHAR)
|
SELECT june FROM table_1539201_1
|
Name the junes
|
CREATE TABLE table_1539201_1 (june VARCHAR)
|
SELECT MAX(official__number) FROM table_16425614_4 WHERE tf1__number = 42
|
Name the most official number for tf1 # being 42
|
CREATE TABLE table_16425614_4 (official__number INTEGER, tf1__number VARCHAR)
|
SELECT surface FROM table_1547951_3 WHERE outcome = "Runner-up" AND championship = "US Open"
|
Name the surfaace where outcome is runner-up and championship is us open
|
CREATE TABLE table_1547951_3 (surface VARCHAR, outcome VARCHAR, championship VARCHAR)
|
SELECT COUNT(episode) FROM table_24212608_1 WHERE broadcast_date = 2010
|
How many episodes were broadcast in 2010?
|
CREATE TABLE table_24212608_1 (episode VARCHAR, broadcast_date VARCHAR)
|
SELECT MIN(total_medals) FROM table_name_76 WHERE ensemble = "madison independent" AND bronze_medals > 0
|
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 place FROM table_name_78 WHERE country = "united states" AND player = "fuzzy zoeller"
|
What is the Place when Fuzzy Zoeller plated in the United States?
|
CREATE TABLE table_name_78 (place VARCHAR, country VARCHAR, player VARCHAR)
|
SELECT AVG(bronze) FROM table_name_70 WHERE rank < 5 AND gold > 2 AND total = 9 AND silver < 4
|
How many Bronze medals were received by the nation that Ranked less than 5 and received more than 2 Gold medals, less than 4 Silver medals with a Total of 9 medals?
|
CREATE TABLE table_name_70 (bronze INTEGER, silver VARCHAR, total VARCHAR, rank VARCHAR, gold VARCHAR)
|
SELECT opponent FROM table_name_30 WHERE date = "november 17, 1963"
|
Which Opponent has a Date of november 17, 1963?
|
CREATE TABLE table_name_30 (opponent VARCHAR, date VARCHAR)
|
SELECT COUNT(sunk_by_u_boat) FROM table_name_4 WHERE german_submarines_lost < 2 AND sunk_by_aircraft = 56328 AND sunk_by_mines > 8269
|
What is the total number of sunk by U-boats with less than 2 German submarines lost, 56328 sunk by aircrafts, and more than 8269 sunk by mines?
|
CREATE TABLE table_name_4 (sunk_by_u_boat VARCHAR, sunk_by_mines VARCHAR, german_submarines_lost VARCHAR, sunk_by_aircraft VARCHAR)
|
SELECT round FROM table_name_83 WHERE result = "6–7 (6–8) , 1–6"
|
What round had a result of 6–7 (6–8) , 1–6?
|
CREATE TABLE table_name_83 (round VARCHAR, result VARCHAR)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.