instruction
stringlengths
67
299
input
stringlengths
88
550
output
stringlengths
32
484
Write a SQL query that answers the following question: Tell me the date for format of cd/dvd
The relevant table was constructed using the following SQL : CREATE TABLE table_name_88 (date VARCHAR, format VARCHAR)
SELECT date FROM table_name_88 WHERE format = "cd/dvd"
Write a SQL query that answers the following question: Tell me the format for european union
The relevant table was constructed using the following SQL : CREATE TABLE table_name_99 (format VARCHAR, region VARCHAR)
SELECT format FROM table_name_99 WHERE region = "european union"
Write a SQL query that answers the following question: Tell me the catalog for date larger than 2004
The relevant table was constructed using the following SQL : CREATE TABLE table_name_72 (catalog VARCHAR, date INTEGER)
SELECT catalog FROM table_name_72 WHERE date > 2004
Write a SQL query that answers the following question: I want the lowest date for catalog of 6561910008-1
The relevant table was constructed using the following SQL : CREATE TABLE table_name_87 (date INTEGER, catalog VARCHAR)
SELECT MIN(date) FROM table_name_87 WHERE catalog = "6561910008-1"
Write a SQL query that answers the following question: What date was there a crowd larger than 30,343?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_97 (date VARCHAR, crowd INTEGER)
SELECT date FROM table_name_97 WHERE crowd > 30 OFFSET 343
Write a SQL query that answers the following question: What was the lowest Crowd total from a game in which Essendon was the Away team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_35 (crowd INTEGER, away_team VARCHAR)
SELECT MIN(crowd) FROM table_name_35 WHERE away_team = "essendon"
Write a SQL query that answers the following question: Which Venue was used when the Home team was geelong?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_47 (venue VARCHAR, home_team VARCHAR)
SELECT venue FROM table_name_47 WHERE home_team = "geelong"
Write a SQL query that answers the following question: What is the highest scored in the 2010 east asian football championship?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_66 (scored INTEGER, competition VARCHAR)
SELECT MAX(scored) FROM table_name_66 WHERE competition = "2010 east asian football championship"
Write a SQL query that answers the following question: Which country is Wellington located in?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_48 (country VARCHAR, city VARCHAR)
SELECT country FROM table_name_48 WHERE city = "wellington"
Write a SQL query that answers the following question: What label is in download format in the United States?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_42 (label VARCHAR, region VARCHAR, format VARCHAR)
SELECT label FROM table_name_42 WHERE region = "united states" AND format = "download"
Write a SQL query that answers the following question: What label is in download format in the United States?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_88 (label VARCHAR, region VARCHAR, format VARCHAR)
SELECT label FROM table_name_88 WHERE region = "united states" AND format = "download"
Write a SQL query that answers the following question: What label has RTRADLP 346 as catalogue?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_90 (label VARCHAR, catalogue VARCHAR)
SELECT label FROM table_name_90 WHERE catalogue = "rtradlp 346"
Write a SQL query that answers the following question: What label has 22 January 2008 date?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_8 (label VARCHAR, date VARCHAR)
SELECT label FROM table_name_8 WHERE date = "22 january 2008"
Write a SQL query that answers the following question: What is the label for catalogue of RT-346-5?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_93 (label VARCHAR, catalogue VARCHAR)
SELECT label FROM table_name_93 WHERE catalogue = "rt-346-5"
Write a SQL query that answers the following question: What position is mentioned for Rice school?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_34 (position VARCHAR, school_club_team VARCHAR)
SELECT position FROM table_name_34 WHERE school_club_team = "rice"
Write a SQL query that answers the following question: What is the average round for Wisconsin when the overall is larger than 238 and there is a defensive end?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_87 (round INTEGER, school_club_team VARCHAR, overall VARCHAR, position VARCHAR)
SELECT AVG(round) FROM table_name_87 WHERE overall > 238 AND position = "defensive end" AND school_club_team = "wisconsin"
Write a SQL query that answers the following question: What is the average round when there is a defensive back and an overall smaller than 199?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_49 (round INTEGER, position VARCHAR, overall VARCHAR)
SELECT AVG(round) FROM table_name_49 WHERE position = "defensive back" AND overall < 199
Write a SQL query that answers the following question: What was the date of game with a score of 42-6?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_23 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_23 WHERE score = "42-6"
Write a SQL query that answers the following question: What stadium was the game played at when the result was hunter mariners def. sheffield eagles?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_43 (stadium VARCHAR, result VARCHAR)
SELECT stadium FROM table_name_43 WHERE result = "hunter mariners def. sheffield eagles"
Write a SQL query that answers the following question: What city has a Result of brisbane broncos def. halifax blue sox?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_22 (city VARCHAR, result VARCHAR)
SELECT city FROM table_name_22 WHERE result = "brisbane broncos def. halifax blue sox"
Write a SQL query that answers the following question: Which player was drafted after round 9 and number 464 overall?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_83 (player VARCHAR, round VARCHAR, overall VARCHAR)
SELECT player FROM table_name_83 WHERE round > 9 AND overall = 464
Write a SQL query that answers the following question: What was James Reed's draft round number?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_90 (round VARCHAR, player VARCHAR)
SELECT COUNT(round) FROM table_name_90 WHERE player = "james reed"
Write a SQL query that answers the following question: What was the overall draft number of Tom Fleming, a wide receiver?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_28 (overall VARCHAR, position VARCHAR, player VARCHAR)
SELECT COUNT(overall) FROM table_name_28 WHERE position = "wide receiver" AND player = "tom fleming"
Write a SQL query that answers the following question: Which player is from Dartmouth?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_41 (player VARCHAR, school_club_team VARCHAR)
SELECT player FROM table_name_41 WHERE school_club_team = "dartmouth"
Write a SQL query that answers the following question: What position does the player from tulsa play?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_17 (position VARCHAR, school_country VARCHAR)
SELECT position FROM table_name_17 WHERE school_country = "tulsa"
Write a SQL query that answers the following question: What is the sum of Magnitude on february 12, 1953?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_44 (magnitude INTEGER, date VARCHAR)
SELECT SUM(magnitude) FROM table_name_44 WHERE date = "february 12, 1953"
Write a SQL query that answers the following question: What was the final score of a baseball game that happened before 2005?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_41 (final_score VARCHAR, sport VARCHAR, year VARCHAR)
SELECT final_score FROM table_name_41 WHERE sport = "baseball" AND year < 2005
Write a SQL query that answers the following question: What venue did Richmond play as the away team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_29 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_29 WHERE away_team = "richmond"
Write a SQL query that answers the following question: What is the team of Essendon's score in the game where they were the home team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_92 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_92 WHERE home_team = "essendon"
Write a SQL query that answers the following question: Who is the away side when st kilda is the home side?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_59 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_59 WHERE home_team = "st kilda"
Write a SQL query that answers the following question: What is the away side score when footscray is the home side?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_38 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team AS score FROM table_name_38 WHERE home_team = "footscray"
Write a SQL query that answers the following question: What is the home team's score at kardinia park?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_85 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_85 WHERE venue = "kardinia park"
Write a SQL query that answers the following question: What was the lowest crowd seen at a game that Richmond was the Away team in?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_57 (crowd INTEGER, away_team VARCHAR)
SELECT MIN(crowd) FROM table_name_57 WHERE away_team = "richmond"
Write a SQL query that answers the following question: What was the highest crowd count seen in the Windy Hill venue?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_48 (crowd INTEGER, venue VARCHAR)
SELECT MAX(crowd) FROM table_name_48 WHERE venue = "windy hill"
Write a SQL query that answers the following question: What was the score of the Away team that played against the Home team of Fitzroy?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_10 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team AS score FROM table_name_10 WHERE home_team = "fitzroy"
Write a SQL query that answers the following question: Which was the lowest overall that Wisconsin's team managed?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_78 (overall INTEGER, school_club_team VARCHAR)
SELECT MIN(overall) FROM table_name_78 WHERE school_club_team = "wisconsin"
Write a SQL query that answers the following question: Which team was Roy de Walt a player on?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_20 (school_club_team VARCHAR, player VARCHAR)
SELECT school_club_team FROM table_name_20 WHERE player = "roy de walt"
Write a SQL query that answers the following question: In which round did Paul McDonald have an overall greater than 109?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_22 (round INTEGER, player VARCHAR, overall VARCHAR)
SELECT MAX(round) FROM table_name_22 WHERE player = "paul mcdonald" AND overall > 109
Write a SQL query that answers the following question: What is the total overall in round 1, in which Charles White was a player?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_2 (overall INTEGER, player VARCHAR, round VARCHAR)
SELECT SUM(overall) FROM table_name_2 WHERE player = "charles white" AND round < 1
Write a SQL query that answers the following question: What is the name of a running back in a round before round 3?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_4 (player VARCHAR, round VARCHAR, position VARCHAR)
SELECT player FROM table_name_4 WHERE round < 3 AND position = "running back"
Write a SQL query that answers the following question: What is the win/loss percentage with wins of 63 and losses smaller than 76?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_77 (w_l__percentage VARCHAR, wins VARCHAR, losses VARCHAR)
SELECT w_l__percentage FROM table_name_77 WHERE wins = 63 AND losses < 76
Write a SQL query that answers the following question: What is the away team score when the home team is Geelong?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_25 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team AS score FROM table_name_25 WHERE home_team = "geelong"
Write a SQL query that answers the following question: What was the highest order amount in weeks prier to 15 and a major less than 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_55 (order INTEGER, weeks VARCHAR, majors VARCHAR)
SELECT MAX(order) FROM table_name_55 WHERE weeks < 15 AND majors < 1
Write a SQL query that answers the following question: What is the position of the player from Temple?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_7 (position VARCHAR, school_country VARCHAR)
SELECT position FROM table_name_7 WHERE school_country = "temple"
Write a SQL query that answers the following question: Which player is associated with Temple?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_22 (player VARCHAR, school_country VARCHAR)
SELECT player FROM table_name_22 WHERE school_country = "temple"
Write a SQL query that answers the following question: Which nationality is associated with Temple?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_72 (nationality VARCHAR, school_country VARCHAR)
SELECT nationality FROM table_name_72 WHERE school_country = "temple"
Write a SQL query that answers the following question: How many goals were achieved when Chievo was the club and the debut year was before 2002?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_71 (goals VARCHAR, current_club VARCHAR, debut_year VARCHAR)
SELECT COUNT(goals) FROM table_name_71 WHERE current_club = "chievo" AND debut_year < 2002
Write a SQL query that answers the following question: How many goals occurred with Diego Milito in a debut year later than 2008?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_40 (goals VARCHAR, name VARCHAR, debut_year VARCHAR)
SELECT COUNT(goals) FROM table_name_40 WHERE name = "diego milito" AND debut_year > 2008
Write a SQL query that answers the following question: Who is the home team at the Punt Road Oval?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_99 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_99 WHERE venue = "punt road oval"
Write a SQL query that answers the following question: Who is the away team at Windy Hill?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_69 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_69 WHERE venue = "windy hill"
Write a SQL query that answers the following question: What is the date of the game that had a crowd larger than 25,000?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_3 (date VARCHAR, crowd INTEGER)
SELECT date FROM table_name_3 WHERE crowd > 25 OFFSET 000
Write a SQL query that answers the following question: What was South Melbourne's score as the home team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_19 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_19 WHERE home_team = "south melbourne"
Write a SQL query that answers the following question: What was the largest crowd of a game where Collingwood was the away team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_52 (crowd INTEGER, away_team VARCHAR)
SELECT MAX(crowd) FROM table_name_52 WHERE away_team = "collingwood"
Write a SQL query that answers the following question: What's the lowest round with the opponent John Howard that had a method of Decision (unanimous)?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_21 (round INTEGER, method VARCHAR, opponent VARCHAR)
SELECT MIN(round) FROM table_name_21 WHERE method = "decision (unanimous)" AND opponent = "john howard"
Write a SQL query that answers the following question: What's the time for the match with a record of 2-0?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_74 (time VARCHAR, record VARCHAR)
SELECT time FROM table_name_74 WHERE record = "2-0"
Write a SQL query that answers the following question: Where was the match with a method of submission (standing guillotine choke)?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_92 (location VARCHAR, method VARCHAR)
SELECT location FROM table_name_92 WHERE method = "submission (standing guillotine choke)"
Write a SQL query that answers the following question: What language is the moviein that is on UMP movies network through Sky service?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_87 (language VARCHAR, network VARCHAR, genre VARCHAR, service VARCHAR)
SELECT language FROM table_name_87 WHERE genre = "movies" AND service = "sky" AND network = "ump movies"
Write a SQL query that answers the following question: What language is the movie in that is on SAB network through Sky service?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_97 (language VARCHAR, network VARCHAR, service VARCHAR)
SELECT language FROM table_name_97 WHERE network = "sab" AND service = "sky"
Write a SQL query that answers the following question: What was the overall pick for the player who was a guard and had a round less than 9?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_4 (overall INTEGER, position VARCHAR, round VARCHAR)
SELECT AVG(overall) FROM table_name_4 WHERE position = "guard" AND round < 9
Write a SQL query that answers the following question: What was the lowest round number that had an overall pick up 92?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_9 (round INTEGER, overall VARCHAR)
SELECT MIN(round) FROM table_name_9 WHERE overall = 92
Write a SQL query that answers the following question: What open source movie has a CC License of by-nc-sa 1.0?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_90 (open_source_movie VARCHAR, cc_license VARCHAR)
SELECT open_source_movie FROM table_name_90 WHERE cc_license = "by-nc-sa 1.0"
Write a SQL query that answers the following question: Which venue had the result 7-1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_50 (venue VARCHAR, result VARCHAR)
SELECT venue FROM table_name_50 WHERE result = "7-1"
Write a SQL query that answers the following question: What date was the Competition of rothmans cup?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_67 (date VARCHAR, competition VARCHAR)
SELECT date FROM table_name_67 WHERE competition = "rothmans cup"
Write a SQL query that answers the following question: What was the result of the Competition of friendly?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_61 (result VARCHAR, competition VARCHAR)
SELECT result FROM table_name_61 WHERE competition = "friendly"
Write a SQL query that answers the following question: Which competition was played on 8 June 2005?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_90 (competition VARCHAR, date VARCHAR)
SELECT competition FROM table_name_90 WHERE date = "8 june 2005"
Write a SQL query that answers the following question: Which competition had the score 1-0?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_4 (competition VARCHAR, score VARCHAR)
SELECT competition FROM table_name_4 WHERE score = "1-0"
Write a SQL query that answers the following question: Timsah arena is in what country?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_32 (country VARCHAR, stadium VARCHAR)
SELECT country FROM table_name_32 WHERE stadium = "timsah arena"
Write a SQL query that answers the following question: What country is Relax-Gam from?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_83 (country VARCHAR, team VARCHAR)
SELECT country FROM table_name_83 WHERE team = "relax-gam"
Write a SQL query that answers the following question: Who is Gerolsteiner's cyclist?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_89 (cyclist VARCHAR, team VARCHAR)
SELECT cyclist FROM table_name_89 WHERE team = "gerolsteiner"
Write a SQL query that answers the following question: What is Davide Rebellin' UCI ProTour Points?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_33 (uci_protour_points VARCHAR, cyclist VARCHAR)
SELECT uci_protour_points FROM table_name_33 WHERE cyclist = "davide rebellin"
Write a SQL query that answers the following question: What was North Melbourne's score when they were the home team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_22 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_22 WHERE home_team = "north melbourne"
Write a SQL query that answers the following question: Where did Footscray play as the away team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_76 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_76 WHERE away_team = "footscray"
Write a SQL query that answers the following question: What was the away team's score in the match at Lake Oval?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_77 (away_team VARCHAR, venue VARCHAR)
SELECT away_team AS score FROM table_name_77 WHERE venue = "lake oval"
Write a SQL query that answers the following question: What was the sum of the crowds that watched Fitzroy play as the away team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_81 (crowd INTEGER, away_team VARCHAR)
SELECT SUM(crowd) FROM table_name_81 WHERE away_team = "fitzroy"
Write a SQL query that answers the following question: What is the sum of rank with years 1996–2012 and apps greater than 340?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_15 (rank INTEGER, years VARCHAR, apps VARCHAR)
SELECT SUM(rank) FROM table_name_15 WHERE years = "1996–2012" AND apps > 340
Write a SQL query that answers the following question: What was the away team that faced Carlton?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_6 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_6 WHERE home_team = "carlton"
Write a SQL query that answers the following question: What is the total crowd size that saw Geelong play as the away team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_17 (crowd VARCHAR, away_team VARCHAR)
SELECT COUNT(crowd) FROM table_name_17 WHERE away_team = "geelong"
Write a SQL query that answers the following question: How many wins did Hobbs had a 15th finish at poles 0?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_89 (wins VARCHAR, poles VARCHAR, final_placing VARCHAR)
SELECT wins FROM table_name_89 WHERE poles = "0" AND final_placing = "15th"
Write a SQL query that answers the following question: What are the points for the GP3 series with 2 podiums?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_92 (points VARCHAR, series VARCHAR, podiums VARCHAR)
SELECT points FROM table_name_92 WHERE series = "gp3 series" AND podiums = "2"
Write a SQL query that answers the following question: Which races have #2 podiums?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_6 (races VARCHAR, podiums VARCHAR)
SELECT races FROM table_name_6 WHERE podiums = "2"
Write a SQL query that answers the following question: What was the 2009 final placing?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_17 (final_placing VARCHAR, season VARCHAR)
SELECT final_placing FROM table_name_17 WHERE season = 2009
Write a SQL query that answers the following question: What was the points with 7 races?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_34 (points VARCHAR, races VARCHAR)
SELECT points FROM table_name_34 WHERE races = "7"
Write a SQL query that answers the following question: What venue had south melbourne as the home team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_90 (venue VARCHAR, home_team VARCHAR)
SELECT venue FROM table_name_90 WHERE home_team = "south melbourne"
Write a SQL query that answers the following question: What venue had collingwood as the away team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_14 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_14 WHERE away_team = "collingwood"
Write a SQL query that answers the following question: What was the home team score when south melbourne was the home team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_49 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_49 WHERE home_team = "south melbourne"
Write a SQL query that answers the following question: What day was south melbourne the away squad?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_70 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_70 WHERE away_team = "melbourne"
Write a SQL query that answers the following question: What position did he finish after 1998 and a note time of 2:31:40?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_71 (position VARCHAR, year VARCHAR, notes VARCHAR)
SELECT position FROM table_name_71 WHERE year > 1998 AND notes = "2:31:40"
Write a SQL query that answers the following question: What venue featured a notes of 2:38:44?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_63 (venue VARCHAR, notes VARCHAR)
SELECT venue FROM table_name_63 WHERE notes = "2:38:44"
Write a SQL query that answers the following question: Who did they play against in a week after 6 and the result was l 30–24?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_32 (opponent VARCHAR, week VARCHAR, result VARCHAR)
SELECT opponent FROM table_name_32 WHERE week > 6 AND result = "l 30–24"
Write a SQL query that answers the following question: What opponent has a Result of w 31–0?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_25 (opponent VARCHAR, result VARCHAR)
SELECT opponent FROM table_name_25 WHERE result = "w 31–0"
Write a SQL query that answers the following question: During which round was the final cornerback drafted for the New England Patriots in 2005?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_7 (round INTEGER, position VARCHAR)
SELECT MAX(round) FROM table_name_7 WHERE position = "cornerback"
Write a SQL query that answers the following question: What dance was Leeza Gibbons the worst dancer for, receiving a score lower than 15?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_9 (best_score INTEGER, worst_dancer VARCHAR, worst_score VARCHAR)
SELECT MIN(best_score) FROM table_name_9 WHERE worst_dancer = "leeza gibbons" AND worst_score < 15
Write a SQL query that answers the following question: What is the worst score for the dance that has Apolo Anton Ohno as the best dancer, and where his best score is larger than 30?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_23 (worst_score INTEGER, best_dancer VARCHAR, best_score VARCHAR)
SELECT SUM(worst_score) FROM table_name_23 WHERE best_dancer = "apolo anton ohno" AND best_score > 30
Write a SQL query that answers the following question: What is the biggest crowd when carlton is the away squad?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_48 (crowd INTEGER, away_team VARCHAR)
SELECT MAX(crowd) FROM table_name_48 WHERE away_team = "carlton"
Write a SQL query that answers the following question: What is the sum of crowd(s) when richmond is the away squad?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_44 (crowd INTEGER, away_team VARCHAR)
SELECT SUM(crowd) FROM table_name_44 WHERE away_team = "richmond"
Write a SQL query that answers the following question: What is the home team's score in the game played at glenferrie oval?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_40 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_40 WHERE venue = "glenferrie oval"
Write a SQL query that answers the following question: What was the result of the event against Nate Mohr?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_57 (res VARCHAR, opponent VARCHAR)
SELECT res FROM table_name_57 WHERE opponent = "nate mohr"
Write a SQL query that answers the following question: When the VFL played Junction Oval what was the home team score?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_45 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_45 WHERE venue = "junction oval"
Write a SQL query that answers the following question: What was away team Geelong's crowd numbers?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_6 (crowd VARCHAR, away_team VARCHAR)
SELECT crowd FROM table_name_6 WHERE away_team = "geelong"
Write a SQL query that answers the following question: What is the date they played against fitzroy?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_10 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_10 WHERE away_team = "fitzroy"