instruction
stringlengths
67
299
input
stringlengths
88
550
output
stringlengths
32
484
Write a SQL query that answers the following question: What is the maximum number of 2nd places for Tajikistan?
The relevant table was constructed using the following SQL : CREATE TABLE table_2876467_3 (second_place INTEGER, region_represented VARCHAR)
SELECT MAX(second_place) FROM table_2876467_3 WHERE region_represented = "Tajikistan"
Write a SQL query that answers the following question: What is the maximum number of 1st places for the country with exactly 1 third place?
The relevant table was constructed using the following SQL : CREATE TABLE table_2876467_3 (first_place INTEGER, third_place VARCHAR)
SELECT MAX(first_place) FROM table_2876467_3 WHERE third_place = 1
Write a SQL query that answers the following question: How many values of total top 3 placements does Taiwan have?
The relevant table was constructed using the following SQL : CREATE TABLE table_2876467_3 (total_top_3_placements VARCHAR, region_represented VARCHAR)
SELECT COUNT(total_top_3_placements) FROM table_2876467_3 WHERE region_represented = "Taiwan"
Write a SQL query that answers the following question: What is the name of the country when the ioc code is mas?
The relevant table was constructed using the following SQL : CREATE TABLE table_2879165_1 (country VARCHAR, ioc_code VARCHAR)
SELECT country FROM table_2879165_1 WHERE ioc_code = "MAS"
Write a SQL query that answers the following question: What is the ioc code when the country is listed as Singapore?
The relevant table was constructed using the following SQL : CREATE TABLE table_2879165_1 (ioc_code VARCHAR, country VARCHAR)
SELECT ioc_code FROM table_2879165_1 WHERE country = "Singapore"
Write a SQL query that answers the following question: What is listed in Network station when the country is Brunei?
The relevant table was constructed using the following SQL : CREATE TABLE table_2879165_1 (network_station VARCHAR, country VARCHAR)
SELECT COUNT(network_station) FROM table_2879165_1 WHERE country = "Brunei"
Write a SQL query that answers the following question: How many television station listing have a radio station as lao national radio?
The relevant table was constructed using the following SQL : CREATE TABLE table_2879165_1 (television_station VARCHAR, radio_station VARCHAR)
SELECT COUNT(television_station) FROM table_2879165_1 WHERE radio_station = "Lao National Radio"
Write a SQL query that answers the following question: How many television station listings have a ioc code as mas?
The relevant table was constructed using the following SQL : CREATE TABLE table_2879165_1 (television_station VARCHAR, ioc_code VARCHAR)
SELECT COUNT(television_station) FROM table_2879165_1 WHERE ioc_code = "MAS"
Write a SQL query that answers the following question: Who wrote episode 27 in the series that was directed by Wendey Stanzler?
The relevant table was constructed using the following SQL : CREATE TABLE table_28768925_1 (written_by VARCHAR, directed_by VARCHAR, no_in_series VARCHAR)
SELECT written_by FROM table_28768925_1 WHERE directed_by = "Wendey Stanzler" AND no_in_series = 27
Write a SQL query that answers the following question: What is the name of episode 43 in the series?
The relevant table was constructed using the following SQL : CREATE TABLE table_28768925_1 (title VARCHAR, no_in_series VARCHAR)
SELECT title FROM table_28768925_1 WHERE no_in_series = 43
Write a SQL query that answers the following question: What date did the episode that had 8.84 million u.s. viewers originally air?
The relevant table was constructed using the following SQL : CREATE TABLE table_28768925_1 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)
SELECT original_air_date FROM table_28768925_1 WHERE us_viewers__million_ = "8.84"
Write a SQL query that answers the following question: How many games have high assists as earl watson (11) and location attendance as Keyarena 16,841?
The relevant table was constructed using the following SQL : CREATE TABLE table_28768469_7 (game VARCHAR, high_assists VARCHAR, location_attendance VARCHAR)
SELECT COUNT(game) FROM table_28768469_7 WHERE high_assists = "Earl Watson (11)" AND location_attendance = "KeyArena 16,841"
Write a SQL query that answers the following question: What is the record listed when the high assists is earl watson (6)?
The relevant table was constructed using the following SQL : CREATE TABLE table_28768469_7 (record VARCHAR, high_assists VARCHAR)
SELECT record FROM table_28768469_7 WHERE high_assists = "Earl Watson (6)"
Write a SQL query that answers the following question: Where is the location attendance when the date is January 9?
The relevant table was constructed using the following SQL : CREATE TABLE table_28768469_7 (location_attendance VARCHAR, date VARCHAR)
SELECT location_attendance FROM table_28768469_7 WHERE date = "January 9"
Write a SQL query that answers the following question: What is listed in hight points when the high rebounds is listed as Nick Collison (10)?
The relevant table was constructed using the following SQL : CREATE TABLE table_28768469_7 (high_points VARCHAR, high_rebounds VARCHAR)
SELECT high_points FROM table_28768469_7 WHERE high_rebounds = "Nick Collison (10)"
Write a SQL query that answers the following question: What is listed in game when the location attendance is listed as Keyarena 16,841?
The relevant table was constructed using the following SQL : CREATE TABLE table_28768469_7 (game INTEGER, location_attendance VARCHAR)
SELECT MAX(game) FROM table_28768469_7 WHERE location_attendance = "KeyArena 16,841"
Write a SQL query that answers the following question: What was the airdate of the episode of production code 214?
The relevant table was constructed using the following SQL : CREATE TABLE table_28787871_3 (original_air_date VARCHAR, production_code VARCHAR)
SELECT original_air_date FROM table_28787871_3 WHERE production_code = 214
Write a SQL query that answers the following question: How many numbers in the season have an air date of June 3, 2012?
The relevant table was constructed using the following SQL : CREATE TABLE table_28787871_3 (no_in_season VARCHAR, original_air_date VARCHAR)
SELECT COUNT(no_in_season) FROM table_28787871_3 WHERE original_air_date = "June 3, 2012"
Write a SQL query that answers the following question: What is the highest production code of the episodes having a US viewership of exactly 2.3?
The relevant table was constructed using the following SQL : CREATE TABLE table_28787871_3 (production_code INTEGER, us_viewers__millions_ VARCHAR)
SELECT MAX(production_code) FROM table_28787871_3 WHERE us_viewers__millions_ = "2.3"
Write a SQL query that answers the following question: When the number of wickets is 29, what was the economy?
The relevant table was constructed using the following SQL : CREATE TABLE table_28797906_3 (economy VARCHAR, wickets VARCHAR)
SELECT economy FROM table_28797906_3 WHERE wickets = 29
Write a SQL query that answers the following question: How many wickets was there when the economy was 3.64?
The relevant table was constructed using the following SQL : CREATE TABLE table_28797906_3 (wickets VARCHAR, economy VARCHAR)
SELECT wickets FROM table_28797906_3 WHERE economy = "3.64"
Write a SQL query that answers the following question: What is the average of all the wickets that were 27?
The relevant table was constructed using the following SQL : CREATE TABLE table_28797906_3 (average VARCHAR, wickets VARCHAR)
SELECT average FROM table_28797906_3 WHERE wickets = 27
Write a SQL query that answers the following question: Which branding has the callsign of DXGH?
The relevant table was constructed using the following SQL : CREATE TABLE table_28794440_1 (branding VARCHAR, callsign VARCHAR)
SELECT branding FROM table_28794440_1 WHERE callsign = "DXGH"
Write a SQL query that answers the following question: What type of station is within the 972khz frequency?
The relevant table was constructed using the following SQL : CREATE TABLE table_28794440_1 (station_type VARCHAR, frequency VARCHAR)
SELECT station_type FROM table_28794440_1 WHERE frequency = "972kHz"
Write a SQL query that answers the following question: What types of stations are located in Cebu?
The relevant table was constructed using the following SQL : CREATE TABLE table_28794440_1 (station_type VARCHAR, location VARCHAR)
SELECT station_type FROM table_28794440_1 WHERE location = "Cebu"
Write a SQL query that answers the following question: Where are all the 1485khz frequency located?
The relevant table was constructed using the following SQL : CREATE TABLE table_28794440_1 (location VARCHAR, frequency VARCHAR)
SELECT location FROM table_28794440_1 WHERE frequency = "1485kHz"
Write a SQL query that answers the following question: How many locations have the callsign DXGH?
The relevant table was constructed using the following SQL : CREATE TABLE table_28794440_1 (location VARCHAR, callsign VARCHAR)
SELECT COUNT(location) FROM table_28794440_1 WHERE callsign = "DXGH"
Write a SQL query that answers the following question: Where are the broadcasting companys with the callsign DWRH located?
The relevant table was constructed using the following SQL : CREATE TABLE table_28794440_1 (location VARCHAR, callsign VARCHAR)
SELECT location FROM table_28794440_1 WHERE callsign = "DWRH"
Write a SQL query that answers the following question: Where is the audition city when the venue is upi convention center?
The relevant table was constructed using the following SQL : CREATE TABLE table_28793672_1 (audition_city VARCHAR, venue VARCHAR)
SELECT audition_city FROM table_28793672_1 WHERE venue = "UPI Convention Center"
Write a SQL query that answers the following question: How many times is there a golden tickets entry when the callback venue is rcti studio, jakarta?
The relevant table was constructed using the following SQL : CREATE TABLE table_28793672_1 (golden_tickets VARCHAR, callback_venue VARCHAR)
SELECT COUNT(golden_tickets) FROM table_28793672_1 WHERE callback_venue = "RCTI Studio, Jakarta"
Write a SQL query that answers the following question: In what year was 1.35% the average vote per candidate?
The relevant table was constructed using the following SQL : CREATE TABLE table_28819393_1 (year VARCHAR, average__percentage_of_vote_per_candidate VARCHAR)
SELECT year FROM table_28819393_1 WHERE average__percentage_of_vote_per_candidate = "1.35"
Write a SQL query that answers the following question: When 3.29% was the average per candidate, what was the number of average votes per candidate?
The relevant table was constructed using the following SQL : CREATE TABLE table_28819393_1 (average_votes_per_candidate INTEGER, average__percentage_of_vote_per_candidate VARCHAR)
SELECT MIN(average_votes_per_candidate) FROM table_28819393_1 WHERE average__percentage_of_vote_per_candidate = "3.29"
Write a SQL query that answers the following question: What was the percentage of total votes in 1997?
The relevant table was constructed using the following SQL : CREATE TABLE table_28819393_1 (_percentage_of_total_vote VARCHAR, year VARCHAR)
SELECT _percentage_of_total_vote FROM table_28819393_1 WHERE year = "1997"
Write a SQL query that answers the following question: How many shows were launched on CBS (2002)?
The relevant table was constructed using the following SQL : CREATE TABLE table_28803803_1 (launched VARCHAR, original_channel VARCHAR)
SELECT COUNT(launched) FROM table_28803803_1 WHERE original_channel = "CBS (2002)"
Write a SQL query that answers the following question: How many IRST figures for the show that premiered on Canale 5 (2006)?
The relevant table was constructed using the following SQL : CREATE TABLE table_28803803_1 (irst VARCHAR, original_channel VARCHAR)
SELECT COUNT(irst) FROM table_28803803_1 WHERE original_channel = "Canale 5 (2006)"
Write a SQL query that answers the following question: What are the dates that Falling Angel aired?
The relevant table was constructed using the following SQL : CREATE TABLE table_28803803_1 (date VARCHAR, name VARCHAR)
SELECT date FROM table_28803803_1 WHERE name = "Falling Angel"
Write a SQL query that answers the following question: How many economy stats for the player with 2/19 BBI?
The relevant table was constructed using the following SQL : CREATE TABLE table_28846752_13 (economy VARCHAR, bbi VARCHAR)
SELECT COUNT(economy) FROM table_28846752_13 WHERE bbi = "2/19"
Write a SQL query that answers the following question: Who is the player with an average of 35.42?
The relevant table was constructed using the following SQL : CREATE TABLE table_28846752_13 (player VARCHAR, average VARCHAR)
SELECT player FROM table_28846752_13 WHERE average = "35.42"
Write a SQL query that answers the following question: What is the economy of the player with BBI of 3/33?
The relevant table was constructed using the following SQL : CREATE TABLE table_28846752_13 (economy VARCHAR, bbi VARCHAR)
SELECT economy FROM table_28846752_13 WHERE bbi = "3/33"
Write a SQL query that answers the following question: What is the average when the highest score is 151?
The relevant table was constructed using the following SQL : CREATE TABLE table_28846752_4 (average VARCHAR, highest_score VARCHAR)
SELECT average FROM table_28846752_4 WHERE highest_score = "151"
Write a SQL query that answers the following question: Who is the player when the highest score is 84?
The relevant table was constructed using the following SQL : CREATE TABLE table_28846752_4 (player VARCHAR, highest_score VARCHAR)
SELECT player FROM table_28846752_4 WHERE highest_score = "84"
Write a SQL query that answers the following question: How many runs are there when the highest score is 228*?
The relevant table was constructed using the following SQL : CREATE TABLE table_28846752_4 (runs INTEGER, highest_score VARCHAR)
SELECT MIN(runs) FROM table_28846752_4 WHERE highest_score = "228*"
Write a SQL query that answers the following question: What is the innings when the highest score is 72?
The relevant table was constructed using the following SQL : CREATE TABLE table_28846752_4 (innings INTEGER, highest_score VARCHAR)
SELECT MAX(innings) FROM table_28846752_4 WHERE highest_score = "72"
Write a SQL query that answers the following question: What is the highest number listed for matches?
The relevant table was constructed using the following SQL : CREATE TABLE table_28846752_8 (matches INTEGER)
SELECT MAX(matches) FROM table_28846752_8
Write a SQL query that answers the following question: How many entries is under 50s column when the average is 39.60?
The relevant table was constructed using the following SQL : CREATE TABLE table_28846752_8 (average VARCHAR)
SELECT 50 AS s FROM table_28846752_8 WHERE average = "39.60"
Write a SQL query that answers the following question: Who is the player when the average is 69.66?
The relevant table was constructed using the following SQL : CREATE TABLE table_28846752_8 (player VARCHAR, average VARCHAR)
SELECT player FROM table_28846752_8 WHERE average = "69.66"
Write a SQL query that answers the following question: what is the minimumfor 5wi?
The relevant table was constructed using the following SQL : CREATE TABLE table_28846752_5 (Id VARCHAR)
SELECT MIN(5 AS wi) FROM table_28846752_5
Write a SQL query that answers the following question: how many 10wi and bbi is 6/101
The relevant table was constructed using the following SQL : CREATE TABLE table_28846752_5 (bbi VARCHAR)
SELECT COUNT(10 AS wi) FROM table_28846752_5 WHERE bbi = "6/101"
Write a SQL query that answers the following question: how many innings had bbi 4/26?
The relevant table was constructed using the following SQL : CREATE TABLE table_28846752_5 (innings VARCHAR, bbi VARCHAR)
SELECT innings FROM table_28846752_5 WHERE bbi = "4/26"
Write a SQL query that answers the following question: how many 5wi with an average of 33.13?
The relevant table was constructed using the following SQL : CREATE TABLE table_28846752_5 (average VARCHAR)
SELECT COUNT(5 AS wi) FROM table_28846752_5 WHERE average = "33.13"
Write a SQL query that answers the following question: how many innings have an average of 19.60?
The relevant table was constructed using the following SQL : CREATE TABLE table_28846752_5 (innings VARCHAR, average VARCHAR)
SELECT innings FROM table_28846752_5 WHERE average = "19.60"
Write a SQL query that answers the following question: What is the average when the BBI is 3/27?
The relevant table was constructed using the following SQL : CREATE TABLE table_28846752_9 (average VARCHAR, bbi VARCHAR)
SELECT average FROM table_28846752_9 WHERE bbi = "3/27"
Write a SQL query that answers the following question: Who is the player when the economy is 6.14?
The relevant table was constructed using the following SQL : CREATE TABLE table_28846752_9 (player VARCHAR, economy VARCHAR)
SELECT player FROM table_28846752_9 WHERE economy = "6.14"
Write a SQL query that answers the following question: Who is the player when the economy is 5.29?
The relevant table was constructed using the following SQL : CREATE TABLE table_28846752_9 (player VARCHAR, economy VARCHAR)
SELECT player FROM table_28846752_9 WHERE economy = "5.29"
Write a SQL query that answers the following question: What the number of matches when the BBI is 3/27?
The relevant table was constructed using the following SQL : CREATE TABLE table_28846752_9 (matches INTEGER, bbi VARCHAR)
SELECT MIN(matches) FROM table_28846752_9 WHERE bbi = "3/27"
Write a SQL query that answers the following question: What is the BBI whent the economy is 5.68?
The relevant table was constructed using the following SQL : CREATE TABLE table_28846752_9 (bbi VARCHAR, economy VARCHAR)
SELECT bbi FROM table_28846752_9 WHERE economy = "5.68"
Write a SQL query that answers the following question: What is the year listed when tied is listed as 11?
The relevant table was constructed using the following SQL : CREATE TABLE table_28848697_4 (year VARCHAR, tied VARCHAR)
SELECT year FROM table_28848697_4 WHERE tied = 11
Write a SQL query that answers the following question: What is the goals against listed when the goals scored is 30?
The relevant table was constructed using the following SQL : CREATE TABLE table_28848697_4 (goals_against VARCHAR, goals_scored VARCHAR)
SELECT goals_against FROM table_28848697_4 WHERE goals_scored = 30
Write a SQL query that answers the following question: How many goals scored entries are listed when the year is verano 2001?
The relevant table was constructed using the following SQL : CREATE TABLE table_28848697_4 (goals_scored VARCHAR, year VARCHAR)
SELECT COUNT(goals_scored) FROM table_28848697_4 WHERE year = "Verano 2001"
Write a SQL query that answers the following question: What are goals scored when postition is 17 and tied is 5?
The relevant table was constructed using the following SQL : CREATE TABLE table_28848697_4 (goals_scored VARCHAR, position VARCHAR, tied VARCHAR)
SELECT goals_scored FROM table_28848697_4 WHERE position = 17 AND tied = 5
Write a SQL query that answers the following question: Who was the winner if the Mountains Classification award was given to Jaime Vergara and the Team Classification award is given to Col es Pasion Café De Colombia 472?
The relevant table was constructed using the following SQL : CREATE TABLE table_28853064_15 (winner VARCHAR, mountains_classification VARCHAR, team_classification VARCHAR)
SELECT winner FROM table_28853064_15 WHERE mountains_classification = "Jaime Vergara" AND team_classification = "Col es Pasion Café De Colombia 472"
Write a SQL query that answers the following question: Who was the General Classification awardee if Sergio Luis Henao was the winner and the Points Classification award was given to Sergio Luis Henao?
The relevant table was constructed using the following SQL : CREATE TABLE table_28853064_15 (general_classification VARCHAR, winner VARCHAR, points_classification VARCHAR)
SELECT general_classification FROM table_28853064_15 WHERE winner = "Sergio Luis Henao" AND points_classification = "Sergio Luis Henao"
Write a SQL query that answers the following question: Who were the winners if the Mountain Classification award was given to Oscar Solis and Team Classification was given to EPM-Une?
The relevant table was constructed using the following SQL : CREATE TABLE table_28853064_15 (winner VARCHAR, mountains_classification VARCHAR, team_classification VARCHAR)
SELECT winner FROM table_28853064_15 WHERE mountains_classification = "Oscar Solis" AND team_classification = "EPM-UNE"
Write a SQL query that answers the following question: In what stage did Jaime Vergara won, Team Classification was given to EPM-Une and Mountain Classification winner was Oscar Solis?
The relevant table was constructed using the following SQL : CREATE TABLE table_28853064_15 (stage VARCHAR, winner VARCHAR, team_classification VARCHAR, mountains_classification VARCHAR)
SELECT stage FROM table_28853064_15 WHERE team_classification = "EPM-UNE" AND mountains_classification = "Oscar Solis" AND winner = "Jaime Vergara"
Write a SQL query that answers the following question: Who directed the episode that aired November 21, 2003?
The relevant table was constructed using the following SQL : CREATE TABLE table_28859177_2 (directed_by VARCHAR, original_air_date VARCHAR)
SELECT directed_by FROM table_28859177_2 WHERE original_air_date = "November 21, 2003"
Write a SQL query that answers the following question: How many episode titles have series number 4?
The relevant table was constructed using the following SQL : CREATE TABLE table_28859177_2 (title VARCHAR, series__number VARCHAR)
SELECT COUNT(title) FROM table_28859177_2 WHERE series__number = 4
Write a SQL query that answers the following question: How may college/junior/club team has a the nhl team listed as Colorado Avalanche?
The relevant table was constructed using the following SQL : CREATE TABLE table_2886617_5 (college_junior_club_team VARCHAR, nhl_team VARCHAR)
SELECT COUNT(college_junior_club_team) FROM table_2886617_5 WHERE nhl_team = "Colorado Avalanche"
Write a SQL query that answers the following question: What player was picked by the New York Rangers?
The relevant table was constructed using the following SQL : CREATE TABLE table_2886617_2 (player VARCHAR, nhl_team VARCHAR)
SELECT player FROM table_2886617_2 WHERE nhl_team = "New York Rangers"
Write a SQL query that answers the following question: What position did the draft pick for Toronto Maple Leafs play?
The relevant table was constructed using the following SQL : CREATE TABLE table_2886617_8 (position VARCHAR, nhl_team VARCHAR)
SELECT position FROM table_2886617_8 WHERE nhl_team = "Toronto Maple Leafs"
Write a SQL query that answers the following question: Who did Edmonton Oilers get for their draft pick?
The relevant table was constructed using the following SQL : CREATE TABLE table_2886617_8 (player VARCHAR, nhl_team VARCHAR)
SELECT player FROM table_2886617_8 WHERE nhl_team = "Edmonton Oilers"
Write a SQL query that answers the following question: What college team did Milan Kostolny play for?
The relevant table was constructed using the following SQL : CREATE TABLE table_2886617_8 (college_junior_club_team VARCHAR, player VARCHAR)
SELECT college_junior_club_team FROM table_2886617_8 WHERE player = "Milan Kostolny"
Write a SQL query that answers the following question: What player was picked for Buffalo Sabres?
The relevant table was constructed using the following SQL : CREATE TABLE table_2886617_8 (player VARCHAR, nhl_team VARCHAR)
SELECT player FROM table_2886617_8 WHERE nhl_team = "Buffalo Sabres"
Write a SQL query that answers the following question: What NHL team picked Sergei Luchinkin?
The relevant table was constructed using the following SQL : CREATE TABLE table_2886617_8 (nhl_team VARCHAR, player VARCHAR)
SELECT nhl_team FROM table_2886617_8 WHERE player = "Sergei Luchinkin"
Write a SQL query that answers the following question: What is the minimum MotoGP/500cc ranking?
The relevant table was constructed using the following SQL : CREATE TABLE table_2889810_1 (motogp_500cc INTEGER)
SELECT MIN(motogp_500cc) FROM table_2889810_1
Write a SQL query that answers the following question: Who was the tournament winner in the Southwestern Athletic Conference?
The relevant table was constructed using the following SQL : CREATE TABLE table_28884880_4 (tournament_winner VARCHAR, conference VARCHAR)
SELECT tournament_winner FROM table_28884880_4 WHERE conference = "Southwestern Athletic conference"
Write a SQL query that answers the following question: what is the crashandride cymbalpads for the drumset name td-9k2
The relevant table was constructed using the following SQL : CREATE TABLE table_2889300_6 (crashandride_cymbalpads VARCHAR, drumset_name VARCHAR)
SELECT crashandride_cymbalpads FROM table_2889300_6 WHERE drumset_name = "TD-9K2"
Write a SQL query that answers the following question: how many drumsets of drumstand (oftenoptional) with hd-1/3stand and tom-tom pads is 3xcloth-head are
The relevant table was constructed using the following SQL : CREATE TABLE table_2889300_6 (drumset_name VARCHAR, drumstand__oftenoptional_ VARCHAR, tom_tom_pads VARCHAR)
SELECT COUNT(drumset_name) FROM table_2889300_6 WHERE drumstand__oftenoptional_ = "HD-1/3Stand" AND tom_tom_pads = "3xCloth-Head"
Write a SQL query that answers the following question: in which year was available the rubber as kickdrum pad
The relevant table was constructed using the following SQL : CREATE TABLE table_2889300_6 (years_available VARCHAR, kickdrum_pad VARCHAR)
SELECT years_available FROM table_2889300_6 WHERE kickdrum_pad = "Rubber"
Write a SQL query that answers the following question: in the drum module td-5 what are the tom-tom pads
The relevant table was constructed using the following SQL : CREATE TABLE table_2889300_6 (tom_tom_pads VARCHAR, drum_module VARCHAR)
SELECT tom_tom_pads FROM table_2889300_6 WHERE drum_module = "TD-5"
Write a SQL query that answers the following question: for the drumset name td-15k how many snare pads are
The relevant table was constructed using the following SQL : CREATE TABLE table_2889300_6 (snare_pad VARCHAR, drumset_name VARCHAR)
SELECT COUNT(snare_pad) FROM table_2889300_6 WHERE drumset_name = "TD-15K"
Write a SQL query that answers the following question: Who won the race on June 26?
The relevant table was constructed using the following SQL : CREATE TABLE table_28925058_1 (race_winner VARCHAR, date VARCHAR)
SELECT race_winner FROM table_28925058_1 WHERE date = "June 26"
Write a SQL query that answers the following question: Who won the race on August 15?
The relevant table was constructed using the following SQL : CREATE TABLE table_28925058_1 (race_winner VARCHAR, date VARCHAR)
SELECT race_winner FROM table_28925058_1 WHERE date = "August 15"
Write a SQL query that answers the following question: What is the date of the Italian Grand Prix?
The relevant table was constructed using the following SQL : CREATE TABLE table_28925058_1 (date VARCHAR, grand_prix VARCHAR)
SELECT date FROM table_28925058_1 WHERE grand_prix = "Italian grand_prix"
Write a SQL query that answers the following question: How many dates did Daniel Ruiz win the Spanish Grand Prix?
The relevant table was constructed using the following SQL : CREATE TABLE table_28925058_1 (date VARCHAR, grand_prix VARCHAR, race_winner VARCHAR)
SELECT COUNT(date) FROM table_28925058_1 WHERE grand_prix = "Spanish grand_prix" AND race_winner = "Daniel Ruiz"
Write a SQL query that answers the following question: Who won the race on May 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_28925058_1 (race_winner VARCHAR, date VARCHAR)
SELECT race_winner FROM table_28925058_1 WHERE date = "May 1"
Write a SQL query that answers the following question: When james rutherford is the incumbent how many dates are there?
The relevant table was constructed using the following SQL : CREATE TABLE table_28898974_3 (date VARCHAR, incumbent VARCHAR)
SELECT COUNT(date) FROM table_28898974_3 WHERE incumbent = "James Rutherford"
Write a SQL query that answers the following question: When edward shaw is the winner what is the date?
The relevant table was constructed using the following SQL : CREATE TABLE table_28898974_3 (date VARCHAR, winner VARCHAR)
SELECT date FROM table_28898974_3 WHERE winner = "Edward Shaw"
Write a SQL query that answers the following question: When peninsula is the electorate what is the reason?
The relevant table was constructed using the following SQL : CREATE TABLE table_28898974_3 (reason VARCHAR, electorate VARCHAR)
SELECT reason FROM table_28898974_3 WHERE electorate = "Peninsula"
Write a SQL query that answers the following question: When james seaton is the incumbent what is the reason?
The relevant table was constructed using the following SQL : CREATE TABLE table_28898974_3 (reason VARCHAR, incumbent VARCHAR)
SELECT reason FROM table_28898974_3 WHERE incumbent = "James Seaton"
Write a SQL query that answers the following question: What was the handicap when the prize money was 120s?
The relevant table was constructed using the following SQL : CREATE TABLE table_2896329_1 (handicap VARCHAR, prize_money VARCHAR)
SELECT handicap FROM table_2896329_1 WHERE prize_money = "120s"
Write a SQL query that answers the following question: On what date was the handicap 8 st 12 lb?
The relevant table was constructed using the following SQL : CREATE TABLE table_2896329_1 (date VARCHAR, handicap VARCHAR)
SELECT date FROM table_2896329_1 WHERE handicap = "8 st 12 lb"
Write a SQL query that answers the following question: On what date was the track Ballarat?
The relevant table was constructed using the following SQL : CREATE TABLE table_2896329_1 (date VARCHAR, track VARCHAR)
SELECT date FROM table_2896329_1 WHERE track = "Ballarat"
Write a SQL query that answers the following question: How many literate males are there in the taluka name nevasa?
The relevant table was constructed using the following SQL : CREATE TABLE table_28939145_2 (Literate INTEGER, taluka_name VARCHAR)
SELECT MAX(Literate) AS male FROM table_28939145_2 WHERE taluka_name = "Nevasa"
Write a SQL query that answers the following question: how many literate males are there that has a district population of 6.65?
The relevant table was constructed using the following SQL : CREATE TABLE table_28939145_2 (Literate VARCHAR, _percentage_of_district_population VARCHAR)
SELECT Literate AS male FROM table_28939145_2 WHERE _percentage_of_district_population = "6.65"
Write a SQL query that answers the following question: How many males are in the group that has an amount of 139361
The relevant table was constructed using the following SQL : CREATE TABLE table_28939145_2 (male VARCHAR, female VARCHAR)
SELECT male FROM table_28939145_2 WHERE female = 139361
Write a SQL query that answers the following question: List all the runners-up on 16 October 2012?
The relevant table was constructed using the following SQL : CREATE TABLE table_28962227_1 (runners_up VARCHAR, finale VARCHAR)
SELECT runners_up FROM table_28962227_1 WHERE finale = "16 October 2012"
Write a SQL query that answers the following question: What is the date when Miranda Gore Browne was runner-up?
The relevant table was constructed using the following SQL : CREATE TABLE table_28962227_1 (finale VARCHAR, runners_up VARCHAR)
SELECT finale FROM table_28962227_1 WHERE runners_up = "Miranda Gore Browne"
Write a SQL query that answers the following question: What is the date of the finale where Holly Bell was runner-up?
The relevant table was constructed using the following SQL : CREATE TABLE table_28962227_1 (finale VARCHAR, runners_up VARCHAR)
SELECT finale FROM table_28962227_1 WHERE runners_up = "Holly Bell"
Write a SQL query that answers the following question: What is the premiere of the season where Holly Bell was the runner-up?
The relevant table was constructed using the following SQL : CREATE TABLE table_28962227_1 (premiere VARCHAR, runners_up VARCHAR)
SELECT premiere FROM table_28962227_1 WHERE runners_up = "Holly Bell"
Write a SQL query that answers the following question: How many runners-up were there when Joanne Wheatley won?
The relevant table was constructed using the following SQL : CREATE TABLE table_28962227_1 (runners_up VARCHAR, winner VARCHAR)
SELECT COUNT(runners_up) FROM table_28962227_1 WHERE winner = "Joanne Wheatley"