answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT manufacturer FROM table_name_9 WHERE fuel_type = "diesel" | CREATE TABLE table_name_9 (manufacturer VARCHAR, fuel_type VARCHAR) | What is the Manufacturer with a Fuel Type that is diesel? |
SELECT higgins FROM table_name_35 WHERE scallon = "2%" | CREATE TABLE table_name_35 (higgins VARCHAR, scallon VARCHAR) | What is the Higgins with a Scallon that is 2%? |
SELECT higgins FROM table_name_90 WHERE davis = "9%" | CREATE TABLE table_name_90 (higgins VARCHAR, davis VARCHAR) | What is the Higgins with a Davis that is 9%? |
SELECT source FROM table_name_45 WHERE norris = "7%" | CREATE TABLE table_name_45 (source VARCHAR, norris VARCHAR) | What is the Source with a Norris that is 7%? |
SELECT SUM(game_2) FROM table_name_67 WHERE total = 759 OFFSET 997 | CREATE TABLE table_name_67 (game_2 INTEGER, total VARCHAR) | What is the game 2 sum attendance of the team with a total attendance of 759,997? |
SELECT position FROM table_name_55 WHERE player = "barry rose" | CREATE TABLE table_name_55 (position VARCHAR, player VARCHAR) | What position does Barry Rose play? |
SELECT COUNT(jersey__number) FROM table_name_98 WHERE height__cm_ = 183 AND name = "paul stastny" AND weight__kg_ < 93 | CREATE TABLE table_name_98 (jersey__number VARCHAR, weight__kg_ VARCHAR, height__cm_ VARCHAR, name VARCHAR) | Which Jersey # has a Height (cm) of 183, a Name of paul stastny, and a Weight (kg) smaller than 93? |
SELECT captain FROM table_name_61 WHERE year < 1927 AND runner_up = "angaston" | CREATE TABLE table_name_61 (captain VARCHAR, year VARCHAR, runner_up VARCHAR) | When the Runner-up was Angaston, and the Year was less than 1927, who was the Captain? |
SELECT runner_up FROM table_name_14 WHERE score = "kapunda 7-7-49 angaston 6-8-44" | CREATE TABLE table_name_14 (runner_up VARCHAR, score VARCHAR) | When the Score was kapunda 7-7-49 angaston 6-8-44, who was the Runner-up? |
SELECT SUM(year) FROM table_name_53 WHERE score = "kapunda 14-13-97 tanunda 5-14-44" | CREATE TABLE table_name_53 (year INTEGER, score VARCHAR) | Which year had a Score of kapunda 14-13-97 tanunda 5-14-44? |
SELECT captain FROM table_name_57 WHERE runner_up = "tanunda" AND year > 1939 | CREATE TABLE table_name_57 (captain VARCHAR, runner_up VARCHAR, year VARCHAR) | When the year is later than 1939 and the Runner-up is Tanunda, who is the Captain? |
SELECT tournament FROM table_name_25 WHERE 2001 = "1r" AND 2011 = "a" | CREATE TABLE table_name_25 (tournament VARCHAR) | What's the tournamnet name that has a 2001 of 1r and 2011? |
SELECT 2001 FROM table_name_83 WHERE 2005 = "4r" | CREATE TABLE table_name_83 (Id VARCHAR) | What is the 2001 tournament with a 2005 4r? |
SELECT 2010 FROM table_name_58 WHERE 2004 = "1r" AND tournament = "french open" | CREATE TABLE table_name_58 (tournament VARCHAR) | What french open tournament happened in 2010 and has a 2004 1r? |
SELECT 2002 FROM table_name_21 WHERE 2008 = "career statistics" | CREATE TABLE table_name_21 (Id VARCHAR) | What 2002 tournament has 2008 career statistics? |
SELECT season FROM table_name_21 WHERE staffel_e = "stahl riesa" | CREATE TABLE table_name_21 (season VARCHAR, staffel_e VARCHAR) | Which season has a Staffel E of Stahl Riesa? |
SELECT staffel_d FROM table_name_51 WHERE staffel_e = "motor suhl" AND season = "1983-84" | CREATE TABLE table_name_51 (staffel_d VARCHAR, staffel_e VARCHAR, season VARCHAR) | What is the Staffel D in the season 1983-84 with a Staffel E of Motor Suhl? |
SELECT staffel_a FROM table_name_75 WHERE staffel_d = "energie cottbus" AND staffel_c = "chemie leipzig" AND staffel_b = "1. fc union berlin" | CREATE TABLE table_name_75 (staffel_a VARCHAR, staffel_b VARCHAR, staffel_d VARCHAR, staffel_c VARCHAR) | What is the Staffel A that has a Staffel D of Energie Cottbus and a Staffel C of Chemie Leipzig and a Staffel B of 1. FC Union Berlin? |
SELECT staffel_b FROM table_name_97 WHERE staffel_c = "hallescher fc chemie" | CREATE TABLE table_name_97 (staffel_b VARCHAR, staffel_c VARCHAR) | What is the Staffel B that has Hallescher Fc Chemie as Staffel C? |
SELECT week FROM table_name_8 WHERE date = "september 27, 1953" | CREATE TABLE table_name_8 (week VARCHAR, date VARCHAR) | Which week's date was September 27, 1953? |
SELECT MAX(attendance) FROM table_name_48 WHERE opponent = "chicago cardinals" AND week < 4 | CREATE TABLE table_name_48 (attendance INTEGER, opponent VARCHAR, week VARCHAR) | What is the largest attendance number when the Chicago Cardinals were the opponent and the week was less than 4? |
SELECT runner_up FROM table_name_85 WHERE tier = "tier ii" AND winner = "gigi fernΓ‘ndez natalia zvereva 6β2, 6β1" | CREATE TABLE table_name_85 (runner_up VARCHAR, tier VARCHAR, winner VARCHAR) | When Gigi FernΓ‘ndez Natalia Zvereva 6β2, 6β1 won, who was the Tier II Runner-up? |
SELECT semi_finalists FROM table_name_81 WHERE runner_up = "alexia dechaume-balleret sandrine testud" | CREATE TABLE table_name_81 (semi_finalists VARCHAR, runner_up VARCHAR) | Who were the semi finalists when Alexia Dechaume-Balleret Sandrine testud was the runner-up? |
SELECT tier FROM table_name_46 WHERE semi_finalists = "sandrine testud mary pierce" AND runner_up = "lisa raymond" | CREATE TABLE table_name_46 (tier VARCHAR, semi_finalists VARCHAR, runner_up VARCHAR) | What tier had a runner-up of Lisa Raymond and a semifinalist of Sandrine Testud Mary Pierce? |
SELECT semi_finalists FROM table_name_92 WHERE runner_up = "alexandra fusai wiltrud probst" | CREATE TABLE table_name_92 (semi_finalists VARCHAR, runner_up VARCHAR) | Who were the semi finalists when the runner-up was Alexandra Fusai Wiltrud Probst? |
SELECT label FROM table_name_77 WHERE date = "april 7, 1967" | CREATE TABLE table_name_77 (label VARCHAR, date VARCHAR) | What is the Label that shows on april 7, 1967? |
SELECT date FROM table_name_91 WHERE country = "uk" AND format = "cd" AND catalog = "edcd 227" | CREATE TABLE table_name_91 (date VARCHAR, catalog VARCHAR, country VARCHAR, format VARCHAR) | What is the Date when the Country shows uk, the Format is cd, and the Catalog of edcd 227? |
SELECT date FROM table_name_65 WHERE catalog = "lp 5060" | CREATE TABLE table_name_65 (date VARCHAR, catalog VARCHAR) | What is the Date for Catalog of lp 5060? |
SELECT date FROM table_name_75 WHERE country = "japan" AND label = "sony" | CREATE TABLE table_name_75 (date VARCHAR, country VARCHAR, label VARCHAR) | What Date was the Country of japan, and a Label of sony? |
SELECT catalog FROM table_name_46 WHERE format = "lp" AND country = "us" AND label = "sundazed" AND date = "2006" | CREATE TABLE table_name_46 (catalog VARCHAR, date VARCHAR, label VARCHAR, format VARCHAR, country VARCHAR) | What is the Catalog with a Format of lp, a Country of us, a Label of sundazed, and a Date of 2006? |
SELECT label FROM table_name_73 WHERE country = "uk" AND catalog = "bpg 62988" | CREATE TABLE table_name_73 (label VARCHAR, country VARCHAR, catalog VARCHAR) | What is the Label name that has a Country of uk and the Catalog is bpg 62988? |
SELECT lyrics__l____music__m_ FROM table_name_16 WHERE position > 3 AND place = "1st" | CREATE TABLE table_name_16 (lyrics__l____music__m_ VARCHAR, position VARCHAR, place VARCHAR) | What were the Lyrics (l) and Music (m) for the Artist who was in a Position higher than 3 and who earned 1st Place? |
SELECT MAX(rank) FROM table_name_24 WHERE silver < 1 AND bronze > 1 | CREATE TABLE table_name_24 (rank INTEGER, silver VARCHAR, bronze VARCHAR) | What is the Rank of the Nation with 0 Silver and more than 1 Bronze? |
SELECT COUNT(total) FROM table_name_89 WHERE silver = 1 AND gold < 0 | CREATE TABLE table_name_89 (total VARCHAR, silver VARCHAR, gold VARCHAR) | What is the Total medals for the Nation with 1 Silver and 0 Golds? |
SELECT potential FROM table_name_81 WHERE period = 5 AND element = "antimony" | CREATE TABLE table_name_81 (potential VARCHAR, period VARCHAR, element VARCHAR) | Which potential's period 5 is 4 and has an element of antimony? |
SELECT MIN(period) FROM table_name_28 WHERE element = "ruthenium" | CREATE TABLE table_name_28 (period INTEGER, element VARCHAR) | Which lowest period's element is ruthenium? |
SELECT MAX(period) FROM table_name_19 WHERE element = "platinum" | CREATE TABLE table_name_19 (period INTEGER, element VARCHAR) | Which highest period's element is platinum? |
SELECT venue FROM table_name_40 WHERE result = "lost" | CREATE TABLE table_name_40 (venue VARCHAR, result VARCHAR) | What is the Venue with a Result that is lost? |
SELECT MAX(administrative_panel) FROM table_name_14 WHERE cultural_and_educational_panel = 2 AND industrial_and_commercial_panel > 4 | CREATE TABLE table_name_14 (administrative_panel INTEGER, cultural_and_educational_panel VARCHAR, industrial_and_commercial_panel VARCHAR) | What is the highest administrative panel with a cultural and educational panel of 2 plus an industrial and commercial panel larger than 4? |
SELECT COUNT(national_university_of_ireland) FROM table_name_17 WHERE industrial_and_commercial_panel < 1 AND cultural_and_educational_panel > 0 | CREATE TABLE table_name_17 (national_university_of_ireland VARCHAR, industrial_and_commercial_panel VARCHAR, cultural_and_educational_panel VARCHAR) | What is the total for National University of Ireland with an industrial and commercial panel less than 1, and the cultural and educational panel bigger than 0? |
SELECT AVG(administrative_panel) FROM table_name_77 WHERE cultural_and_educational_panel > 1 AND industrial_and_commercial_panel < 4 | CREATE TABLE table_name_77 (administrative_panel INTEGER, cultural_and_educational_panel VARCHAR, industrial_and_commercial_panel VARCHAR) | What is the administrative panel average when the cultural and educational panel is greater than 1 and the industrial and commercial panel less than 4? |
SELECT MAX(administrative_panel) FROM table_name_37 WHERE nominated_by_the_taoiseach > 3 AND agricultural_panel = 5 AND cultural_and_educational_panel > 2 | CREATE TABLE table_name_37 (administrative_panel INTEGER, cultural_and_educational_panel VARCHAR, nominated_by_the_taoiseach VARCHAR, agricultural_panel VARCHAR) | What is the biggest administrative panel with a nominated by the Taoiseach greater than 3 and an argricultural panel of 5, plust a cultural and educational panel larger than 2? |
SELECT MIN(cultural_and_educational_panel) FROM table_name_74 WHERE nominated_by_the_taoiseach < 5 AND total > 19 | CREATE TABLE table_name_74 (cultural_and_educational_panel INTEGER, nominated_by_the_taoiseach VARCHAR, total VARCHAR) | What is the smallest cultural and educational panel with a nominated by the Taoiseach less than 5 and the total greater than 19? |
SELECT AVG(industrial_and_commercial_panel) FROM table_name_22 WHERE cultural_and_educational_panel < 0 | CREATE TABLE table_name_22 (industrial_and_commercial_panel INTEGER, cultural_and_educational_panel INTEGER) | With the cultural and educational panel less than 0 what is the average industrial and commercial panel? |
SELECT COUNT(silver) FROM table_name_22 WHERE total = 5 AND gold > 3 | CREATE TABLE table_name_22 (silver VARCHAR, total VARCHAR, gold VARCHAR) | What is the total number of silver medals for nations with 5 total medals and more than 3 gold medals? |
SELECT label FROM table_name_18 WHERE date = 1969 | CREATE TABLE table_name_18 (label VARCHAR, date VARCHAR) | What was the label in 1969? |
SELECT commissioned FROM table_name_29 WHERE nvr_page = "mcm02" | CREATE TABLE table_name_29 (commissioned VARCHAR, nvr_page VARCHAR) | What is the Commissioned date of the ship in NVR Page MCM02? |
SELECT nvr_page FROM table_name_6 WHERE home_port = "sasebo, japan" | CREATE TABLE table_name_6 (nvr_page VARCHAR, home_port VARCHAR) | What is the NVR Page of the ship with a Home Port of Sasebo, Japan? |
SELECT COUNT(week) FROM table_name_34 WHERE attendance = 54 OFFSET 015 | CREATE TABLE table_name_34 (week VARCHAR, attendance VARCHAR) | Which week's game was attended by 54,015 people? |
SELECT date FROM table_name_33 WHERE week < 4 AND attendance > 54 OFFSET 015 | CREATE TABLE table_name_33 (date VARCHAR, week VARCHAR, attendance VARCHAR) | What date was the game that was before week 4 and was attended by over 54,015 people ? |
SELECT venue FROM table_name_19 WHERE result = "eng by 4 wkts" | CREATE TABLE table_name_19 (venue VARCHAR, result VARCHAR) | In what venues was the match with a final result of Eng by 4 wkts? |
SELECT Running AS time FROM table_name_46 WHERE channel = "bbc four" AND date = "23 march 2008" | CREATE TABLE table_name_46 (Running VARCHAR, channel VARCHAR, date VARCHAR) | What is the running time of the transmission on bbc four channels on 23 March 2008? |
SELECT notes FROM table_name_15 WHERE channel = "bbc four" AND time = "22:30" | CREATE TABLE table_name_15 (notes VARCHAR, channel VARCHAR, time VARCHAR) | What is the notes of the transmission on channel bbc four and a time of 22:30? |
SELECT channel FROM table_name_74 WHERE date = "28 december 2008" | CREATE TABLE table_name_74 (channel VARCHAR, date VARCHAR) | Which channel was on 28 December 2008? |
SELECT channel FROM table_name_51 WHERE time = "03:40" | CREATE TABLE table_name_51 (channel VARCHAR, time VARCHAR) | What is the channel with a 03:40 time? |
SELECT other_b FROM table_name_96 WHERE fa_cup = "3 (17)" | CREATE TABLE table_name_96 (other_b VARCHAR, fa_cup VARCHAR) | What is the Other b when the FA Cup shows 3 (17)? |
SELECT total FROM table_name_39 WHERE league_a = "79 (221)" | CREATE TABLE table_name_39 (total VARCHAR, league_a VARCHAR) | What is the Total when the league shows 79 (221)? |
SELECT name FROM table_name_40 WHERE league_cup = "0 (0)" AND fa_cup = "12 (14)" | CREATE TABLE table_name_40 (name VARCHAR, league_cup VARCHAR, fa_cup VARCHAR) | What is the Name when the League Cup shows 0 (0), and the FA Cup is 12 (14)? |
SELECT league_a FROM table_name_2 WHERE years = "1952β1960" | CREATE TABLE table_name_2 (league_a VARCHAR, years VARCHAR) | What is the League for 1952β1960? |
SELECT league_a FROM table_name_47 WHERE fa_cup = "6 (20)" | CREATE TABLE table_name_47 (league_a VARCHAR, fa_cup VARCHAR) | What shows for the League when the FA Cup is 6 (20)? |
SELECT club FROM table_name_97 WHERE player = "hristo stoitchkov" | CREATE TABLE table_name_97 (club VARCHAR, player VARCHAR) | What club wast he player hristo stoitchkov from? |
SELECT content FROM table_name_20 WHERE television_service = "la sorgente sat 3" | CREATE TABLE table_name_20 (content VARCHAR, television_service VARCHAR) | What is the content for la sorgente sat 3? |
SELECT language FROM table_name_3 WHERE television_service = "telemarket for you" | CREATE TABLE table_name_3 (language VARCHAR, television_service VARCHAR) | What language is telemarket for you? |
SELECT language FROM table_name_59 WHERE content = "televendita" AND television_service = "telemarket for you" | CREATE TABLE table_name_59 (language VARCHAR, content VARCHAR, television_service VARCHAR) | What language is telemarket for you with a content of televendita? |
SELECT team FROM table_name_81 WHERE points < 6 AND year > 1969 | CREATE TABLE table_name_81 (team VARCHAR, points VARCHAR, year VARCHAR) | Which team has points less than 6 in a year after 1969? |
SELECT wins FROM table_name_35 WHERE points < 6 AND class = "350cc" | CREATE TABLE table_name_35 (wins VARCHAR, points VARCHAR, class VARCHAR) | How many wins for the team with points less than 6 and a 350cc class? |
SELECT MIN(points) FROM table_name_18 WHERE rank = "36th" | CREATE TABLE table_name_18 (points INTEGER, rank VARCHAR) | What is the lowest points for 36th rank? |
SELECT rank FROM table_name_8 WHERE team = "yamaha" AND points = 3 | CREATE TABLE table_name_8 (rank VARCHAR, team VARCHAR, points VARCHAR) | What is team Yamaha with 3 points ranked? |
SELECT years FROM table_name_83 WHERE rank < 8 AND matches = 447 | CREATE TABLE table_name_83 (years VARCHAR, rank VARCHAR, matches VARCHAR) | What years did the player ranked less than 8 and had 447 matches play? |
SELECT time FROM table_name_98 WHERE record = "15-7" | CREATE TABLE table_name_98 (time VARCHAR, record VARCHAR) | What is the Time with a Record that is 15-7? |
SELECT event FROM table_name_85 WHERE time = "3:06" | CREATE TABLE table_name_85 (event VARCHAR, time VARCHAR) | What is the Event with a Time that is 3:06? |
SELECT silver FROM table_name_78 WHERE nation = "turkey" | CREATE TABLE table_name_78 (silver VARCHAR, nation VARCHAR) | How many silvers did Turkey get? |
SELECT position FROM table_name_98 WHERE player = "denard walker" | CREATE TABLE table_name_98 (position VARCHAR, player VARCHAR) | What position does Denard Walker play? |
SELECT pick__number FROM table_name_7 WHERE position = "wide receiver" AND college = "michigan state" | CREATE TABLE table_name_7 (pick__number VARCHAR, position VARCHAR, college VARCHAR) | What was the pick number for the wide receiver drafted from Michigan State? |
SELECT player FROM table_name_38 WHERE college = "kent state" | CREATE TABLE table_name_38 (player VARCHAR, college VARCHAR) | Which player came from Kent State? |
SELECT COUNT(bronze) FROM table_name_28 WHERE silver = 4 AND gold > 2 | CREATE TABLE table_name_28 (bronze VARCHAR, silver VARCHAR, gold VARCHAR) | What is the total number of bronze medals, and 4 silver medals, and 2 gold medals? |
SELECT tournament FROM table_name_9 WHERE score = "2β6 6β4 [10β8]" | CREATE TABLE table_name_9 (tournament VARCHAR, score VARCHAR) | Which Tournament has a score of 2β6 6β4 [10β8]? |
SELECT tournament FROM table_name_73 WHERE score = "6(4)β7 2β6" | CREATE TABLE table_name_73 (tournament VARCHAR, score VARCHAR) | Which Tournament has a Score of 6(4)β7 2β6? |
SELECT score FROM table_name_46 WHERE opponents_in_the_final = "vitalia diatchenko irena pavlovic" | CREATE TABLE table_name_46 (score VARCHAR, opponents_in_the_final VARCHAR) | What is the Score of the match where Opponents in the Final was Vitalia Diatchenko Irena Pavlovic? |
SELECT high_rebounds FROM table_name_71 WHERE game = 62 | CREATE TABLE table_name_71 (high_rebounds VARCHAR, game VARCHAR) | What is the High rebounds with a Game that is 62? |
SELECT team FROM table_name_35 WHERE score = "l 79β92 (ot)" | CREATE TABLE table_name_35 (team VARCHAR, score VARCHAR) | What is the Team with a Score that is l 79β92 (ot)? |
SELECT coach FROM table_name_4 WHERE details = "2012 gold coast titans season" | CREATE TABLE table_name_4 (coach VARCHAR, details VARCHAR) | Who is the coach of the 2012 Gold Coast Titans season? |
SELECT coach FROM table_name_8 WHERE details = "2010 gold coast titans season" | CREATE TABLE table_name_8 (coach VARCHAR, details VARCHAR) | Who is the coach of the 2010 Gold Coast Titans season? |
SELECT captain_s_ FROM table_name_75 WHERE competition = "2012 nrl season" | CREATE TABLE table_name_75 (captain_s_ VARCHAR, competition VARCHAR) | Who is the captain of the 2012 NRL season competition? |
SELECT COUNT(wins) FROM table_name_55 WHERE tournament = "pga championship" AND events > 10 | CREATE TABLE table_name_55 (wins VARCHAR, tournament VARCHAR, events VARCHAR) | How many wins were in the PGA Championship when there were more than 10 events? |
SELECT MIN(cuts_made) FROM table_name_59 WHERE wins > 0 | CREATE TABLE table_name_59 (cuts_made INTEGER, wins INTEGER) | What is the smallest number of cuts when there were more than 0 wins? |
SELECT COUNT(rank) FROM table_name_51 WHERE years = "1996β2007" AND goals > 108 | CREATE TABLE table_name_51 (rank VARCHAR, years VARCHAR, goals VARCHAR) | What is the total number of Rank for 1996β2007, when there are more than 108 goals? |
SELECT MIN(rank) FROM table_name_50 WHERE goals > 124 AND name = "jeff cunningham" | CREATE TABLE table_name_50 (rank INTEGER, goals VARCHAR, name VARCHAR) | What is the lowest Rank when the goals are less than 124 for Jeff Cunningham? |
SELECT COUNT(rank) FROM table_name_3 WHERE goals = 100 AND matches < 300 | CREATE TABLE table_name_3 (rank VARCHAR, goals VARCHAR, matches VARCHAR) | What is the total number of Rank with 100 goals, and less than 300 matches? |
SELECT MAX(rank) FROM table_name_67 WHERE name = "jason kreis" AND matches < 305 | CREATE TABLE table_name_67 (rank INTEGER, name VARCHAR, matches VARCHAR) | What is the highest Rank for Jason Kreis, with less than 305 matches? |
SELECT MIN(wins) FROM table_name_41 WHERE top_10 > 8 | CREATE TABLE table_name_41 (wins INTEGER, top_10 INTEGER) | What is the least number of wins when the top 10 is more than 8? |
SELECT COUNT(cuts_made) FROM table_name_45 WHERE top_5 = 2 AND events = 12 | CREATE TABLE table_name_45 (cuts_made VARCHAR, top_5 VARCHAR, events VARCHAR) | What is the sum of cuts made when the top-5 is 2, and there are 12 events? |
SELECT AVG(top_5) FROM table_name_61 WHERE top_25 = 1 AND wins < 0 | CREATE TABLE table_name_61 (top_5 INTEGER, top_25 VARCHAR, wins VARCHAR) | What is the mean number in the top 5 when the top 25 is 1 and there's fewer than 0 wins? |
SELECT AVG(events) FROM table_name_51 WHERE top_5 = 1 | CREATE TABLE table_name_51 (events INTEGER, top_5 VARCHAR) | What is the mean number of events when top-5 is 1? |
SELECT SUM(top_25) FROM table_name_24 WHERE events > 91 | CREATE TABLE table_name_24 (top_25 INTEGER, events INTEGER) | How many top-25s are associated with more than 91 events? |
SELECT MIN(wins) FROM table_name_40 WHERE top_10 > 9 | CREATE TABLE table_name_40 (wins INTEGER, top_10 INTEGER) | What is the lowest Wins with a Top-10 that is larger than 9? |
SELECT AVG(cuts_made) FROM table_name_15 WHERE top_10 > 9 | CREATE TABLE table_name_15 (cuts_made INTEGER, top_10 INTEGER) | What is the average Cuts that were made with a Top-10 that is larger than 9? |
SELECT record FROM table_name_51 WHERE attendance = "64,053" | CREATE TABLE table_name_51 (record VARCHAR, attendance VARCHAR) | Which record has 64,053 as the attendance? |
SELECT date FROM table_name_13 WHERE game_site = "rich stadium" AND week = 1 | CREATE TABLE table_name_13 (date VARCHAR, game_site VARCHAR, week VARCHAR) | Which date has rich stadium as the game site for week 1? |
SELECT date FROM table_name_22 WHERE week = 1 | CREATE TABLE table_name_22 (date VARCHAR, week VARCHAR) | Which date has 1 as the week? |
Subsets and Splits