instruction
stringlengths
67
299
input
stringlengths
88
550
output
stringlengths
32
484
Write a SQL query that answers the following question: What is the lowest number of points for game 32?
The relevant table was constructed using the following SQL : CREATE TABLE table_27539808_5 (points INTEGER, game VARCHAR)
SELECT MIN(points) FROM table_27539808_5 WHERE game = 32
Write a SQL query that answers the following question: What is the location and attendance total from the game on December 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_27539808_5 (location_attendance VARCHAR, december VARCHAR)
SELECT location_attendance FROM table_27539808_5 WHERE december = 1
Write a SQL query that answers the following question: Who directed the episode with 899000 viewers?
The relevant table was constructed using the following SQL : CREATE TABLE table_27547668_3 (directed_by VARCHAR, viewers VARCHAR)
SELECT directed_by FROM table_27547668_3 WHERE viewers = 899000
Write a SQL query that answers the following question: What is the smallest numbered episode in the series listed?
The relevant table was constructed using the following SQL : CREATE TABLE table_27547668_3 (_number INTEGER)
SELECT MIN(_number) FROM table_27547668_3
Write a SQL query that answers the following question: How many people watched episode number 13?
The relevant table was constructed using the following SQL : CREATE TABLE table_27547668_3 (viewers VARCHAR, _number VARCHAR)
SELECT viewers FROM table_27547668_3 WHERE _number = 13
Write a SQL query that answers the following question: What episode number in the season was written by Greg nelson and directed by Keith samples?
The relevant table was constructed using the following SQL : CREATE TABLE table_27547668_3 (no VARCHAR, written_by VARCHAR, directed_by VARCHAR)
SELECT no FROM table_27547668_3 WHERE written_by = "Greg Nelson" AND directed_by = "Keith Samples"
Write a SQL query that answers the following question: What is the title of the episode with production code 102?
The relevant table was constructed using the following SQL : CREATE TABLE table_27547668_2 (title VARCHAR, prod_code VARCHAR)
SELECT title FROM table_27547668_2 WHERE prod_code = 102
Write a SQL query that answers the following question: What is the original air date of # 6?
The relevant table was constructed using the following SQL : CREATE TABLE table_27547668_2 (original_airdate VARCHAR, _number VARCHAR)
SELECT original_airdate FROM table_27547668_2 WHERE _number = 6
Write a SQL query that answers the following question: What is the original air date of the episode with 908000 viewers?
The relevant table was constructed using the following SQL : CREATE TABLE table_27547668_2 (original_airdate VARCHAR, viewers VARCHAR)
SELECT original_airdate FROM table_27547668_2 WHERE viewers = 908000
Write a SQL query that answers the following question: How many season premieres had 15.27 million viewers?
The relevant table was constructed using the following SQL : CREATE TABLE table_27553627_2 (season VARCHAR, viewers__in_millions_ VARCHAR)
SELECT COUNT(season) AS premiere FROM table_27553627_2 WHERE viewers__in_millions_ = "15.27"
Write a SQL query that answers the following question: When was the season finale that ranked 20th?
The relevant table was constructed using the following SQL : CREATE TABLE table_27553627_2 (season VARCHAR, rank VARCHAR)
SELECT season AS finale FROM table_27553627_2 WHERE rank = "20th"
Write a SQL query that answers the following question: What tv season year had 14.54 million viewers?
The relevant table was constructed using the following SQL : CREATE TABLE table_27553627_2 (tv_season VARCHAR, viewers__in_millions_ VARCHAR)
SELECT tv_season FROM table_27553627_2 WHERE viewers__in_millions_ = "14.54"
Write a SQL query that answers the following question: What episode number had 14.41 million viewers?
The relevant table was constructed using the following SQL : CREATE TABLE table_27553627_2 (episodes INTEGER, viewers__in_millions_ VARCHAR)
SELECT MAX(episodes) FROM table_27553627_2 WHERE viewers__in_millions_ = "14.41"
Write a SQL query that answers the following question: What is the minimum rnd at Laguna Seca?
The relevant table was constructed using the following SQL : CREATE TABLE table_27561505_2 (rnd INTEGER, circuit VARCHAR)
SELECT MIN(rnd) FROM table_27561505_2 WHERE circuit = "Laguna Seca"
Write a SQL query that answers the following question: Name the gt 2.0 winning team for sports 2.0 winning team for #16 trans ocean motors for castle rock
The relevant table was constructed using the following SQL : CREATE TABLE table_27561503_2 (gt_20_winning_team VARCHAR, sports_20_winning_team VARCHAR, circuit VARCHAR)
SELECT COUNT(gt_20_winning_team) FROM table_27561503_2 WHERE sports_20_winning_team = "#16 Trans Ocean Motors" AND circuit = "Castle Rock"
Write a SQL query that answers the following question: Name the results for #23 lotus
The relevant table was constructed using the following SQL : CREATE TABLE table_27561503_2 (results VARCHAR, sports_20_winning_team VARCHAR)
SELECT COUNT(results) FROM table_27561503_2 WHERE sports_20_winning_team = "#23 Lotus"
Write a SQL query that answers the following question: Name results for herb wetanson
The relevant table was constructed using the following SQL : CREATE TABLE table_27561503_2 (results VARCHAR, gt_20_winning_team VARCHAR)
SELECT results FROM table_27561503_2 WHERE gt_20_winning_team = "Herb Wetanson"
Write a SQL query that answers the following question: What was the province if the electorate was Collingwood?
The relevant table was constructed using the following SQL : CREATE TABLE table_27592654_2 (province VARCHAR, electorate VARCHAR)
SELECT province FROM table_27592654_2 WHERE electorate = "Collingwood"
Write a SQL query that answers the following question: What was the province with an election date of 5 cannot handle non-empty timestamp argument! 1861?
The relevant table was constructed using the following SQL : CREATE TABLE table_27592654_2 (province VARCHAR, election_date VARCHAR)
SELECT province FROM table_27592654_2 WHERE election_date = "5 Cannot handle non-empty timestamp argument! 1861"
Write a SQL query that answers the following question: Name the races for final placing being 5th
The relevant table was constructed using the following SQL : CREATE TABLE table_27582888_1 (races VARCHAR, final_placing VARCHAR)
SELECT races FROM table_27582888_1 WHERE final_placing = "5th"
Write a SQL query that answers the following question: Name the post poles for 4 podiums
The relevant table was constructed using the following SQL : CREATE TABLE table_27582888_1 (poles INTEGER, podiums VARCHAR)
SELECT MAX(poles) FROM table_27582888_1 WHERE podiums = 4
Write a SQL query that answers the following question: What was Barreto's song choice when the theme was samba?
The relevant table was constructed using the following SQL : CREATE TABLE table_27614571_1 (song_choice VARCHAR, theme VARCHAR)
SELECT song_choice FROM table_27614571_1 WHERE theme = "Samba"
Write a SQL query that answers the following question: What was Barreto's song choice where the original artist was Patricia Marx?
The relevant table was constructed using the following SQL : CREATE TABLE table_27614571_1 (song_choice VARCHAR, original_artist VARCHAR)
SELECT song_choice FROM table_27614571_1 WHERE original_artist = "Patricia Marx"
Write a SQL query that answers the following question: In which week # was the original artist of Barreto's song choice was Leila Pinheiro?
The relevant table was constructed using the following SQL : CREATE TABLE table_27614571_1 (week__number VARCHAR, original_artist VARCHAR)
SELECT week__number FROM table_27614571_1 WHERE original_artist = "Leila Pinheiro"
Write a SQL query that answers the following question: When did the earliest tournament happened?
The relevant table was constructed using the following SQL : CREATE TABLE table_27611593_5 (year INTEGER)
SELECT MIN(year) FROM table_27611593_5
Write a SQL query that answers the following question: Who was Petrova's partner where she scored 6–2, 3–6, 6–7 (7-9)?
The relevant table was constructed using the following SQL : CREATE TABLE table_27611593_5 (partner VARCHAR, score VARCHAR)
SELECT partner FROM table_27611593_5 WHERE score = "6–2, 3–6, 6–7 (7-9)"
Write a SQL query that answers the following question: Who were Petrova's opponents with Vania King?
The relevant table was constructed using the following SQL : CREATE TABLE table_27611593_5 (opponents VARCHAR, partner VARCHAR)
SELECT opponents FROM table_27611593_5 WHERE partner = "Vania King"
Write a SQL query that answers the following question: Who wrote the episode with the production code 211?
The relevant table was constructed using the following SQL : CREATE TABLE table_27610775_1 (written_by VARCHAR, prod_code VARCHAR)
SELECT written_by FROM table_27610775_1 WHERE prod_code = 211
Write a SQL query that answers the following question: What is the maximum production code of the episode directed by Sean McNamara?
The relevant table was constructed using the following SQL : CREATE TABLE table_27610775_1 (prod_code INTEGER, directed_by VARCHAR)
SELECT MAX(prod_code) FROM table_27610775_1 WHERE directed_by = "Sean McNamara"
Write a SQL query that answers the following question: How many audition city's are there with an episode air date of June 24, 2010?
The relevant table was constructed using the following SQL : CREATE TABLE table_27615445_1 (audition_city VARCHAR, episode_air_date VARCHAR)
SELECT COUNT(audition_city) FROM table_27615445_1 WHERE episode_air_date = "June 24, 2010"
Write a SQL query that answers the following question: List all episode air dates that auditioned at Nego Quirido Sambadrome?
The relevant table was constructed using the following SQL : CREATE TABLE table_27615445_1 (episode_air_date VARCHAR, audition_venue VARCHAR)
SELECT episode_air_date FROM table_27615445_1 WHERE audition_venue = "Nego Quirido Sambadrome"
Write a SQL query that answers the following question: List all episode air dates where Luiza Possi was the guest fourth judge?
The relevant table was constructed using the following SQL : CREATE TABLE table_27615445_1 (episode_air_date VARCHAR, guest_fourth_judge VARCHAR)
SELECT episode_air_date FROM table_27615445_1 WHERE guest_fourth_judge = "Luiza Possi"
Write a SQL query that answers the following question: How many episode air dates are there for auditioning city Rio De Janeiro?
The relevant table was constructed using the following SQL : CREATE TABLE table_27615445_1 (episode_air_date VARCHAR, audition_city VARCHAR)
SELECT COUNT(episode_air_date) FROM table_27615445_1 WHERE audition_city = "Rio de Janeiro"
Write a SQL query that answers the following question: Where was the audition venue where Peninha was the guest fourth judge?
The relevant table was constructed using the following SQL : CREATE TABLE table_27615445_1 (audition_venue VARCHAR, guest_fourth_judge VARCHAR)
SELECT audition_venue FROM table_27615445_1 WHERE guest_fourth_judge = "Peninha"
Write a SQL query that answers the following question: Which song was picked that was originally performed by Marisa Monte?
The relevant table was constructed using the following SQL : CREATE TABLE table_27616663_1 (song_choice VARCHAR, original_artist VARCHAR)
SELECT song_choice FROM table_27616663_1 WHERE original_artist = "Marisa Monte"
Write a SQL query that answers the following question: What was the result of the performance of the song by Caetano Veloso?
The relevant table was constructed using the following SQL : CREATE TABLE table_27616663_1 (result VARCHAR, original_artist VARCHAR)
SELECT result FROM table_27616663_1 WHERE original_artist = "Caetano Veloso"
Write a SQL query that answers the following question: What was the order # of the theme Male Singers?
The relevant table was constructed using the following SQL : CREATE TABLE table_27616663_1 (order__number VARCHAR, theme VARCHAR)
SELECT order__number FROM table_27616663_1 WHERE theme = "Male Singers"
Write a SQL query that answers the following question: What was the theme when original artist Rosana's song was performed?
The relevant table was constructed using the following SQL : CREATE TABLE table_27616663_1 (theme VARCHAR, original_artist VARCHAR)
SELECT theme FROM table_27616663_1 WHERE original_artist = "Rosana"
Write a SQL query that answers the following question: How many different weeks are there in order number 4 that were judge's choice?
The relevant table was constructed using the following SQL : CREATE TABLE table_27614707_1 (week__number VARCHAR, theme VARCHAR, order__number VARCHAR)
SELECT COUNT(week__number) FROM table_27614707_1 WHERE theme = "Judge's Choice" AND order__number = "4"
Write a SQL query that answers the following question: What Marisa Monte song choice was song during top 5?
The relevant table was constructed using the following SQL : CREATE TABLE table_27614707_1 (song_choice VARCHAR, week__number VARCHAR, original_artist VARCHAR)
SELECT song_choice FROM table_27614707_1 WHERE week__number = "Top 5" AND original_artist = "Marisa Monte"
Write a SQL query that answers the following question: Who was the original artist of the Top 12 Men theme?
The relevant table was constructed using the following SQL : CREATE TABLE table_27614707_1 (original_artist VARCHAR, theme VARCHAR)
SELECT original_artist FROM table_27614707_1 WHERE theme = "Top 12 Men"
Write a SQL query that answers the following question: What was the result of the Top 12 Men theme?
The relevant table was constructed using the following SQL : CREATE TABLE table_27614707_1 (result VARCHAR, theme VARCHAR)
SELECT result FROM table_27614707_1 WHERE theme = "Top 12 Men"
Write a SQL query that answers the following question: What week number was the result bottom 3?
The relevant table was constructed using the following SQL : CREATE TABLE table_27614707_1 (week__number VARCHAR, result VARCHAR)
SELECT week__number FROM table_27614707_1 WHERE result = "Bottom 3"
Write a SQL query that answers the following question: How many points per game did he have when he had 1.5 assists per game?
The relevant table was constructed using the following SQL : CREATE TABLE table_2761641_1 (points_per_game VARCHAR, assists_per_game VARCHAR)
SELECT points_per_game FROM table_2761641_1 WHERE assists_per_game = "1.5"
Write a SQL query that answers the following question: How many rebounds per game did he have at the 2006 fiba world championship?
The relevant table was constructed using the following SQL : CREATE TABLE table_2761641_1 (rebounds_per_game VARCHAR, tournament VARCHAR)
SELECT rebounds_per_game FROM table_2761641_1 WHERE tournament = "2006 FIBA World Championship"
Write a SQL query that answers the following question: How many rebounds per game did he have at the 2003 eurobasket?
The relevant table was constructed using the following SQL : CREATE TABLE table_2761641_1 (rebounds_per_game VARCHAR, tournament VARCHAR)
SELECT rebounds_per_game FROM table_2761641_1 WHERE tournament = "2003 EuroBasket"
Write a SQL query that answers the following question: How many assists per game did he have when he had 6.8 points per game?
The relevant table was constructed using the following SQL : CREATE TABLE table_2761641_1 (assists_per_game VARCHAR, points_per_game VARCHAR)
SELECT assists_per_game FROM table_2761641_1 WHERE points_per_game = "6.8"
Write a SQL query that answers the following question: which is the production code when the number of the episode in series is 87?
The relevant table was constructed using the following SQL : CREATE TABLE table_27622417_1 (prod_code VARCHAR, no_in_series VARCHAR)
SELECT prod_code FROM table_27622417_1 WHERE no_in_series = 87
Write a SQL query that answers the following question: what is the number of the episode in the series whose production code is 405?
The relevant table was constructed using the following SQL : CREATE TABLE table_27622417_1 (no_in_series VARCHAR, prod_code VARCHAR)
SELECT no_in_series FROM table_27622417_1 WHERE prod_code = "405"
Write a SQL query that answers the following question: when was the premiere of the episode whose production code is 415?
The relevant table was constructed using the following SQL : CREATE TABLE table_27622417_1 (original_us_air_date VARCHAR, prod_code VARCHAR)
SELECT original_us_air_date FROM table_27622417_1 WHERE prod_code = "415"
Write a SQL query that answers the following question: who were the writers in the episode whose production code was 411?
The relevant table was constructed using the following SQL : CREATE TABLE table_27622417_1 (written_by VARCHAR, prod_code VARCHAR)
SELECT written_by FROM table_27622417_1 WHERE prod_code = "411"
Write a SQL query that answers the following question: who were the director of the episode whose number in the season is 17?
The relevant table was constructed using the following SQL : CREATE TABLE table_27622417_1 (directed_by VARCHAR, no_in_season VARCHAR)
SELECT directed_by FROM table_27622417_1 WHERE no_in_season = 17
Write a SQL query that answers the following question: Name the currency for negotiable debt being 1300
The relevant table was constructed using the following SQL : CREATE TABLE table_2764267_2 (currency VARCHAR, negotiable_debt_at_mid_2005___us_dollar_bn_equivalent_ VARCHAR)
SELECT currency FROM table_2764267_2 WHERE negotiable_debt_at_mid_2005___us_dollar_bn_equivalent_ = 1300
Write a SQL query that answers the following question: Name the country that has the yen
The relevant table was constructed using the following SQL : CREATE TABLE table_2764267_2 (country VARCHAR, currency VARCHAR)
SELECT country FROM table_2764267_2 WHERE currency = "Yen"
Write a SQL query that answers the following question: Name the number of countries that have the us dollar
The relevant table was constructed using the following SQL : CREATE TABLE table_2764267_2 (country VARCHAR, currency VARCHAR)
SELECT COUNT(country) FROM table_2764267_2 WHERE currency = "US dollar"
Write a SQL query that answers the following question: Name the country for the us dollar
The relevant table was constructed using the following SQL : CREATE TABLE table_2764267_2 (country VARCHAR, currency VARCHAR)
SELECT country FROM table_2764267_2 WHERE currency = "US dollar"
Write a SQL query that answers the following question: How many teams have a head coach named mahdi ali?
The relevant table was constructed using the following SQL : CREATE TABLE table_27631756_2 (team VARCHAR, head_coach VARCHAR)
SELECT COUNT(team) FROM table_27631756_2 WHERE head_coach = "Mahdi Ali"
Write a SQL query that answers the following question: How many captains have the kitmaker as n/a?
The relevant table was constructed using the following SQL : CREATE TABLE table_27631756_2 (captain VARCHAR, kitmaker VARCHAR)
SELECT COUNT(captain) FROM table_27631756_2 WHERE kitmaker = "N/A"
Write a SQL query that answers the following question: How many kitmaker correspond to team ittihad kalba?
The relevant table was constructed using the following SQL : CREATE TABLE table_27631756_2 (kitmaker VARCHAR, team VARCHAR)
SELECT COUNT(kitmaker) FROM table_27631756_2 WHERE team = "Ittihad Kalba"
Write a SQL query that answers the following question: What is the name of the captain when teh shirt sponsor is n/a?
The relevant table was constructed using the following SQL : CREATE TABLE table_27631756_2 (captain VARCHAR, shirt_sponsor VARCHAR)
SELECT captain FROM table_27631756_2 WHERE shirt_sponsor = "N/A"
Write a SQL query that answers the following question: How many captains when the shirt sponsor is toshiba?
The relevant table was constructed using the following SQL : CREATE TABLE table_27631756_2 (captain VARCHAR, shirt_sponsor VARCHAR)
SELECT COUNT(captain) FROM table_27631756_2 WHERE shirt_sponsor = "Toshiba"
Write a SQL query that answers the following question: Who is the chairman when teh captain is fawzi bashir?
The relevant table was constructed using the following SQL : CREATE TABLE table_27631756_2 (chairman VARCHAR, captain VARCHAR)
SELECT chairman FROM table_27631756_2 WHERE captain = "Fawzi Bashir"
Write a SQL query that answers the following question: Which season had f/laps is 0 and races is 2?
The relevant table was constructed using the following SQL : CREATE TABLE table_27631002_1 (season VARCHAR, f_laps VARCHAR, races VARCHAR)
SELECT season FROM table_27631002_1 WHERE f_laps = 0 AND races = 2
Write a SQL query that answers the following question: How many entries are there for points for the 6th position?
The relevant table was constructed using the following SQL : CREATE TABLE table_27631002_1 (points VARCHAR, position VARCHAR)
SELECT COUNT(points) FROM table_27631002_1 WHERE position = "6th"
Write a SQL query that answers the following question: How many season are shown for the 2nd position?
The relevant table was constructed using the following SQL : CREATE TABLE table_27631002_1 (season VARCHAR, position VARCHAR)
SELECT COUNT(season) FROM table_27631002_1 WHERE position = "2nd"
Write a SQL query that answers the following question: What are the wins for the 7th position?
The relevant table was constructed using the following SQL : CREATE TABLE table_27631002_1 (wins VARCHAR, position VARCHAR)
SELECT wins FROM table_27631002_1 WHERE position = "7th"
Write a SQL query that answers the following question: What is the position for the austria formel 3 cup series?
The relevant table was constructed using the following SQL : CREATE TABLE table_27631002_1 (position VARCHAR, series VARCHAR)
SELECT position FROM table_27631002_1 WHERE series = "Austria Formel 3 Cup"
Write a SQL query that answers the following question: How many different PPI does the model with ppcm of 87 have?
The relevant table was constructed using the following SQL : CREATE TABLE table_27653752_1 (ppi__pixels_per_inch__ VARCHAR, ppcm__pixels_per_cm__ VARCHAR)
SELECT COUNT(ppi__pixels_per_inch__) FROM table_27653752_1 WHERE ppcm__pixels_per_cm__ = 87
Write a SQL query that answers the following question: What's the resolution of the model with a PPD of 69?
The relevant table was constructed using the following SQL : CREATE TABLE table_27653752_1 (resolution VARCHAR, pixels_per_degree__ppd_ VARCHAR)
SELECT resolution FROM table_27653752_1 WHERE pixels_per_degree__ppd_ = 69
Write a SQL query that answers the following question: What is the IHSA music class for the mascot that is the lancers?
The relevant table was constructed using the following SQL : CREATE TABLE table_27653955_1 (ihsa_music_class VARCHAR, mascot VARCHAR)
SELECT ihsa_music_class FROM table_27653955_1 WHERE mascot = "Lancers"
Write a SQL query that answers the following question: What is the IHSA cheerleading class for the enrollment of 2600?
The relevant table was constructed using the following SQL : CREATE TABLE table_27653955_1 (ihsa_cheerleading_class VARCHAR, enrollment VARCHAR)
SELECT ihsa_cheerleading_class FROM table_27653955_1 WHERE enrollment = 2600
Write a SQL query that answers the following question: What are the colors for the enrollment of 2020?
The relevant table was constructed using the following SQL : CREATE TABLE table_27653955_1 (colors VARCHAR, enrollment VARCHAR)
SELECT colors FROM table_27653955_1 WHERE enrollment = 2020
Write a SQL query that answers the following question: What is the smallest number for old membership total?
The relevant table was constructed using the following SQL : CREATE TABLE table_27671835_3 (old_membership_total INTEGER)
SELECT MIN(old_membership_total) FROM table_27671835_3
Write a SQL query that answers the following question: What is the lowest number of members lost when the net change is −1?
The relevant table was constructed using the following SQL : CREATE TABLE table_27671835_3 (members_lost INTEGER, net_change VARCHAR)
SELECT MIN(members_lost) FROM table_27671835_3 WHERE net_change = "−1"
Write a SQL query that answers the following question: What is the new membership total if the members lost is bigger than 1.0?
The relevant table was constructed using the following SQL : CREATE TABLE table_27671835_3 (new_membership_total INTEGER, members_lost INTEGER)
SELECT MAX(new_membership_total) FROM table_27671835_3 WHERE members_lost > 1.0
Write a SQL query that answers the following question: How many members were added at the nchc (men only) conference?
The relevant table was constructed using the following SQL : CREATE TABLE table_27671835_3 (members_added VARCHAR, conference VARCHAR)
SELECT members_added FROM table_27671835_3 WHERE conference = "NCHC (men only)"
Write a SQL query that answers the following question: What was the new membership total at the nchc (men only) conference?
The relevant table was constructed using the following SQL : CREATE TABLE table_27671835_3 (new_membership_total VARCHAR, conference VARCHAR)
SELECT new_membership_total FROM table_27671835_3 WHERE conference = "NCHC (men only)"
Write a SQL query that answers the following question: What is the outgoing manager when the incoming manager is štefan tarkovič?
The relevant table was constructed using the following SQL : CREATE TABLE table_27683516_3 (outgoing_manager VARCHAR, incoming_manager VARCHAR)
SELECT outgoing_manager FROM table_27683516_3 WHERE incoming_manager = "Štefan Tarkovič"
Write a SQL query that answers the following question: How many dates of vacancy were on 30 october 2010?
The relevant table was constructed using the following SQL : CREATE TABLE table_27683516_3 (team VARCHAR, date_of_vacancy VARCHAR)
SELECT COUNT(team) FROM table_27683516_3 WHERE date_of_vacancy = "30 October 2010"
Write a SQL query that answers the following question: What is the manner of departure when the date of vacancy is 28 september 2010?
The relevant table was constructed using the following SQL : CREATE TABLE table_27683516_3 (manner_of_departure VARCHAR, date_of_vacancy VARCHAR)
SELECT manner_of_departure FROM table_27683516_3 WHERE date_of_vacancy = "28 September 2010"
Write a SQL query that answers the following question: What is the date of appointment when the date of vacancy is 24 november 2010?
The relevant table was constructed using the following SQL : CREATE TABLE table_27683516_3 (date_of_appointment VARCHAR, date_of_vacancy VARCHAR)
SELECT date_of_appointment FROM table_27683516_3 WHERE date_of_vacancy = "24 November 2010"
Write a SQL query that answers the following question: What is the outgoing manager when the date of vacancy is 10 october 2010?
The relevant table was constructed using the following SQL : CREATE TABLE table_27683516_3 (outgoing_manager VARCHAR, date_of_vacancy VARCHAR)
SELECT outgoing_manager FROM table_27683516_3 WHERE date_of_vacancy = "10 October 2010"
Write a SQL query that answers the following question: What is the table when the team is slovan bratislava?
The relevant table was constructed using the following SQL : CREATE TABLE table_27683516_3 (table VARCHAR, team VARCHAR)
SELECT table FROM table_27683516_3 WHERE team = "Slovan Bratislava"
Write a SQL query that answers the following question: how many people come to visit when the 1654 exhibitions
The relevant table was constructed using the following SQL : CREATE TABLE table_27685921_1 (visitors__total_ VARCHAR, exhibitors__total_ VARCHAR)
SELECT COUNT(visitors__total_) FROM table_27685921_1 WHERE exhibitors__total_ = 1654
Write a SQL query that answers the following question: what is the most time where exhibitions is 1701
The relevant table was constructed using the following SQL : CREATE TABLE table_27685921_1 (year INTEGER, exhibitors__total_ VARCHAR)
SELECT MAX(year) FROM table_27685921_1 WHERE exhibitors__total_ = 1701
Write a SQL query that answers the following question: who had high points on march 14?
The relevant table was constructed using the following SQL : CREATE TABLE table_27700375_10 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_27700375_10 WHERE date = "March 14"
Write a SQL query that answers the following question: who had high rebounds at game 69?
The relevant table was constructed using the following SQL : CREATE TABLE table_27700375_10 (high_rebounds VARCHAR, game VARCHAR)
SELECT high_rebounds FROM table_27700375_10 WHERE game = 69
Write a SQL query that answers the following question: Who were the 76ers opponents on January 17?
The relevant table was constructed using the following SQL : CREATE TABLE table_27698941_8 (team VARCHAR, date VARCHAR)
SELECT team FROM table_27698941_8 WHERE date = "January 17"
Write a SQL query that answers the following question: How many players held the high point records for game 34?
The relevant table was constructed using the following SQL : CREATE TABLE table_27698941_8 (high_points VARCHAR, game VARCHAR)
SELECT COUNT(high_points) FROM table_27698941_8 WHERE game = 34
Write a SQL query that answers the following question: What the win - loss recored for January 7?
The relevant table was constructed using the following SQL : CREATE TABLE table_27698941_8 (record VARCHAR, date VARCHAR)
SELECT record FROM table_27698941_8 WHERE date = "January 7"
Write a SQL query that answers the following question: How many people led in points during the game on October 5?
The relevant table was constructed using the following SQL : CREATE TABLE table_27698941_2 (high_points VARCHAR, date VARCHAR)
SELECT COUNT(high_points) FROM table_27698941_2 WHERE date = "October 5"
Write a SQL query that answers the following question: Name the date for the palace of auburn hills 14,554
The relevant table was constructed using the following SQL : CREATE TABLE table_27700375_11 (date VARCHAR, location_attendance VARCHAR)
SELECT date FROM table_27700375_11 WHERE location_attendance = "The Palace of Auburn Hills 14,554"
Write a SQL query that answers the following question: Name the least game for l 109–116 (ot)
The relevant table was constructed using the following SQL : CREATE TABLE table_27700375_11 (game INTEGER, score VARCHAR)
SELECT MIN(game) FROM table_27700375_11 WHERE score = "L 109–116 (OT)"
Write a SQL query that answers the following question: Name the high rebounds for charlotte
The relevant table was constructed using the following SQL : CREATE TABLE table_27700375_11 (high_rebounds VARCHAR, team VARCHAR)
SELECT high_rebounds FROM table_27700375_11 WHERE team = "Charlotte"
Write a SQL query that answers the following question: Name the high rebounds for wells fargo center 16,695
The relevant table was constructed using the following SQL : CREATE TABLE table_27700375_11 (high_rebounds VARCHAR, location_attendance VARCHAR)
SELECT high_rebounds FROM table_27700375_11 WHERE location_attendance = "Wells Fargo Center 16,695"
Write a SQL query that answers the following question: Who got the high rebounds if Brook Lopez (15) earned the high points?
The relevant table was constructed using the following SQL : CREATE TABLE table_27700375_8 (high_rebounds VARCHAR, high_points VARCHAR)
SELECT high_rebounds FROM table_27700375_8 WHERE high_points = "Brook Lopez (15)"
Write a SQL query that answers the following question: Who got high assists for team @ Indiana?
The relevant table was constructed using the following SQL : CREATE TABLE table_27700375_8 (high_assists VARCHAR, team VARCHAR)
SELECT high_assists FROM table_27700375_8 WHERE team = "@ Indiana"
Write a SQL query that answers the following question: How many record data were written when Devin Harris (6) was High Assists?
The relevant table was constructed using the following SQL : CREATE TABLE table_27700375_8 (record VARCHAR, high_assists VARCHAR)
SELECT COUNT(record) FROM table_27700375_8 WHERE high_assists = "Devin Harris (6)"
Write a SQL query that answers the following question: How many games were held on January 5?
The relevant table was constructed using the following SQL : CREATE TABLE table_27700375_8 (game VARCHAR, date VARCHAR)
SELECT COUNT(game) FROM table_27700375_8 WHERE date = "January 5"
Write a SQL query that answers the following question: Who had highest assists at the game against Houston?
The relevant table was constructed using the following SQL : CREATE TABLE table_27700530_11 (high_assists VARCHAR, team VARCHAR)
SELECT high_assists FROM table_27700530_11 WHERE team = "Houston"