question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
What date did the episode, with John O'Connell as the coach, premier?
CREATE TABLE table_2140071_5 (premier_date VARCHAR, coach VARCHAR)
{ "SQL_Query": "SELECT premier_date FROM table_2140071_5 WHERE coach = \"John O'Connell\"" }
Name the result for total attendance-regular season
CREATE TABLE table_21436373_11 (result_games VARCHAR, type_of_record VARCHAR)
{ "SQL_Query": "SELECT result_games FROM table_21436373_11 WHERE type_of_record = \"Total attendance-Regular season\"" }
Name the result/games for 52521
CREATE TABLE table_21436373_11 (result_games VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT result_games FROM table_21436373_11 WHERE attendance = 52521" }
Name the result/games for 54530
CREATE TABLE table_21436373_11 (result_games VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT result_games FROM table_21436373_11 WHERE attendance = 54530" }
Name the stadium for regular season game
CREATE TABLE table_21436373_11 (stadium VARCHAR, type_of_record VARCHAR)
{ "SQL_Query": "SELECT stadium FROM table_21436373_11 WHERE type_of_record = \"Regular season game\"" }
Name the result/games for 54741
CREATE TABLE table_21436373_11 (result_games VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT result_games FROM table_21436373_11 WHERE attendance = 54741" }
give the 1st leg score against ilisiakos
CREATE TABLE table_21434618_1 (team__number2 VARCHAR)
{ "SQL_Query": "SELECT 1 AS st_leg FROM table_21434618_1 WHERE team__number2 = \"Ilisiakos\"" }
which team #1 played again chalkida
CREATE TABLE table_21434618_1 (team__number1 VARCHAR, team__number2 VARCHAR)
{ "SQL_Query": "SELECT team__number1 FROM table_21434618_1 WHERE team__number2 = \"Chalkida\"" }
which team#2 played against poseidon neoi porroi
CREATE TABLE table_21434618_1 (team__number2 VARCHAR, team__number1 VARCHAR)
{ "SQL_Query": "SELECT team__number2 FROM table_21434618_1 WHERE team__number1 = \"Poseidon Neoi Porroi\"" }
When was the pre-season game record achieved?
CREATE TABLE table_21436373_10 (date_year VARCHAR, type_of_record VARCHAR)
{ "SQL_Query": "SELECT date_year FROM table_21436373_10 WHERE type_of_record = \"Pre-season game\"" }
What is the maximal number of people that attended any of these games?
CREATE TABLE table_21436373_10 (attendance INTEGER)
{ "SQL_Query": "SELECT MAX(attendance) FROM table_21436373_10" }
what is the attendance in 2011 records
CREATE TABLE table_21436373_12 (attendance VARCHAR, date_year VARCHAR)
{ "SQL_Query": "SELECT attendance FROM table_21436373_12 WHERE date_year = \"2011\"" }
what type of record was made where result/games is 10 games (29,606 avg.)
CREATE TABLE table_21436373_12 (type_of_record VARCHAR, result_games VARCHAR)
{ "SQL_Query": "SELECT type_of_record FROM table_21436373_12 WHERE result_games = \"10 games (29,606 avg.)\"" }
where was the total attendance-regular season record made
CREATE TABLE table_21436373_12 (stadium VARCHAR, type_of_record VARCHAR)
{ "SQL_Query": "SELECT stadium FROM table_21436373_12 WHERE type_of_record = \"Total attendance-Regular season\"" }
where was sun 09/12/93 record made
CREATE TABLE table_21436373_12 (stadium VARCHAR, date_year VARCHAR)
{ "SQL_Query": "SELECT stadium FROM table_21436373_12 WHERE date_year = \"Sun 09/12/93\"" }
how many records had result/games: 10 games (29,606 avg.)
CREATE TABLE table_21436373_12 (type_of_record VARCHAR, result_games VARCHAR)
{ "SQL_Query": "SELECT COUNT(type_of_record) FROM table_21436373_12 WHERE result_games = \"10 games (29,606 avg.)\"" }
what is the highest attendance for a total attendance-regular season record
CREATE TABLE table_21436373_12 (attendance INTEGER, type_of_record VARCHAR)
{ "SQL_Query": "SELECT MAX(attendance) FROM table_21436373_12 WHERE type_of_record = \"Total attendance-Regular season\"" }
When 2005 is the date/year how many measurements of attendance are there?
CREATE TABLE table_21436373_7 (attendance VARCHAR, date_year VARCHAR)
{ "SQL_Query": "SELECT COUNT(attendance) FROM table_21436373_7 WHERE date_year = \"2005\"" }
When 27585 is the attendance what are the results of the games?
CREATE TABLE table_21436373_7 (result_games VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT result_games FROM table_21436373_7 WHERE attendance = 27585" }
When 9 games (28,002 avg.) is the results of the games what is the date/year?
CREATE TABLE table_21436373_7 (date_year VARCHAR, result_games VARCHAR)
{ "SQL_Query": "SELECT date_year FROM table_21436373_7 WHERE result_games = \"9 games (28,002 avg.)\"" }
When 255627 is the attendance what is the stadium?
CREATE TABLE table_21436373_7 (stadium VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT stadium FROM table_21436373_7 WHERE attendance = 255627" }
What record was set on Tue 11/02/75?
CREATE TABLE table_21436373_8 (type_of_record VARCHAR, date_year VARCHAR)
{ "SQL_Query": "SELECT type_of_record FROM table_21436373_8 WHERE date_year = \"Tue 11/02/75\"" }
What record was set when the result/game was equal to 9 games (28,595 avg.)
CREATE TABLE table_21436373_8 (type_of_record VARCHAR, result_games VARCHAR)
{ "SQL_Query": "SELECT type_of_record FROM table_21436373_8 WHERE result_games = \"9 games (28,595 avg.)\"" }
What record was set when the result/game was montreal 20 @ ottawa 10?
CREATE TABLE table_21436373_8 (type_of_record VARCHAR, result_games VARCHAR)
{ "SQL_Query": "SELECT type_of_record FROM table_21436373_8 WHERE result_games = \"Montreal 20 @ Ottawa 10\"" }
Which stadium had the result/game montreal 20 @ ottawa 10?
CREATE TABLE table_21436373_8 (stadium VARCHAR, result_games VARCHAR)
{ "SQL_Query": "SELECT stadium FROM table_21436373_8 WHERE result_games = \"Montreal 20 @ Ottawa 10\"" }
For what year is the type of record 'total attendance-regular season?
CREATE TABLE table_21436373_5 (date_year VARCHAR, type_of_record VARCHAR)
{ "SQL_Query": "SELECT date_year FROM table_21436373_5 WHERE type_of_record = \"Total attendance-Regular season\"" }
What type of record is the result of the game Montreal 31 @ Calgary 32?
CREATE TABLE table_21436373_5 (type_of_record VARCHAR, result_games VARCHAR)
{ "SQL_Query": "SELECT type_of_record FROM table_21436373_5 WHERE result_games = \"Montreal 31 @ Calgary 32\"" }
On what date/s has attendance been 45010?
CREATE TABLE table_21436373_5 (date_year VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT date_year FROM table_21436373_5 WHERE attendance = 45010" }
What is the number of attendance with the pre-season game as the type of record?
CREATE TABLE table_21436373_6 (attendance VARCHAR, type_of_record VARCHAR)
{ "SQL_Query": "SELECT COUNT(attendance) FROM table_21436373_6 WHERE type_of_record = \"Pre-season game\"" }
Which type of record has result/games of 9 games (57,144 avg.)
CREATE TABLE table_21436373_6 (type_of_record VARCHAR, result_games VARCHAR)
{ "SQL_Query": "SELECT type_of_record FROM table_21436373_6 WHERE result_games = \"9 games (57,144 avg.)\"" }
What is the result/games of Sun 11/28/10 as the date/year?
CREATE TABLE table_21436373_6 (result_games VARCHAR, date_year VARCHAR)
{ "SQL_Query": "SELECT result_games FROM table_21436373_6 WHERE date_year = \"Sun 11/28/10\"" }
Which stadium has the date/year of Fri 06/25/82?
CREATE TABLE table_21436373_6 (stadium VARCHAR, date_year VARCHAR)
{ "SQL_Query": "SELECT stadium FROM table_21436373_6 WHERE date_year = \"Fri 06/25/82\"" }
Which type of record has result/games of b.c. 16 @ edmonton 22?
CREATE TABLE table_21436373_6 (type_of_record VARCHAR, result_games VARCHAR)
{ "SQL_Query": "SELECT type_of_record FROM table_21436373_6 WHERE result_games = \"B.C. 16 @ Edmonton 22\"" }
What was the populati in 2000 for Panlicsian?
CREATE TABLE table_2144436_1 (population__2000_ INTEGER, barangay VARCHAR)
{ "SQL_Query": "SELECT MIN(population__2000_) FROM table_2144436_1 WHERE barangay = \"Panlicsian\"" }
What was the population in 2010 for Minane
CREATE TABLE table_2144436_1 (population__2010_ INTEGER, barangay VARCHAR)
{ "SQL_Query": "SELECT MAX(population__2010_) FROM table_2144436_1 WHERE barangay = \"Minane\"" }
What is the 2007 population for Corazon de Jesus?
CREATE TABLE table_2144436_1 (population__2007_ VARCHAR, barangay VARCHAR)
{ "SQL_Query": "SELECT population__2007_ FROM table_2144436_1 WHERE barangay = \"Corazon De Jesus\"" }
What is the 2010 population when the 2000 population is 5720?
CREATE TABLE table_2144436_1 (population__2010_ INTEGER, population__2000_ VARCHAR)
{ "SQL_Query": "SELECT MAX(population__2010_) FROM table_2144436_1 WHERE population__2000_ = 5720" }
Name the romaji by your side ~hikari's theme~ (popup.version)
CREATE TABLE table_2144389_8 (rōmaji VARCHAR, japanese_translation VARCHAR)
{ "SQL_Query": "SELECT rōmaji FROM table_2144389_8 WHERE japanese_translation = \"By Your Side ~Hikari's Theme~ (PopUp.Version)\"" }
Name the vocalist for kaze no messēji (pokapoka-version)
CREATE TABLE table_2144389_8 (vocalist VARCHAR, rōmaji VARCHAR)
{ "SQL_Query": "SELECT vocalist FROM table_2144389_8 WHERE rōmaji = \"Kaze no Messēji (PokaPoka-Version)\"" }
Name the least number for 君のそばで~ヒカリのテーマ~(popup.version)
CREATE TABLE table_2144389_8 (_number INTEGER, japanese_title VARCHAR)
{ "SQL_Query": "SELECT MIN(_number) FROM table_2144389_8 WHERE japanese_title = \"君のそばで~ヒカリのテーマ~(PopUp.Version)\"" }
Name the number of vocalists for which one ~ is it?
CREATE TABLE table_2144389_8 (vocalist VARCHAR, japanese_translation VARCHAR)
{ "SQL_Query": "SELECT COUNT(vocalist) FROM table_2144389_8 WHERE japanese_translation = \"Which One ~ Is It?\"" }
Name the to par for 20 feb 2005
CREATE TABLE table_21469545_2 (to_par VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT to_par FROM table_21469545_2 WHERE date = \"20 Feb 2005\"" }
Name the number for margin of victory being 3 strokes
CREATE TABLE table_21469545_2 (no VARCHAR, margin_of_victory VARCHAR)
{ "SQL_Query": "SELECT COUNT(no) FROM table_21469545_2 WHERE margin_of_victory = \"3 strokes\"" }
Name the winning score for 8 feb 2009
CREATE TABLE table_21469545_2 (winning_score VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT COUNT(winning_score) FROM table_21469545_2 WHERE date = \"8 Feb 2009\"" }
Who published the title in the pet-raising simulator genre?
CREATE TABLE table_21458142_1 (publisher VARCHAR, genre VARCHAR)
{ "SQL_Query": "SELECT publisher FROM table_21458142_1 WHERE genre = \"Pet-raising simulator\"" }
What's the sales breakdown for Nintendo's Mario Kart DS?
CREATE TABLE table_21458142_1 (sales_breakdown VARCHAR, publisher VARCHAR, title VARCHAR)
{ "SQL_Query": "SELECT sales_breakdown FROM table_21458142_1 WHERE publisher = \"Nintendo\" AND title = \"Mario Kart DS\"" }
How many copies were sold of the game released on october 23, 2008?
CREATE TABLE table_21458142_1 (total_copies_sold VARCHAR, release_date VARCHAR)
{ "SQL_Query": "SELECT total_copies_sold FROM table_21458142_1 WHERE release_date = \"October 23, 2008\"" }
What's the sales breakdown of the Nintendo game released on May 15, 2006?
CREATE TABLE table_21458142_1 (sales_breakdown VARCHAR, publisher VARCHAR, release_date VARCHAR)
{ "SQL_Query": "SELECT sales_breakdown FROM table_21458142_1 WHERE publisher = \"Nintendo\" AND release_date = \"May 15, 2006\"" }
Name the most races
CREATE TABLE table_21457754_2 (races INTEGER)
{ "SQL_Query": "SELECT MAX(races) FROM table_21457754_2" }
Name the most rr 1 pts
CREATE TABLE table_21457754_2 (rr1_pts INTEGER)
{ "SQL_Query": "SELECT MAX(rr1_pts) FROM table_21457754_2" }
Name the number of total pts for gbr challenge
CREATE TABLE table_21457754_2 (total_pts VARCHAR, team_name VARCHAR)
{ "SQL_Query": "SELECT COUNT(total_pts) FROM table_21457754_2 WHERE team_name = \"GBR Challenge\"" }
What is the total number of second place finishes when the city & nation was Chicago, USA?
CREATE TABLE table_2146364_2 (second_place VARCHAR, city_ VARCHAR, _nation VARCHAR)
{ "SQL_Query": "SELECT COUNT(second_place) FROM table_2146364_2 WHERE city_ & _nation = \"Chicago, USA\"" }
What is the total number of third place finishes when the city & nation was Vancouver, Canada?
CREATE TABLE table_2146364_2 (third_place INTEGER, city_ VARCHAR, _nation VARCHAR)
{ "SQL_Query": "SELECT MIN(third_place) FROM table_2146364_2 WHERE city_ & _nation = \"Vancouver, Canada\"" }
What is the smallest third place finish?
CREATE TABLE table_2146364_2 (third_place INTEGER)
{ "SQL_Query": "SELECT MIN(third_place) FROM table_2146364_2" }
What change caused a change of staff in March 9, 1865?
CREATE TABLE table_2147588_3 (reason_for_change VARCHAR, date_of_successors_formal_installation VARCHAR)
{ "SQL_Query": "SELECT reason_for_change FROM table_2147588_3 WHERE date_of_successors_formal_installation = \"March 9, 1865\"" }
Who was the successor for the new seat?
CREATE TABLE table_2147588_3 (successor VARCHAR, vacator VARCHAR)
{ "SQL_Query": "SELECT successor FROM table_2147588_3 WHERE vacator = \"New seat\"" }
What was the reason for change in staff in formal installations on March 15, 1865?
CREATE TABLE table_2147588_3 (reason_for_change VARCHAR, date_of_successors_formal_installation VARCHAR)
{ "SQL_Query": "SELECT reason_for_change FROM table_2147588_3 WHERE date_of_successors_formal_installation = \"March 15, 1865\"" }
When nathaniel g. taylor (u) is the successor what is the vacator?
CREATE TABLE table_2147588_4 (vacator VARCHAR, successor VARCHAR)
{ "SQL_Query": "SELECT vacator FROM table_2147588_4 WHERE successor = \"Nathaniel G. Taylor (U)\"" }
When william b. campbell (u) is the successor what is the district?
CREATE TABLE table_2147588_4 (district VARCHAR, successor VARCHAR)
{ "SQL_Query": "SELECT district FROM table_2147588_4 WHERE successor = \"William B. Campbell (U)\"" }
When james brooks (d) is the vacator what is the date the successor was seated?
CREATE TABLE table_2147588_4 (date_successor_seated VARCHAR, vacator VARCHAR)
{ "SQL_Query": "SELECT date_successor_seated FROM table_2147588_4 WHERE vacator = \"James Brooks (D)\"" }
When john w. leftwich (uu) is the successor what is the date the successor was seated?
CREATE TABLE table_2147588_4 (date_successor_seated VARCHAR, successor VARCHAR)
{ "SQL_Query": "SELECT date_successor_seated FROM table_2147588_4 WHERE successor = \"John W. Leftwich (UU)\"" }
When new york 8th is teh district who is the successor?
CREATE TABLE table_2147588_4 (successor VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT successor FROM table_2147588_4 WHERE district = \"New York 8th\"" }
When 20 is the rr4 points what is the lowest rr3 points?
CREATE TABLE table_21489362_2 (rr3_pts INTEGER, rr4_pts VARCHAR)
{ "SQL_Query": "SELECT MIN(rr3_pts) FROM table_21489362_2 WHERE rr4_pts = \"20\"" }
When 70 is the total points what is the rr4 points?
CREATE TABLE table_21489362_2 (rr4_pts VARCHAR, total_pts VARCHAR)
{ "SQL_Query": "SELECT rr4_pts FROM table_21489362_2 WHERE total_pts = 70" }
When 3 is the rr1 points what is won score?
CREATE TABLE table_21489362_2 (won VARCHAR, rr1_pts VARCHAR)
{ "SQL_Query": "SELECT won FROM table_21489362_2 WHERE rr1_pts = 3" }
When spanish challenge is the team name what are the rr1 points?
CREATE TABLE table_21489362_2 (rr1_pts VARCHAR, team_name VARCHAR)
{ "SQL_Query": "SELECT rr1_pts FROM table_21489362_2 WHERE team_name = \"Spanish Challenge\"" }
Name the innings for 5088 runs scored
CREATE TABLE table_21486890_1 (innings VARCHAR, runs_scored VARCHAR)
{ "SQL_Query": "SELECT COUNT(innings) FROM table_21486890_1 WHERE runs_scored = 5088" }
Name the matches for mark taylor category:articles with hcards
CREATE TABLE table_21486890_1 (matches INTEGER, name VARCHAR)
{ "SQL_Query": "SELECT MAX(matches) FROM table_21486890_1 WHERE name = \"Mark Taylor Category:Articles with hCards\"" }
Name the most runs scored
CREATE TABLE table_21486890_1 (runs_scored INTEGER)
{ "SQL_Query": "SELECT MAX(runs_scored) FROM table_21486890_1" }
Name the least matches for not out being 44
CREATE TABLE table_21486890_1 (matches INTEGER, not_out VARCHAR)
{ "SQL_Query": "SELECT MIN(matches) FROM table_21486890_1 WHERE not_out = 44" }
What nation was Pageos 1 from?
CREATE TABLE table_2150068_1 (nation VARCHAR, satellite VARCHAR)
{ "SQL_Query": "SELECT nation FROM table_2150068_1 WHERE satellite = \"PAGEOS 1\"" }
What was the launch date for the sattelite with ado that was 4 kg and 3 meters in diameter?
CREATE TABLE table_2150068_1 (launch_date__utc_ VARCHAR, diameter_m_ VARCHAR, usage VARCHAR, mass_kg_ VARCHAR)
{ "SQL_Query": "SELECT launch_date__utc_ FROM table_2150068_1 WHERE usage = \"ado\" AND mass_kg_ = \"4\" AND diameter_m_ = \"3\"" }
What was the decay for the sattelite that was 180 kg?
CREATE TABLE table_2150068_1 (decay VARCHAR, mass_kg_ VARCHAR)
{ "SQL_Query": "SELECT decay FROM table_2150068_1 WHERE mass_kg_ = \"180\"" }
What is the nssdc id for Echo 1?
CREATE TABLE table_2150068_1 (nssdc_id VARCHAR, satellite VARCHAR)
{ "SQL_Query": "SELECT nssdc_id FROM table_2150068_1 WHERE satellite = \"Echo 1\"" }
What is the launch date for the sattelite with a nssdc id of 1960-009a?
CREATE TABLE table_2150068_1 (launch_date__utc_ VARCHAR, nssdc_id VARCHAR)
{ "SQL_Query": "SELECT launch_date__utc_ FROM table_2150068_1 WHERE nssdc_id = \"1960-009A\"" }
What is the decay for the sattelite with an id that is 1990-081c?
CREATE TABLE table_2150068_1 (decay VARCHAR, nssdc_id VARCHAR)
{ "SQL_Query": "SELECT decay FROM table_2150068_1 WHERE nssdc_id = \"1990-081C\"" }
How many song titles belong to the artist Ratt?
CREATE TABLE table_21500850_1 (song_title VARCHAR, artist VARCHAR)
{ "SQL_Query": "SELECT COUNT(song_title) FROM table_21500850_1 WHERE artist = \"Ratt\"" }
What is every original game for the artist Lynyrd Skynyrd?
CREATE TABLE table_21500850_1 (original_game VARCHAR, artist VARCHAR)
{ "SQL_Query": "SELECT original_game FROM table_21500850_1 WHERE artist = \"Lynyrd Skynyrd\"" }
What is every song title for the rock genre and Guitar Hero as original game and the artist is Queens of the Stone Age?
CREATE TABLE table_21500850_1 (song_title VARCHAR, artist VARCHAR, genre VARCHAR, original_game VARCHAR)
{ "SQL_Query": "SELECT song_title FROM table_21500850_1 WHERE genre = \"Rock\" AND original_game = \"Guitar Hero\" AND artist = \"Queens of the Stone Age\"" }
What is every song title for 2007?
CREATE TABLE table_21500850_1 (song_title VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT song_title FROM table_21500850_1 WHERE year = 2007" }
What was Lambert's song choice in the top 13?
CREATE TABLE table_21501511_1 (song_choice VARCHAR, week__number VARCHAR)
{ "SQL_Query": "SELECT song_choice FROM table_21501511_1 WHERE week__number = \"Top 13\"" }
What order did Lambert perform in the top 11?
CREATE TABLE table_21501511_1 (order__number VARCHAR, week__number VARCHAR)
{ "SQL_Query": "SELECT order__number FROM table_21501511_1 WHERE week__number = \"Top 11\"" }
What week was themed disco?
CREATE TABLE table_21501511_1 (week__number VARCHAR, theme VARCHAR)
{ "SQL_Query": "SELECT week__number FROM table_21501511_1 WHERE theme = \"Disco\"" }
What week #(s featured sara bareilles as the original artist?
CREATE TABLE table_21501564_1 (week__number VARCHAR, original_artist VARCHAR)
{ "SQL_Query": "SELECT week__number FROM table_21501564_1 WHERE original_artist = \"Sara Bareilles\"" }
What week # featured first solo as the theme?
CREATE TABLE table_21501564_1 (week__number VARCHAR, theme VARCHAR)
{ "SQL_Query": "SELECT week__number FROM table_21501564_1 WHERE theme = \"First Solo\"" }
How many weeks featured duffy as the original artist?
CREATE TABLE table_21501564_1 (theme VARCHAR, original_artist VARCHAR)
{ "SQL_Query": "SELECT COUNT(theme) FROM table_21501564_1 WHERE original_artist = \"Duffy\"" }
Who was the originally artist when Jasmine Murray was selected?
CREATE TABLE table_21501564_1 (original_artist VARCHAR, result VARCHAR)
{ "SQL_Query": "SELECT original_artist FROM table_21501564_1 WHERE result = \"Selected\"" }
With theme the Year They Were Born, what is the song of choice?
CREATE TABLE table_21501565_1 (song_choice VARCHAR, theme VARCHAR)
{ "SQL_Query": "SELECT song_choice FROM table_21501565_1 WHERE theme = \"Year They Were Born\"" }
With order number 7 and the theme is Motown, who were the original artists?
CREATE TABLE table_21501565_1 (original_artist VARCHAR, order__number VARCHAR, theme VARCHAR)
{ "SQL_Query": "SELECT original_artist FROM table_21501565_1 WHERE order__number = \"7\" AND theme = \"Motown\"" }
With an original artist names Bette Midler, what is the order number?
CREATE TABLE table_21501565_1 (order__number VARCHAR, original_artist VARCHAR)
{ "SQL_Query": "SELECT COUNT(order__number) FROM table_21501565_1 WHERE original_artist = \"Bette Midler\"" }
With original artist of Tina Turner, what is the week number?
CREATE TABLE table_21501565_1 (week__number VARCHAR, original_artist VARCHAR)
{ "SQL_Query": "SELECT week__number FROM table_21501565_1 WHERE original_artist = \"Tina Turner\"" }
Who is the original artist with a theme of N/A?
CREATE TABLE table_21501565_1 (original_artist VARCHAR, theme VARCHAR)
{ "SQL_Query": "SELECT original_artist FROM table_21501565_1 WHERE theme = \"N/A\"" }
Name the team for june 16 jeff gordon
CREATE TABLE table_2150776_1 (team VARCHAR, date VARCHAR, driver VARCHAR)
{ "SQL_Query": "SELECT team FROM table_2150776_1 WHERE date = \"June 16\" AND driver = \"Jeff Gordon\"" }
Name the driver for 200 laps 1997
CREATE TABLE table_2150776_1 (driver VARCHAR, laps VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT driver FROM table_2150776_1 WHERE laps = \"200\" AND year = \"1997\"" }
Name the team for ricky rudd
CREATE TABLE table_2150776_1 (team VARCHAR, driver VARCHAR)
{ "SQL_Query": "SELECT team FROM table_2150776_1 WHERE driver = \"Ricky Rudd\"" }
What is the rank when RR2 has 4 points?
CREATE TABLE table_21515673_2 (ranking VARCHAR, rr2_pts VARCHAR)
{ "SQL_Query": "SELECT ranking FROM table_21515673_2 WHERE rr2_pts = 4" }
How many points does Swedish America's Cup Challenge have for rr1?
CREATE TABLE table_21515673_2 (rr1_pts VARCHAR, team_name VARCHAR)
{ "SQL_Query": "SELECT COUNT(rr1_pts) FROM table_21515673_2 WHERE team_name = \"Swedish America's Cup Challenge\"" }
Who was the senior US senator in the state whose governor was D. Patrick?
CREATE TABLE table_21531764_2 (senior_us_senator VARCHAR, governor VARCHAR)
{ "SQL_Query": "SELECT senior_us_senator FROM table_21531764_2 WHERE governor = \"D. Patrick\"" }
What's the lower house majority in the state whose Senior senator is J. Shaheen?
CREATE TABLE table_21531764_2 (lower_house_majority VARCHAR, senior_us_senator VARCHAR)
{ "SQL_Query": "SELECT lower_house_majority FROM table_21531764_2 WHERE senior_us_senator = \"J. Shaheen\"" }
Who is every name for time(cet) of 09:58?
CREATE TABLE table_21536557_2 (name VARCHAR, time__cet_ VARCHAR)
{ "SQL_Query": "SELECT name FROM table_21536557_2 WHERE time__cet_ = \"09:58\"" }