instruction
stringlengths
67
299
input
stringlengths
88
550
output
stringlengths
32
484
Write a SQL query that answers the following question: What is the appearance maximum if the starts is 18?
The relevant table was constructed using the following SQL : CREATE TABLE table_24807406_1 (appearances INTEGER, starts VARCHAR)
SELECT MAX(appearances) FROM table_24807406_1 WHERE starts = 18
Write a SQL query that answers the following question: What are the names of all the players with an average of 15.89?
The relevant table was constructed using the following SQL : CREATE TABLE table_2482547_5 (name VARCHAR, average VARCHAR)
SELECT name FROM table_2482547_5 WHERE average = "15.89"
Write a SQL query that answers the following question: What's the maximum wickets taken by players named Bill Lockwood?
The relevant table was constructed using the following SQL : CREATE TABLE table_2482547_5 (wickets_taken INTEGER, name VARCHAR)
SELECT MAX(wickets_taken) FROM table_2482547_5 WHERE name = "Bill Lockwood"
Write a SQL query that answers the following question: What are all the teams with an average of 15.89?
The relevant table was constructed using the following SQL : CREATE TABLE table_2482547_5 (team_s_ VARCHAR, average VARCHAR)
SELECT team_s_ FROM table_2482547_5 WHERE average = "15.89"
Write a SQL query that answers the following question: Who are all the players who've bowled more than 4969 balls?
The relevant table was constructed using the following SQL : CREATE TABLE table_2482547_5 (name VARCHAR, balls_bowled VARCHAR)
SELECT name FROM table_2482547_5 WHERE balls_bowled = 4969
Write a SQL query that answers the following question: What are the averages for games with 212 wickets taken?
The relevant table was constructed using the following SQL : CREATE TABLE table_2482547_5 (average VARCHAR, wickets_taken VARCHAR)
SELECT average FROM table_2482547_5 WHERE wickets_taken = 212
Write a SQL query that answers the following question: Who was the turbine manufacturer for the Wheatland county?
The relevant table was constructed using the following SQL : CREATE TABLE table_24837750_1 (turbine_manufacturer VARCHAR, county VARCHAR)
SELECT turbine_manufacturer FROM table_24837750_1 WHERE county = "Wheatland"
Write a SQL query that answers the following question: How many turbine manufacturers installed a capacity of 189 MW?
The relevant table was constructed using the following SQL : CREATE TABLE table_24837750_1 (turbine_manufacturer VARCHAR, installed_capacity__mw_ VARCHAR)
SELECT COUNT(turbine_manufacturer) FROM table_24837750_1 WHERE installed_capacity__mw_ = "189"
Write a SQL query that answers the following question: How much capacity was installed in Wheatland?
The relevant table was constructed using the following SQL : CREATE TABLE table_24837750_1 (installed_capacity__mw_ VARCHAR, county VARCHAR)
SELECT installed_capacity__mw_ FROM table_24837750_1 WHERE county = "Wheatland"
Write a SQL query that answers the following question: Who was the turbine manufacturer of the wind farm that started service on 2005?
The relevant table was constructed using the following SQL : CREATE TABLE table_24837750_1 (turbine_manufacturer VARCHAR, date_in_service VARCHAR)
SELECT turbine_manufacturer FROM table_24837750_1 WHERE date_in_service = "2005"
Write a SQL query that answers the following question: When did this wind farm started service with a capacity of 135 MW?
The relevant table was constructed using the following SQL : CREATE TABLE table_24837750_1 (date_in_service VARCHAR, installed_capacity__mw_ VARCHAR)
SELECT date_in_service FROM table_24837750_1 WHERE installed_capacity__mw_ = "135"
Write a SQL query that answers the following question: When did the wind farm in Musselshell started service?
The relevant table was constructed using the following SQL : CREATE TABLE table_24837750_1 (date_in_service VARCHAR, county VARCHAR)
SELECT date_in_service FROM table_24837750_1 WHERE county = "Musselshell"
Write a SQL query that answers the following question: What was the largest attendance at the Rheinstadion?
The relevant table was constructed using the following SQL : CREATE TABLE table_24814477_2 (attendance INTEGER, game_site VARCHAR)
SELECT MAX(attendance) FROM table_24814477_2 WHERE game_site = "Rheinstadion"
Write a SQL query that answers the following question: What week did the Galaxy play the Amsterdam Admirals?
The relevant table was constructed using the following SQL : CREATE TABLE table_24814477_2 (week VARCHAR, opponent VARCHAR)
SELECT week FROM table_24814477_2 WHERE opponent = "Amsterdam Admirals"
Write a SQL query that answers the following question: Who was the opponent in Week 8?
The relevant table was constructed using the following SQL : CREATE TABLE table_24814477_2 (opponent VARCHAR, week VARCHAR)
SELECT opponent FROM table_24814477_2 WHERE week = 8
Write a SQL query that answers the following question: Who was the Class A winner when the Class C winner was David Haynes?
The relevant table was constructed using the following SQL : CREATE TABLE table_24852622_1 (class_a_winner VARCHAR, class_c_winner VARCHAR)
SELECT class_a_winner FROM table_24852622_1 WHERE class_c_winner = "David Haynes"
Write a SQL query that answers the following question: Who was the Class C winner in round 8?
The relevant table was constructed using the following SQL : CREATE TABLE table_24852622_1 (class_c_winner VARCHAR, round VARCHAR)
SELECT class_c_winner FROM table_24852622_1 WHERE round = "8"
Write a SQL query that answers the following question: Who was the Class D winner in round 6?
The relevant table was constructed using the following SQL : CREATE TABLE table_24852622_1 (class_d_winner VARCHAR, round VARCHAR)
SELECT class_d_winner FROM table_24852622_1 WHERE round = "6"
Write a SQL query that answers the following question: What was the circuit in round 2?
The relevant table was constructed using the following SQL : CREATE TABLE table_24852622_1 (circuit VARCHAR, round VARCHAR)
SELECT circuit FROM table_24852622_1 WHERE round = "2"
Write a SQL query that answers the following question: In which round did Roy Salvadori won Class D and Alan Hutcheson won Class B?
The relevant table was constructed using the following SQL : CREATE TABLE table_24853015_1 (round VARCHAR, class_d_winner VARCHAR, class_b_winner VARCHAR)
SELECT round FROM table_24853015_1 WHERE class_d_winner = "Roy Salvadori" AND class_b_winner = "Alan Hutcheson"
Write a SQL query that answers the following question: When did Alan Hutcheson won Class B on round 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_24853015_1 (date VARCHAR, class_b_winner VARCHAR, round VARCHAR)
SELECT date FROM table_24853015_1 WHERE class_b_winner = "Alan Hutcheson" AND round = 1
Write a SQL query that answers the following question: How many field goals did Stacey Thomas have?
The relevant table was constructed using the following SQL : CREATE TABLE table_24850487_5 (field_goals VARCHAR, player VARCHAR)
SELECT field_goals FROM table_24850487_5 WHERE player = "Stacey Thomas"
Write a SQL query that answers the following question: How many assists did the player who had 121 rebounds have?
The relevant table was constructed using the following SQL : CREATE TABLE table_24850487_5 (assists INTEGER, rebounds VARCHAR)
SELECT MAX(assists) FROM table_24850487_5 WHERE rebounds = 121
Write a SQL query that answers the following question: How many field goals did the player who had 8 blocks have?
The relevant table was constructed using the following SQL : CREATE TABLE table_24850487_5 (field_goals INTEGER, blocks VARCHAR)
SELECT MIN(field_goals) FROM table_24850487_5 WHERE blocks = 8
Write a SQL query that answers the following question: How many assists did the player who had 863 minutes have?
The relevant table was constructed using the following SQL : CREATE TABLE table_24850487_5 (assists INTEGER, minutes VARCHAR)
SELECT MIN(assists) FROM table_24850487_5 WHERE minutes = 863
Write a SQL query that answers the following question: How many blocks did the player who had 59 rebounds have?
The relevant table was constructed using the following SQL : CREATE TABLE table_24850487_5 (blocks VARCHAR, rebounds VARCHAR)
SELECT blocks FROM table_24850487_5 WHERE rebounds = 59
Write a SQL query that answers the following question: Who were the opponents that had an attendance of exactly 16115?
The relevant table was constructed using the following SQL : CREATE TABLE table_24852001_2 (opponent VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_24852001_2 WHERE attendance = 16115
Write a SQL query that answers the following question: What was the team record after the Frankfurt Galaxy matchup?
The relevant table was constructed using the following SQL : CREATE TABLE table_24852001_2 (team_record VARCHAR, opponent VARCHAR)
SELECT team_record FROM table_24852001_2 WHERE opponent = "Frankfurt Galaxy"
Write a SQL query that answers the following question: What was the game site for the matchup against the Frankfurt Galaxy?
The relevant table was constructed using the following SQL : CREATE TABLE table_24852001_2 (game_site VARCHAR, opponent VARCHAR)
SELECT game_site FROM table_24852001_2 WHERE opponent = "Frankfurt Galaxy"
Write a SQL query that answers the following question: How many results did the GT1 Winning Team No. 50 Larbre Compétition on the Algarve circuit?
The relevant table was constructed using the following SQL : CREATE TABLE table_24865763_2 (results VARCHAR, circuit VARCHAR, gt1_winning_team VARCHAR)
SELECT COUNT(results) FROM table_24865763_2 WHERE circuit = "Algarve" AND gt1_winning_team = "No. 50 Larbre Compétition"
Write a SQL query that answers the following question: How many winning teams are there on LMP2 if Gabriele Gardel Patrice Goueslard Fernando Rees was the GT1 Winning Team on the Algarve circuit?
The relevant table was constructed using the following SQL : CREATE TABLE table_24865763_2 (lmp2_winning_team VARCHAR, gt1_winning_team VARCHAR, circuit VARCHAR)
SELECT COUNT(lmp2_winning_team) FROM table_24865763_2 WHERE gt1_winning_team = "Gabriele Gardel Patrice Goueslard Fernando Rees" AND circuit = "Algarve"
Write a SQL query that answers the following question: Who was the GT2 Winning Team if Greg Mansell Leo Mansell was the LMP1 Winning Team?
The relevant table was constructed using the following SQL : CREATE TABLE table_24865763_2 (gt2_winning_team VARCHAR, lmp1_winning_team VARCHAR)
SELECT gt2_winning_team FROM table_24865763_2 WHERE lmp1_winning_team = "Greg Mansell Leo Mansell"
Write a SQL query that answers the following question: What was the maximum round where Marc Lieb Richard Lietz was on the GT2 Winning Team?
The relevant table was constructed using the following SQL : CREATE TABLE table_24865763_2 (rnd INTEGER, gt2_winning_team VARCHAR)
SELECT MAX(rnd) FROM table_24865763_2 WHERE gt2_winning_team = "Marc Lieb Richard Lietz"
Write a SQL query that answers the following question: How many won the LMP1 on round 4 if No. 42 Strakka Racing was the LMP2 Winning Team?
The relevant table was constructed using the following SQL : CREATE TABLE table_24865763_2 (lmp1_winning_team VARCHAR, rnd VARCHAR, lmp2_winning_team VARCHAR)
SELECT COUNT(lmp1_winning_team) FROM table_24865763_2 WHERE rnd = 4 AND lmp2_winning_team = "No. 42 Strakka Racing"
Write a SQL query that answers the following question: In what round did Mike Newton Thomas Erdos Ben Collins won the LMP2?
The relevant table was constructed using the following SQL : CREATE TABLE table_24865763_2 (rnd VARCHAR, lmp2_winning_team VARCHAR)
SELECT rnd FROM table_24865763_2 WHERE lmp2_winning_team = "Mike Newton Thomas Erdos Ben Collins"
Write a SQL query that answers the following question: How many blocks did tye'sha fluker have?
The relevant table was constructed using the following SQL : CREATE TABLE table_24856332_4 (blocks INTEGER, player VARCHAR)
SELECT MIN(blocks) FROM table_24856332_4 WHERE player = "Tye'sha Fluker"
Write a SQL query that answers the following question: What is the highest number of steals for a player with 324 minutes?
The relevant table was constructed using the following SQL : CREATE TABLE table_24856332_4 (steals INTEGER, minutes VARCHAR)
SELECT MAX(steals) FROM table_24856332_4 WHERE minutes = 324
Write a SQL query that answers the following question: What is the lowest number of minutes for a player with 47 steals?
The relevant table was constructed using the following SQL : CREATE TABLE table_24856332_4 (minutes INTEGER, steals VARCHAR)
SELECT MIN(minutes) FROM table_24856332_4 WHERE steals = 47
Write a SQL query that answers the following question: Who played Mixed Doubles in 1991?
The relevant table was constructed using the following SQL : CREATE TABLE table_2486023_1 (mixed_doubles VARCHAR, year VARCHAR)
SELECT mixed_doubles FROM table_2486023_1 WHERE year = 1991
Write a SQL query that answers the following question: Who was the home team who played plymouth argyle?
The relevant table was constructed using the following SQL : CREATE TABLE table_24887326_8 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_24887326_8 WHERE away_team = "Plymouth Argyle"
Write a SQL query that answers the following question: What was the score when the away team was norwich city?
The relevant table was constructed using the following SQL : CREATE TABLE table_24887326_8 (score_1 VARCHAR, away_team VARCHAR)
SELECT score_1 FROM table_24887326_8 WHERE away_team = "Norwich City"
Write a SQL query that answers the following question: Who played as the away team when coventry city was the home team?
The relevant table was constructed using the following SQL : CREATE TABLE table_24887326_8 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_24887326_8 WHERE home_team = "Coventry City"
Write a SQL query that answers the following question: What is the final score when they played Frankfurt Galaxy?
The relevant table was constructed using the following SQL : CREATE TABLE table_24882796_2 (final_score VARCHAR, opponent VARCHAR)
SELECT final_score FROM table_24882796_2 WHERE opponent = "Frankfurt Galaxy"
Write a SQL query that answers the following question: Who is the away team for tie no 11?
The relevant table was constructed using the following SQL : CREATE TABLE table_24887326_6 (away_team VARCHAR, tie_no VARCHAR)
SELECT away_team FROM table_24887326_6 WHERE tie_no = 11
Write a SQL query that answers the following question: Who is the away team for tie no 15?
The relevant table was constructed using the following SQL : CREATE TABLE table_24887326_6 (away_team VARCHAR, tie_no VARCHAR)
SELECT away_team FROM table_24887326_6 WHERE tie_no = 15
Write a SQL query that answers the following question: What is the highest tie that had 19129 attendance?
The relevant table was constructed using the following SQL : CREATE TABLE table_24887326_6 (tie_no INTEGER, attendance VARCHAR)
SELECT MAX(tie_no) FROM table_24887326_6 WHERE attendance = 19129
Write a SQL query that answers the following question: What is the tie when the home team is Stoke City?
The relevant table was constructed using the following SQL : CREATE TABLE table_24887326_6 (tie_no VARCHAR, home_team VARCHAR)
SELECT tie_no FROM table_24887326_6 WHERE home_team = "Stoke City"
Write a SQL query that answers the following question: What tie has Orient as the home team?
The relevant table was constructed using the following SQL : CREATE TABLE table_24887326_6 (tie_no VARCHAR, home_team VARCHAR)
SELECT tie_no FROM table_24887326_6 WHERE home_team = "Orient"
Write a SQL query that answers the following question: How many dates are there for tie number 12?
The relevant table was constructed using the following SQL : CREATE TABLE table_24887326_6 (date VARCHAR, tie_no VARCHAR)
SELECT COUNT(date) FROM table_24887326_6 WHERE tie_no = 12
Write a SQL query that answers the following question: When 556 is the amount of points how much equipment is there?
The relevant table was constructed using the following SQL : CREATE TABLE table_24898185_4 (equipment VARCHAR, points VARCHAR)
SELECT COUNT(equipment) FROM table_24898185_4 WHERE points = 556
Write a SQL query that answers the following question: Which championship was the score 6–4, 5–7, 6–2?
The relevant table was constructed using the following SQL : CREATE TABLE table_24901152_4 (championship VARCHAR, score VARCHAR)
SELECT championship FROM table_24901152_4 WHERE score = "6–4, 5–7, 6–2"
Write a SQL query that answers the following question: Who were the opponents in the Rome championship?
The relevant table was constructed using the following SQL : CREATE TABLE table_24901152_4 (opponents VARCHAR, championship VARCHAR)
SELECT opponents FROM table_24901152_4 WHERE championship = "Rome"
Write a SQL query that answers the following question: What is the maximum number of minutes associated with exactly 70 field goals?
The relevant table was constructed using the following SQL : CREATE TABLE table_24908692_5 (minutes INTEGER, field_goals VARCHAR)
SELECT MAX(minutes) FROM table_24908692_5 WHERE field_goals = 70
Write a SQL query that answers the following question: What is the minimum number of field goals associated with exactly 84 assists?
The relevant table was constructed using the following SQL : CREATE TABLE table_24908692_5 (field_goals INTEGER, assists VARCHAR)
SELECT MIN(field_goals) FROM table_24908692_5 WHERE assists = 84
Write a SQL query that answers the following question: How many steals did Tamika Williams have?
The relevant table was constructed using the following SQL : CREATE TABLE table_24908692_5 (steals VARCHAR, player VARCHAR)
SELECT steals FROM table_24908692_5 WHERE player = "Tamika Williams"
Write a SQL query that answers the following question: List the number of takeaways with 1 rejection.
The relevant table was constructed using the following SQL : CREATE TABLE table_24906653_5 (steals VARCHAR, blocks VARCHAR)
SELECT COUNT(steals) FROM table_24906653_5 WHERE blocks = 1
Write a SQL query that answers the following question: How many long range shots did tonya edwards make.
The relevant table was constructed using the following SQL : CREATE TABLE table_24906653_5 (field_goals VARCHAR, player VARCHAR)
SELECT COUNT(field_goals) FROM table_24906653_5 WHERE player = "Tonya Edwards"
Write a SQL query that answers the following question: List the number of long range shors where the score is 171.
The relevant table was constructed using the following SQL : CREATE TABLE table_24906653_5 (field_goals VARCHAR, points VARCHAR)
SELECT COUNT(field_goals) FROM table_24906653_5 WHERE points = 171
Write a SQL query that answers the following question: Who won best amiga demo when tribes ( pulse & melon dezign) won best pc demo?
The relevant table was constructed using the following SQL : CREATE TABLE table_2490289_1 (amiga_demo VARCHAR, pc_demo VARCHAR)
SELECT amiga_demo FROM table_2490289_1 WHERE pc_demo = "Tribes ( Pulse & Melon Dezign)"
Write a SQL query that answers the following question: What won best amiga demo when alto knallo (free electric band) won best pc demo?
The relevant table was constructed using the following SQL : CREATE TABLE table_2490289_1 (amiga_demo VARCHAR, pc_demo VARCHAR)
SELECT amiga_demo FROM table_2490289_1 WHERE pc_demo = "Alto Knallo (Free Electric Band)"
Write a SQL query that answers the following question: What won best pc intro when my kingdom (haujobb & scoopex) won best amiga demo?
The relevant table was constructed using the following SQL : CREATE TABLE table_2490289_1 (pc_intro VARCHAR, amiga_demo VARCHAR)
SELECT pc_intro FROM table_2490289_1 WHERE amiga_demo = "My Kingdom (Haujobb & Scoopex)"
Write a SQL query that answers the following question: What won est pc intro when 4k0 (polka brothers) won best amiga intro?
The relevant table was constructed using the following SQL : CREATE TABLE table_2490289_1 (pc_intro VARCHAR, amiga_intro VARCHAR)
SELECT pc_intro FROM table_2490289_1 WHERE amiga_intro = "4k0 (Polka Brothers)"
Write a SQL query that answers the following question: What won best pc demo when tower power (camelot) won best c64 demo?
The relevant table was constructed using the following SQL : CREATE TABLE table_2490289_1 (pc_demo VARCHAR, c64_demo VARCHAR)
SELECT pc_demo FROM table_2490289_1 WHERE c64_demo = "Tower Power (Camelot)"
Write a SQL query that answers the following question: What year did fr-08: the product ( farbrausch ) win best pc intro?
The relevant table was constructed using the following SQL : CREATE TABLE table_2490289_1 (year VARCHAR, pc_intro VARCHAR)
SELECT year FROM table_2490289_1 WHERE pc_intro = "FR-08: The Product ( Farbrausch )"
Write a SQL query that answers the following question: What is the episode title that had a US viewership of 8.16?
The relevant table was constructed using the following SQL : CREATE TABLE table_24910737_1 (title VARCHAR, us_viewers__millions_ VARCHAR)
SELECT title FROM table_24910737_1 WHERE us_viewers__millions_ = "8.16"
Write a SQL query that answers the following question: Who wrote the episodes that had a viewership of 7.14?
The relevant table was constructed using the following SQL : CREATE TABLE table_24910737_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR)
SELECT written_by FROM table_24910737_1 WHERE us_viewers__millions_ = "7.14"
Write a SQL query that answers the following question: How many episodes received rating of 8.2?
The relevant table was constructed using the following SQL : CREATE TABLE table_24910733_2 (episode VARCHAR, rating VARCHAR)
SELECT COUNT(episode) FROM table_24910733_2 WHERE rating = "8.2"
Write a SQL query that answers the following question: How many share figures are there for the episode that aired on October 17, 2007?
The relevant table was constructed using the following SQL : CREATE TABLE table_24910733_2 (share VARCHAR, air_date VARCHAR)
SELECT COUNT(share) FROM table_24910733_2 WHERE air_date = "October 17, 2007"
Write a SQL query that answers the following question: How many episodes aired on October 17, 2007?
The relevant table was constructed using the following SQL : CREATE TABLE table_24910733_2 (episode VARCHAR, air_date VARCHAR)
SELECT COUNT(episode) FROM table_24910733_2 WHERE air_date = "October 17, 2007"
Write a SQL query that answers the following question: How many timeslots received a rating of 5.7?
The relevant table was constructed using the following SQL : CREATE TABLE table_24910733_2 (timeslot__est_ VARCHAR, rating VARCHAR)
SELECT COUNT(timeslot__est_) FROM table_24910733_2 WHERE rating = "5.7"
Write a SQL query that answers the following question: How many writers are listed when the U.S viewers are 11.21 million?
The relevant table was constructed using the following SQL : CREATE TABLE table_24910733_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR)
SELECT COUNT(written_by) FROM table_24910733_1 WHERE us_viewers__millions_ = "11.21"
Write a SQL query that answers the following question: Who is the director when there is 8.44 million viewers?
The relevant table was constructed using the following SQL : CREATE TABLE table_24910733_1 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)
SELECT directed_by FROM table_24910733_1 WHERE us_viewers__millions_ = "8.44"
Write a SQL query that answers the following question: Who is the director when the writter is Andrea Newman?
The relevant table was constructed using the following SQL : CREATE TABLE table_24910733_1 (directed_by VARCHAR, written_by VARCHAR)
SELECT directed_by FROM table_24910733_1 WHERE written_by = "Andrea Newman"
Write a SQL query that answers the following question: What is the title when the writer is Emily Halpern?
The relevant table was constructed using the following SQL : CREATE TABLE table_24910733_1 (title VARCHAR, written_by VARCHAR)
SELECT title FROM table_24910733_1 WHERE written_by = "Emily Halpern"
Write a SQL query that answers the following question: Who is the director when there is 11.21 million viewers?
The relevant table was constructed using the following SQL : CREATE TABLE table_24910733_1 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)
SELECT directed_by FROM table_24910733_1 WHERE us_viewers__millions_ = "11.21"
Write a SQL query that answers the following question: How many titles are listed with 8.44 million viewers?
The relevant table was constructed using the following SQL : CREATE TABLE table_24910733_1 (title VARCHAR, us_viewers__millions_ VARCHAR)
SELECT COUNT(title) FROM table_24910733_1 WHERE us_viewers__millions_ = "8.44"
Write a SQL query that answers the following question: How many field goals had 597 points?
The relevant table was constructed using the following SQL : CREATE TABLE table_24915964_4 (field_goals VARCHAR, points VARCHAR)
SELECT COUNT(field_goals) FROM table_24915964_4 WHERE points = 597
Write a SQL query that answers the following question: How many minutes were played by Sue Bird?
The relevant table was constructed using the following SQL : CREATE TABLE table_24915964_4 (minutes INTEGER, player VARCHAR)
SELECT MIN(minutes) FROM table_24915964_4 WHERE player = "Sue Bird"
Write a SQL query that answers the following question: What is the maximum number of rebounds for players having exactly 35 steals?
The relevant table was constructed using the following SQL : CREATE TABLE table_24913533_4 (rebounds INTEGER, steals VARCHAR)
SELECT MAX(rebounds) FROM table_24913533_4 WHERE steals = 35
Write a SQL query that answers the following question: What are the numbers of steals associated with players having exactly 3 blocks?
The relevant table was constructed using the following SQL : CREATE TABLE table_24913533_4 (steals VARCHAR, blocks VARCHAR)
SELECT steals FROM table_24913533_4 WHERE blocks = 3
Write a SQL query that answers the following question: How many numbers of rebounds are associated with exactly 18 points?
The relevant table was constructed using the following SQL : CREATE TABLE table_24913533_4 (rebounds VARCHAR, points VARCHAR)
SELECT COUNT(rebounds) FROM table_24913533_4 WHERE points = 18
Write a SQL query that answers the following question: What is the maximum number of assists for players named Anastasia Kostaki?
The relevant table was constructed using the following SQL : CREATE TABLE table_24913533_4 (assists INTEGER, player VARCHAR)
SELECT MAX(assists) FROM table_24913533_4 WHERE player = "Anastasia Kostaki"
Write a SQL query that answers the following question: What is Tiffani Johnson's maximum steals?
The relevant table was constructed using the following SQL : CREATE TABLE table_24912693_4 (steals INTEGER, player VARCHAR)
SELECT MAX(steals) FROM table_24912693_4 WHERE player = "Tiffani Johnson"
Write a SQL query that answers the following question: Which player has 17 blocks?
The relevant table was constructed using the following SQL : CREATE TABLE table_24912693_4 (player VARCHAR, blocks VARCHAR)
SELECT player FROM table_24912693_4 WHERE blocks = 17
Write a SQL query that answers the following question: How many field goals does the player with 84 rebounds have?
The relevant table was constructed using the following SQL : CREATE TABLE table_24912693_4 (field_goals INTEGER, rebounds VARCHAR)
SELECT MIN(field_goals) FROM table_24912693_4 WHERE rebounds = 84
Write a SQL query that answers the following question: How many blocks does the player who played 893 minutes have?
The relevant table was constructed using the following SQL : CREATE TABLE table_24912693_4 (blocks VARCHAR, minutes VARCHAR)
SELECT blocks FROM table_24912693_4 WHERE minutes = 893
Write a SQL query that answers the following question: How many points does the player with 2 steals have?
The relevant table was constructed using the following SQL : CREATE TABLE table_24912693_4 (points VARCHAR, steals VARCHAR)
SELECT points FROM table_24912693_4 WHERE steals = 2
Write a SQL query that answers the following question: Name the most number
The relevant table was constructed using the following SQL : CREATE TABLE table_24924576_2 (number INTEGER)
SELECT MAX(number) FROM table_24924576_2
Write a SQL query that answers the following question: Name the titles for tko 11/12
The relevant table was constructed using the following SQL : CREATE TABLE table_24924576_2 (titles VARCHAR, result VARCHAR)
SELECT titles FROM table_24924576_2 WHERE result = "TKO 11/12"
Write a SQL query that answers the following question: Where was the game played when the result/margin was won by 70?
The relevant table was constructed using the following SQL : CREATE TABLE table_24919137_2 (venue VARCHAR, result_margin VARCHAR)
SELECT venue FROM table_24919137_2 WHERE result_margin = "WON by 70"
Write a SQL query that answers the following question: What is the result/margin when fox sports 1 broadcast the game played at mcg?
The relevant table was constructed using the following SQL : CREATE TABLE table_24919137_2 (result_margin VARCHAR, broadcaster VARCHAR, venue VARCHAR)
SELECT result_margin FROM table_24919137_2 WHERE broadcaster = "Fox Sports 1" AND venue = "MCG"
Write a SQL query that answers the following question: Which network broadcast the game when the Western Bulldogs played melbourne?
The relevant table was constructed using the following SQL : CREATE TABLE table_24919137_2 (broadcaster VARCHAR, opposition VARCHAR)
SELECT broadcaster FROM table_24919137_2 WHERE opposition = "Melbourne"
Write a SQL query that answers the following question: Where was the game played when the score was 14.16 (100)-12.12 (84)?
The relevant table was constructed using the following SQL : CREATE TABLE table_24919137_2 (venue VARCHAR, score VARCHAR)
SELECT venue FROM table_24919137_2 WHERE score = "14.16 (100)-12.12 (84)"
Write a SQL query that answers the following question: What was the ladder position when the score was 15.9 (99)–14.6 (90)?
The relevant table was constructed using the following SQL : CREATE TABLE table_24919137_2 (ladder_position VARCHAR, score VARCHAR)
SELECT ladder_position FROM table_24919137_2 WHERE score = "15.9 (99)–14.6 (90)"
Write a SQL query that answers the following question: On what date was the game played when the Western Bulldogs were in 8th ladder position and hawthorn was the opposing team?
The relevant table was constructed using the following SQL : CREATE TABLE table_24919137_2 (date VARCHAR, ladder_position VARCHAR, opposition VARCHAR)
SELECT date FROM table_24919137_2 WHERE ladder_position = "8th" AND opposition = "Hawthorn"
Write a SQL query that answers the following question: What school is nicknamed the panthers?
The relevant table was constructed using the following SQL : CREATE TABLE table_24935743_2 (school VARCHAR, nickname VARCHAR)
SELECT school FROM table_24935743_2 WHERE nickname = "Panthers"
Write a SQL query that answers the following question: What school is in Jeromesville?
The relevant table was constructed using the following SQL : CREATE TABLE table_24935743_2 (location VARCHAR, school VARCHAR)
SELECT location FROM table_24935743_2 WHERE school = "Jeromesville"
Write a SQL query that answers the following question: What was the previous school of the ft7in (m) tall player?
The relevant table was constructed using the following SQL : CREATE TABLE table_24925945_3 (previous_school VARCHAR, height VARCHAR)
SELECT previous_school FROM table_24925945_3 WHERE height = "ft7in (m)"
Write a SQL query that answers the following question: What was the previous school of #22?
The relevant table was constructed using the following SQL : CREATE TABLE table_24925945_3 (previous_school VARCHAR, _number VARCHAR)
SELECT previous_school FROM table_24925945_3 WHERE _number = 22
Write a SQL query that answers the following question: What is the title of the episode with production code 3x5402?
The relevant table was constructed using the following SQL : CREATE TABLE table_24938621_2 (title VARCHAR, production_code VARCHAR)
SELECT title FROM table_24938621_2 WHERE production_code = "3X5402"