answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT COUNT(matches) FROM table_name_16 WHERE clubs = "588 → 406" | CREATE TABLE table_name_16 (matches VARCHAR, clubs VARCHAR) | What is the total number of Matches, when Clubs is 588 → 406? |
SELECT prize_money FROM table_name_79 WHERE matches < 73 AND round = "third round proper" | CREATE TABLE table_name_79 (prize_money VARCHAR, matches VARCHAR, round VARCHAR) | What is Prize Money, when Matches is less than 73, and when Round is Third Round Proper? |
SELECT opponent_in_the_final FROM table_name_69 WHERE surface = "hard" AND score = "walkover" | CREATE TABLE table_name_69 (opponent_in_the_final VARCHAR, surface VARCHAR, score VARCHAR) | For the tournament played on a hard surface and ending with a score of Walkover, who was the Finals opponent? |
SELECT opponent_in_the_final FROM table_name_15 WHERE date = "september 25, 1995" | CREATE TABLE table_name_15 (opponent_in_the_final VARCHAR, date VARCHAR) | For the tournament played on September 25, 1995, who was the Finals opponent? |
SELECT tournament FROM table_name_46 WHERE date = "september 25, 1995" | CREATE TABLE table_name_46 (tournament VARCHAR, date VARCHAR) | Which tournament was played on September 25, 1995? |
SELECT time FROM table_name_71 WHERE round < 3 AND opponent = "amanda lavoy" | CREATE TABLE table_name_71 (time VARCHAR, round VARCHAR, opponent VARCHAR) | What was the time for the bout against Amanda Lavoy, which went under 3 rounds? |
SELECT notes FROM table_name_89 WHERE app_l_c_e_ = "13 (7/2/4)" | CREATE TABLE table_name_89 (notes VARCHAR, app_l_c_e_ VARCHAR) | What is Notes, when App(L/C/E) is 13 (7/2/4)? |
SELECT nat FROM table_name_92 WHERE ends > 2010 AND since = 2006 AND name = "paligeorgos" | CREATE TABLE table_name_92 (nat VARCHAR, name VARCHAR, ends VARCHAR, since VARCHAR) | What is Nat., when Ends is greater than 2010, when Since is 2006, and when Name is Paligeorgos? |
SELECT MIN(since) FROM table_name_88 WHERE notes = "to anagennisi karditsa" AND app_l_c_e_ = "0 (0/0/0)" | CREATE TABLE table_name_88 (since INTEGER, notes VARCHAR, app_l_c_e_ VARCHAR) | What is the lowest Since, when Notes is To Anagennisi Karditsa, and when App(L/C/E) is 0 (0/0/0)? |
SELECT time_retired FROM table_name_28 WHERE laps < 51 AND team = "newman-haas racing" | CREATE TABLE table_name_28 (time_retired VARCHAR, laps VARCHAR, team VARCHAR) | What is the Time/Retired of the Newman-Haas Racing team in under 51 laps? |
SELECT MIN(laps) FROM table_name_79 WHERE team = "forsythe racing" AND driver = "alex tagliani" | CREATE TABLE table_name_79 (laps INTEGER, team VARCHAR, driver VARCHAR) | What are the lowest laps Alex Tagliani did for the Forsythe Racing team? |
SELECT 2010 AS _11 FROM table_name_75 WHERE event = "colonial square ladies classic" | CREATE TABLE table_name_75 (event VARCHAR) | What is the 2010–11 when the Event is colonial square ladies classic? |
SELECT 2007 AS _08 FROM table_name_32 WHERE event = "autumn gold" | CREATE TABLE table_name_32 (event VARCHAR) | What is the 2007–08 when the event was autumn gold? |
SELECT COUNT(cultural_and_educational_panel) FROM table_name_9 WHERE labour_panel > 5 AND industrial_and_commercial_panel > 9 | CREATE TABLE table_name_9 (cultural_and_educational_panel VARCHAR, labour_panel VARCHAR, industrial_and_commercial_panel VARCHAR) | Which Cultural and Educational Panel has a Labour Panel larger than 5, and an Industrial and Commercial Panel larger than 9? |
SELECT MIN(administrative_panel) FROM table_name_52 WHERE nominated_by_the_taoiseach < 0 | CREATE TABLE table_name_52 (administrative_panel INTEGER, nominated_by_the_taoiseach INTEGER) | Which Administrative Panel has a Nominated by the Taoiseach smaller than 0? |
SELECT AVG(labour_panel) FROM table_name_46 WHERE industrial_and_commercial_panel = 9 AND university_of_dublin < 3 | CREATE TABLE table_name_46 (labour_panel INTEGER, industrial_and_commercial_panel VARCHAR, university_of_dublin VARCHAR) | Which Labour Panel has an Industrial and Commercial Panel of 9, and a University of Dublin smaller than 3? |
SELECT COUNT(total) FROM table_name_55 WHERE labour_panel < 5 AND administrative_panel < 1 AND national_university_of_ireland < 2 | CREATE TABLE table_name_55 (total VARCHAR, national_university_of_ireland VARCHAR, labour_panel VARCHAR, administrative_panel VARCHAR) | Which Total has a Labour Panel smaller than 5, an Administrative Panel smaller than 1, and a National University of Ireland smaller than 2? |
SELECT SUM(agricultural_panel) FROM table_name_26 WHERE nominated_by_the_taoiseach > 6 AND total > 60 | CREATE TABLE table_name_26 (agricultural_panel INTEGER, nominated_by_the_taoiseach VARCHAR, total VARCHAR) | Which Agricultural Panel has a Nominated by the Taoiseach larger than 6, and a Total larger than 60? |
SELECT team_1 FROM table_name_77 WHERE team_2 = "jac port-gentil" | CREATE TABLE table_name_77 (team_1 VARCHAR, team_2 VARCHAR) | What is Team 1 when Team 2 is Jac Port-Gentil? |
SELECT winning_score FROM table_name_22 WHERE tournament = "joburg open 1" AND date = "17 jan 2010" | CREATE TABLE table_name_22 (winning_score VARCHAR, tournament VARCHAR, date VARCHAR) | What is Winning Score, when Tournament is Joburg Open 1, and when Date is 17 Jan 2010? |
SELECT date FROM table_name_87 WHERE tournament = "alfred dunhill championship 1" | CREATE TABLE table_name_87 (date VARCHAR, tournament VARCHAR) | What is Date, when Tournament is Alfred Dunhill Championship 1? |
SELECT tournament FROM table_name_30 WHERE margin_of_victory = "6 strokes" | CREATE TABLE table_name_30 (tournament VARCHAR, margin_of_victory VARCHAR) | What is Tournament, when Margin is Victory of 6 Strokes? |
SELECT winning_score FROM table_name_45 WHERE date = "17 jan 2010" | CREATE TABLE table_name_45 (winning_score VARCHAR, date VARCHAR) | What is Winning Score, when Date is 17 Jan 2010? |
SELECT tournament FROM table_name_70 WHERE runner_s__up = "garth mulroy" | CREATE TABLE table_name_70 (tournament VARCHAR, runner_s__up VARCHAR) | What is Tournament, when Runner(s)-Up is Garth Mulroy? |
SELECT runner_s__up FROM table_name_51 WHERE margin_of_victory = "1 stroke" AND tournament = "joburg open 1" | CREATE TABLE table_name_51 (runner_s__up VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR) | What is Runner(s)-Up, when Margin of Victory is 1 Stroke, and when Tournament is Joburg Open 1? |
SELECT SUM(points) FROM table_name_28 WHERE poles < 0 | CREATE TABLE table_name_28 (points INTEGER, poles INTEGER) | What is the points sum of the series with less than 0 poles? |
SELECT SUM(races) FROM table_name_40 WHERE podiums > 4 AND season = "2007" | CREATE TABLE table_name_40 (races INTEGER, podiums VARCHAR, season VARCHAR) | What is the sum of the races in the 2007 season, which has more than 4 podiums? |
SELECT SUM(poles) FROM table_name_13 WHERE team = "la filière" AND points < 162 | CREATE TABLE table_name_13 (poles INTEGER, team VARCHAR, points VARCHAR) | What is the sum of the poles of Team la filière, which has less than 162 points? |
SELECT AVG(points) FROM table_name_11 WHERE wins < 1 AND season = "2012" AND podiums < 0 | CREATE TABLE table_name_11 (points INTEGER, podiums VARCHAR, wins VARCHAR, season VARCHAR) | What is the average number of points in the 2012 season, which has less than 1 wins and less than 0 podiums? |
SELECT pole FROM table_name_75 WHERE class = "moto2" | CREATE TABLE table_name_75 (pole VARCHAR, class VARCHAR) | How many poles had a moto2 class? |
SELECT SUM(cultural_and_educational_panel) FROM table_name_3 WHERE administrative_panel > 1 AND agricultural_panel = 11 AND university_of_dublin < 3 | CREATE TABLE table_name_3 (cultural_and_educational_panel INTEGER, university_of_dublin VARCHAR, administrative_panel VARCHAR, agricultural_panel VARCHAR) | What is the sum of the Cultural and Educational Panels that have an Administrative Panel greater than 1, an Agricultural Panel of 11 and a University of Dublin smaller than 3? |
SELECT SUM(agricultural_panel) FROM table_name_46 WHERE industrial_and_commercial_panel < 0 | CREATE TABLE table_name_46 (agricultural_panel INTEGER, industrial_and_commercial_panel INTEGER) | What is the sum of Agricultural panels that have an Industrial and Commercial Panel smaller than 0? |
SELECT MIN(national_university_of_ireland) FROM table_name_49 WHERE cultural_and_educational_panel = 0 AND labour_panel < 1 | CREATE TABLE table_name_49 (national_university_of_ireland INTEGER, cultural_and_educational_panel VARCHAR, labour_panel VARCHAR) | What is the lowest number of National University of Ireland that has a Cultural and Educational Panel of 0, and a Labour Panel smaller than 1? |
SELECT COUNT(industrial_and_commercial_panel) FROM table_name_45 WHERE labour_panel > 1 AND nominated_by_the_taoiseach < 11 AND cultural_and_educational_panel < 0 | CREATE TABLE table_name_45 (industrial_and_commercial_panel VARCHAR, cultural_and_educational_panel VARCHAR, labour_panel VARCHAR, nominated_by_the_taoiseach VARCHAR) | What is the total of Industrial and Commercial Panels that have a Labour Panel greater than 1, a Nominated by the Taoiseach lesss than 11 and a Cultural and Educational Panel smaller than 0 |
SELECT MAX(goals) FROM table_name_91 WHERE minutes = 2428 | CREATE TABLE table_name_91 (goals INTEGER, minutes VARCHAR) | What was the highest number of goals when 2428 minutes were played? |
SELECT minutes FROM table_name_8 WHERE goals > 4 AND assists = 3 | CREATE TABLE table_name_8 (minutes VARCHAR, goals VARCHAR, assists VARCHAR) | What is the number of minutes when there are more than 4 goals and 3 assists? |
SELECT COUNT(assists) FROM table_name_21 WHERE position = "striker" AND goals < 4 AND player = "edmundo rodriguez" AND minutes < 473 | CREATE TABLE table_name_21 (assists VARCHAR, minutes VARCHAR, player VARCHAR, position VARCHAR, goals VARCHAR) | What is the total number of assists when Edmundo Rodriguez is playing the position of striker, less than 4 goals were scored, and the minutes were less than 473? |
SELECT MIN(erp_w) FROM table_name_27 WHERE frequency_mhz = "89.3 fm" | CREATE TABLE table_name_27 (erp_w INTEGER, frequency_mhz VARCHAR) | What is the least ERP W when the freguency MHz is 89.3 fm? |
SELECT AVG(erp_w) FROM table_name_76 WHERE call_sign = "k216fo" | CREATE TABLE table_name_76 (erp_w INTEGER, call_sign VARCHAR) | Call sign k216fo has what average ERP W? |
SELECT city_of_license FROM table_name_54 WHERE call_sign = "k248am" | CREATE TABLE table_name_54 (city_of_license VARCHAR, call_sign VARCHAR) | What city does call sign K248am have its license in? |
SELECT call_sign FROM table_name_13 WHERE erp_w > 197 | CREATE TABLE table_name_13 (call_sign VARCHAR, erp_w INTEGER) | What call sign has ERP W greater than 197? |
SELECT points FROM table_name_23 WHERE season > 2011 AND series = "macau grand prix" | CREATE TABLE table_name_23 (points VARCHAR, season VARCHAR, series VARCHAR) | How many points did Costa score in the Macau Grand Prix since 2011? |
SELECT team FROM table_name_42 WHERE races = "1" AND position = "1st" | CREATE TABLE table_name_42 (team VARCHAR, races VARCHAR, position VARCHAR) | Which teams had the 1st position and entered 1 race? |
SELECT points FROM table_name_90 WHERE wins = "3" AND team = "carlin" | CREATE TABLE table_name_90 (points VARCHAR, wins VARCHAR, team VARCHAR) | How many points did Carlin have when they had 3 wins? |
SELECT SUM(points) FROM table_name_49 WHERE against < 43 AND position < 1 | CREATE TABLE table_name_49 (points INTEGER, against VARCHAR, position VARCHAR) | How many Points have an Against smaller than 43, and a Position smaller than 1? |
SELECT COUNT(drawn) FROM table_name_70 WHERE position = 7 AND points > 18 | CREATE TABLE table_name_70 (drawn VARCHAR, position VARCHAR, points VARCHAR) | How many Drawn have a Position of 7, and Points larger than 18? |
SELECT COUNT(against) FROM table_name_33 WHERE team = "hespanha" AND points < 30 | CREATE TABLE table_name_33 (against VARCHAR, team VARCHAR, points VARCHAR) | How many Against have a Team of hespanha, and Points smaller than 30? |
SELECT AVG(points) FROM table_name_74 WHERE drawn = 3 AND played < 22 | CREATE TABLE table_name_74 (points INTEGER, drawn VARCHAR, played VARCHAR) | Which Points is the average one that has Drawn of 3, and a Played smaller than 22? |
SELECT SUM(played) FROM table_name_63 WHERE against > 37 AND lost = 15 AND points < 11 | CREATE TABLE table_name_63 (played INTEGER, points VARCHAR, against VARCHAR, lost VARCHAR) | How much Played has an Against larger than 37, and a Lost of 15, and Points smaller than 11? |
SELECT artist FROM table_name_94 WHERE spoofed_title = "miscue 911" | CREATE TABLE table_name_94 (artist VARCHAR, spoofed_title VARCHAR) | Which artist has the Spoofed title Miscue 911? |
SELECT spoofed_title FROM table_name_47 WHERE date = "february 1998" | CREATE TABLE table_name_47 (spoofed_title VARCHAR, date VARCHAR) | Which Spoofed title is from February 1998? |
SELECT artist FROM table_name_32 WHERE date = "june 1992" | CREATE TABLE table_name_32 (artist VARCHAR, date VARCHAR) | Which artist has a Spoofed title in June 1992? |
SELECT AVG(laps) FROM table_name_92 WHERE manufacturer = "ktm" AND time_retired = "+56.440" AND grid < 11 | CREATE TABLE table_name_92 (laps INTEGER, grid VARCHAR, manufacturer VARCHAR, time_retired VARCHAR) | What was the average number of laps completed by KTM riders, with times of +56.440 and grid values under 11? |
SELECT MAX(grid) FROM table_name_22 WHERE manufacturer = "aprilia" AND time_retired = "+1.660" | CREATE TABLE table_name_22 (grid INTEGER, manufacturer VARCHAR, time_retired VARCHAR) | What was the highest grid value for riders with manufacturer of Aprilia and time of +1.660? |
SELECT round FROM table_name_98 WHERE time = "5:00" AND opponent = "aleksander emelianenko" | CREATE TABLE table_name_98 (round VARCHAR, time VARCHAR, opponent VARCHAR) | What Round against Aleksander Emelianenko had a time of 5:00? |
SELECT venue FROM table_name_18 WHERE home = "irfu all-stars" AND season = 1958 | CREATE TABLE table_name_18 (venue VARCHAR, home VARCHAR, season VARCHAR) | In 1958, what has the IRFU All-Stars Home Venue? |
SELECT date FROM table_name_73 WHERE venue = "exhibition stadium" | CREATE TABLE table_name_73 (date VARCHAR, venue VARCHAR) | On what Date was the Venue at Exhibition Stadium? |
SELECT MAX(attendance) FROM table_name_82 WHERE season < 1957 AND venue = "varsity stadium" | CREATE TABLE table_name_82 (attendance INTEGER, season VARCHAR, venue VARCHAR) | Before 1957, what was the largest in Attendance at Varsity Stadium? |
SELECT time FROM table_name_81 WHERE score = "65-19" | CREATE TABLE table_name_81 (time VARCHAR, score VARCHAR) | What is the Time with a Score that is 65-19? |
SELECT time FROM table_name_91 WHERE away = "broadview hawks" | CREATE TABLE table_name_91 (time VARCHAR, away VARCHAR) | What is the Time with an Away that is broadview hawks? |
SELECT SUM(position) FROM table_name_97 WHERE against = 32 AND difference = "18" AND drawn > 4 | CREATE TABLE table_name_97 (position INTEGER, drawn VARCHAR, against VARCHAR, difference VARCHAR) | Which Position has an Against of 32, and a Difference of 18, and a Drawn larger than 4? |
SELECT MAX(position) FROM table_name_16 WHERE against < 49 AND drawn = 4 | CREATE TABLE table_name_16 (position INTEGER, against VARCHAR, drawn VARCHAR) | Which Position has an Against smaller than 49, and a Drawn of 4? |
SELECT MAX(played) FROM table_name_95 WHERE drawn = 5 AND team = "palmeiras" AND position < 6 | CREATE TABLE table_name_95 (played INTEGER, position VARCHAR, drawn VARCHAR, team VARCHAR) | Which Played has a Drawn of 5, and a Team of palmeiras, and a Position smaller than 6? |
SELECT team FROM table_name_17 WHERE date = "november 17" | CREATE TABLE table_name_17 (team VARCHAR, date VARCHAR) | What team played on November 17? |
SELECT comp FROM table_name_83 WHERE ryds = "2" | CREATE TABLE table_name_83 (comp VARCHAR, ryds VARCHAR) | What is the comp when the ryds is 2? |
SELECT ratt FROM table_name_49 WHERE comp = "48" | CREATE TABLE table_name_49 (ratt VARCHAR, comp VARCHAR) | What is the RAtt when the comp is 48? |
SELECT ratt FROM table_name_83 WHERE long = "73" | CREATE TABLE table_name_83 (ratt VARCHAR, long VARCHAR) | What is the RAtt when the long is 73? |
SELECT ryds FROM table_name_35 WHERE ratt = "2" AND comp = "41" | CREATE TABLE table_name_35 (ryds VARCHAR, ratt VARCHAR, comp VARCHAR) | What is the RYds when the RAtt was 2, and the comp is 41? |
SELECT long FROM table_name_14 WHERE ryds = "18" | CREATE TABLE table_name_14 (long VARCHAR, ryds VARCHAR) | What is the Long when the ryds is 18? |
SELECT ravg FROM table_name_93 WHERE ratt = "3" | CREATE TABLE table_name_93 (ravg VARCHAR, ratt VARCHAR) | What is the RAvg when the ratt is 3? |
SELECT runner_s__up FROM table_name_21 WHERE tournament = "merrill lynch/golf digest commemorative pro-am" | CREATE TABLE table_name_21 (runner_s__up VARCHAR, tournament VARCHAR) | Who was the Runner-up for the merrill lynch/golf digest commemorative pro-am tournament? |
SELECT margin_of_victory FROM table_name_59 WHERE winning_score = –14(70 - 68 - 67 = 205) | CREATE TABLE table_name_59 (margin_of_victory VARCHAR, winning_score VARCHAR) | What was the margin of victory when the winning score was –14 (70-68-67=205)? |
SELECT margin_of_victory FROM table_name_71 WHERE winning_score = –10(69 - 68 - 74 - 67 = 278) | CREATE TABLE table_name_71 (margin_of_victory VARCHAR, winning_score VARCHAR) | Who were the runner(s)-up when the winning score was –10 (69-68-74-67=278)? |
SELECT runner_s__up FROM table_name_86 WHERE margin_of_victory = "2 strokes" AND tournament = "mazda senior tournament players championship" | CREATE TABLE table_name_86 (runner_s__up VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR) | Who was the runner-up for the mazda senior tournament players championship tournament when the margin of victory was 2 strokes? |
SELECT last_title FROM table_name_9 WHERE home_ground_[a_] = "sydney cricket ground" | CREATE TABLE table_name_9 (last_title VARCHAR, home_ground_ VARCHAR, a_ VARCHAR) | When was the last title of the team with a home ground of Sydney cricket ground? |
SELECT COUNT(attendance) FROM table_name_9 WHERE week = 15 | CREATE TABLE table_name_9 (attendance VARCHAR, week VARCHAR) | How many people were in attendance for the game week 15? |
SELECT MAX(attendance) FROM table_name_92 WHERE opponent = "buffalo bills" AND week > 14 | CREATE TABLE table_name_92 (attendance INTEGER, opponent VARCHAR, week VARCHAR) | What is the highest number of people in attendance in the game against the Buffalo Bills in a week later than 14? |
SELECT AVG(attendance) FROM table_name_5 WHERE date = "november 1, 1981" | CREATE TABLE table_name_5 (attendance INTEGER, date VARCHAR) | What is the average Attendance for the game on November 1, 1981? |
SELECT position FROM table_name_8 WHERE team = "chicago cubs" | CREATE TABLE table_name_8 (position VARCHAR, team VARCHAR) | What position is played by the player from the Chicago Cubs? |
SELECT player FROM table_name_63 WHERE position = "outfielder" AND pick < 42 | CREATE TABLE table_name_63 (player VARCHAR, position VARCHAR, pick VARCHAR) | What is the name of the Outfielder that was picked prior to Pick 42? |
SELECT week_of FROM table_name_2 WHERE semi_finalists = "anke huber chanda rubin" AND runner_up = "meredith mcgrath larisa savchenko" | CREATE TABLE table_name_2 (week_of VARCHAR, semi_finalists VARCHAR, runner_up VARCHAR) | What is the Week when anke huber chanda rubin shows for Semi finalists, and the Runner-up is meredith mcgrath larisa savchenko? |
SELECT semi_finalists FROM table_name_55 WHERE runner_up = "katrina adams zina garrison-jackson" | CREATE TABLE table_name_55 (semi_finalists VARCHAR, runner_up VARCHAR) | What is the Semi finalists when the Runner-up was katrina adams zina garrison-jackson? |
SELECT winner FROM table_name_31 WHERE semi_finalists = "anke huber chanda rubin" | CREATE TABLE table_name_31 (winner VARCHAR, semi_finalists VARCHAR) | What is the Winner when anke huber chanda rubin was semi finalist? |
SELECT tier FROM table_name_95 WHERE runner_up = "chanda rubin caroline vis" | CREATE TABLE table_name_95 (tier VARCHAR, runner_up VARCHAR) | What is the Tier when the runner-up is chanda rubin caroline vis? |
SELECT week_of FROM table_name_88 WHERE winner = "mary joe fernández 6–4, 7–5" | CREATE TABLE table_name_88 (week_of VARCHAR, winner VARCHAR) | What is the Week when the winner was mary joe fernández 6–4, 7–5? |
SELECT runner_up FROM table_name_43 WHERE tier = "tier ii" AND winner = "gigi fernández natalia zvereva 5–7, 6–1, 6–4" | CREATE TABLE table_name_43 (runner_up VARCHAR, tier VARCHAR, winner VARCHAR) | What is the Runner-up with the tier was tier ii, and a Winner of gigi fernández natalia zvereva 5–7, 6–1, 6–4? |
SELECT week__number FROM table_name_42 WHERE result = "safe" AND theme = "dolly parton" | CREATE TABLE table_name_42 (week__number VARCHAR, result VARCHAR, theme VARCHAR) | Which week had safe as the result and Dolly Parton as the theme? |
SELECT week__number FROM table_name_34 WHERE original_artist = "the beatles" AND order__number < 10 | CREATE TABLE table_name_34 (week__number VARCHAR, original_artist VARCHAR, order__number VARCHAR) | On which week was the beatles the original artist and the order # smaller than 10? |
SELECT original_artist FROM table_name_89 WHERE order__number = 5 | CREATE TABLE table_name_89 (original_artist VARCHAR, order__number VARCHAR) | Which original artist had 5 as their order #? |
SELECT nominee FROM table_name_17 WHERE category = "outstanding director of a musical" | CREATE TABLE table_name_17 (nominee VARCHAR, category VARCHAR) | Which nominee was nominated in the Outstanding Director of a Musical category? |
SELECT result FROM table_name_46 WHERE nominee = "brent spiner" | CREATE TABLE table_name_46 (result VARCHAR, nominee VARCHAR) | What is the result for Brent Spiner? |
SELECT MIN(games) FROM table_name_86 WHERE name = "shaun stonerook" | CREATE TABLE table_name_86 (games INTEGER, name VARCHAR) | What is the number of games for Shaun Stonerook? |
SELECT MAX(total) FROM table_name_21 WHERE bronze < 1 AND silver < 0 | CREATE TABLE table_name_21 (total INTEGER, bronze VARCHAR, silver VARCHAR) | What is the highest total number of medals of the nation with less than 1 bronzes and less than 0 silver medals? |
SELECT SUM(week) FROM table_name_55 WHERE attendance = 49 OFFSET 980 | CREATE TABLE table_name_55 (week INTEGER, attendance VARCHAR) | Total weeks of 49,980 attendance? |
SELECT AVG(attendance) FROM table_name_91 WHERE date = "december 22, 1980" | CREATE TABLE table_name_91 (attendance INTEGER, date VARCHAR) | Mean attendance for December 22, 1980? |
SELECT attendance FROM table_name_63 WHERE week = 4 | CREATE TABLE table_name_63 (attendance VARCHAR, week VARCHAR) | Overall attendance for week 4? |
SELECT 2007 FROM table_name_10 WHERE 1999 = "3r" | CREATE TABLE table_name_10 (Id VARCHAR) | What was in 2007 that has a 3r of 1999? |
SELECT 2007 FROM table_name_73 WHERE 2004 = "2r" AND 2010 = "a" | CREATE TABLE table_name_73 (Id VARCHAR) | What was in 2007 that is from 2004 0f 2r and 2010 of A? |
SELECT 2001 FROM table_name_71 WHERE 2006 = "2r" AND 2010 = "a" | CREATE TABLE table_name_71 (Id VARCHAR) | What is in 2001, that has the year 2006, 2r, and in 2010 an A? |
SELECT award FROM table_name_90 WHERE year > 1947 AND category = "best actor in a leading role" | CREATE TABLE table_name_90 (award VARCHAR, year VARCHAR, category VARCHAR) | Who was awarded after 1947 in the category of, the best actor in a leading role? |
Subsets and Splits