question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
When did the season finale reached an audience of 10.02 million viewers? | CREATE TABLE table_2669287_1 (season VARCHAR, viewers__in_millions_ VARCHAR) | SELECT season AS finale FROM table_2669287_1 WHERE viewers__in_millions_ = "10.02" |
What is the nationality when the player is randy heath? | CREATE TABLE table_2679061_2 (nationality VARCHAR, player VARCHAR) | SELECT nationality FROM table_2679061_2 WHERE player = "Randy Heath" |
What is the nhl team when the college, junior, club team is toronto marlboros (ohl) and the position is centre? | CREATE TABLE table_2679061_2 (nhl_team VARCHAR, college_junior_club_team VARCHAR, position VARCHAR) | SELECT nhl_team FROM table_2679061_2 WHERE college_junior_club_team = "Toronto Marlboros (OHL)" AND position = "Centre" |
what is the pick # when the nhl team is montreal canadiens and the college/junior/club team is trois-rivières draveurs (qmjhl)? | CREATE TABLE table_2679061_2 (pick__number INTEGER, nhl_team VARCHAR, college_junior_club_team VARCHAR) | SELECT MIN(pick__number) FROM table_2679061_2 WHERE nhl_team = "Montreal Canadiens" AND college_junior_club_team = "Trois-Rivières Draveurs (QMJHL)" |
how many times is the nhl team the winnipeg jets? | CREATE TABLE table_2679061_2 (player VARCHAR, nhl_team VARCHAR) | SELECT COUNT(player) FROM table_2679061_2 WHERE nhl_team = "Winnipeg Jets" |
what is the position for the nhl team toronto maple leafs? | CREATE TABLE table_2679061_2 (position VARCHAR, nhl_team VARCHAR) | SELECT position FROM table_2679061_2 WHERE nhl_team = "Toronto Maple Leafs" |
How many were the US viewers (in millions) of the episode that was written by Gordon C. Lonsdale? | CREATE TABLE table_26826304_1 (us_viewers__millions_ VARCHAR, directed_by VARCHAR) | SELECT us_viewers__millions_ FROM table_26826304_1 WHERE directed_by = "Gordon C. Lonsdale" |
What was the air date of the episode that has a production code of 5aky13? | CREATE TABLE table_26826304_1 (original_air_date VARCHAR, production_code VARCHAR) | SELECT original_air_date FROM table_26826304_1 WHERE production_code = "5AKY13" |
Who was the writer of the episode with a production code of 5aky04? | CREATE TABLE table_26826304_1 (written_by VARCHAR, production_code VARCHAR) | SELECT written_by FROM table_26826304_1 WHERE production_code = "5AKY04" |
What position does the player Todd Wise play in? | CREATE TABLE table_26847237_2 (position VARCHAR, player VARCHAR) | SELECT position FROM table_26847237_2 WHERE player = "Todd Wise" |
How many games were played where the height of the player is 1.92m? | CREATE TABLE table_26847237_2 (games VARCHAR, height VARCHAR) | SELECT COUNT(games) FROM table_26847237_2 WHERE height = "1.92m" |
What is the date of birth for the player in the Inglewood club? | CREATE TABLE table_26847237_2 (dob VARCHAR, club VARCHAR) | SELECT dob FROM table_26847237_2 WHERE club = "Inglewood" |
Which player weighs 76kg? | CREATE TABLE table_26847237_2 (player VARCHAR, weight VARCHAR) | SELECT player FROM table_26847237_2 WHERE weight = "76kg" |
What was the model's DirectX if it has a Core of 700 700 mhz? | CREATE TABLE table_26860595_2 (directx VARCHAR, core___mhz__ VARCHAR) | SELECT directx FROM table_26860595_2 WHERE core___mhz__ = "700 700" |
What was the maximum fab (nm)? | CREATE TABLE table_26860595_2 (fab___nm__ INTEGER) | SELECT MAX(fab___nm__) FROM table_26860595_2 |
What is the config core 1 of the model with a processing power GFLOPs of 432? | CREATE TABLE table_26860595_2 (config_core_1 VARCHAR, processing_power_gflops VARCHAR) | SELECT config_core_1 FROM table_26860595_2 WHERE processing_power_gflops = "432" |
How many texture (gt/s) the card has if the tdp (watts) GPU only is 18? | CREATE TABLE table_26860595_2 (texture___gt__s_ VARCHAR, tdp__watts__gpu_only VARCHAR) | SELECT COUNT(texture___gt__s_) FROM table_26860595_2 WHERE tdp__watts__gpu_only = "18" |
How much did Nina Carberry win? | CREATE TABLE table_26903214_1 (prize_money VARCHAR, rider VARCHAR) | SELECT prize_money FROM table_26903214_1 WHERE rider = "Nina Carberry" |
Name the us viewers directed by christine moore | CREATE TABLE table_26914076_2 (us_viewers__millions_ VARCHAR, directed_by VARCHAR) | SELECT us_viewers__millions_ FROM table_26914076_2 WHERE directed_by = "Christine Moore" |
Name the number for simon cellan jones | CREATE TABLE table_26914076_2 (no VARCHAR, directed_by VARCHAR) | SELECT no FROM table_26914076_2 WHERE directed_by = "Simon Cellan Jones" |
Name the teleplay for david simon & eric overmyer and tom piazza | CREATE TABLE table_26914076_2 (teleplay_by VARCHAR, story_by VARCHAR) | SELECT teleplay_by FROM table_26914076_2 WHERE story_by = "David Simon & Eric Overmyer and Tom Piazza" |
Name the most number | CREATE TABLE table_26914076_2 (no INTEGER) | SELECT MAX(no) FROM table_26914076_2 |
If the proto-semitic is *bayt-, what are the geez? | CREATE TABLE table_26919_7 (geez VARCHAR, proto_semitic VARCHAR) | SELECT geez FROM table_26919_7 WHERE proto_semitic = "*bayt-" |
if the aramaic is šlām-āʼ, what is the english? | CREATE TABLE table_26919_7 (english VARCHAR, aramaic VARCHAR) | SELECT english FROM table_26919_7 WHERE aramaic = "šlām-āʼ" |
if the geez is libb, what is the akkadian? | CREATE TABLE table_26919_7 (akkadian VARCHAR, geez VARCHAR) | SELECT akkadian FROM table_26919_7 WHERE geez = "libb" |
If in english it is heart, what is it in hebrew? | CREATE TABLE table_26919_7 (hebrew VARCHAR, english VARCHAR) | SELECT hebrew FROM table_26919_7 WHERE english = "heart" |
If in English it's house, what is it in proto-semitic? | CREATE TABLE table_26919_7 (proto_semitic VARCHAR, english VARCHAR) | SELECT proto_semitic FROM table_26919_7 WHERE english = "house" |
If in arabic it is salām-, what is it in proto-semitic? | CREATE TABLE table_26919_7 (proto_semitic VARCHAR, arabic VARCHAR) | SELECT proto_semitic FROM table_26919_7 WHERE arabic = "salām-" |
how many times is the location is homestead, florida? | CREATE TABLE table_2696531_2 (pole_position VARCHAR, location VARCHAR) | SELECT COUNT(pole_position) FROM table_2696531_2 WHERE location = "Homestead, Florida" |
What was the earliest season where podium was 9? | CREATE TABLE table_26998693_1 (season INTEGER, podiums VARCHAR) | SELECT MIN(season) FROM table_26998693_1 WHERE podiums = 9 |
How much were the f/laps if poles is higher than 1.0 during 2008? | CREATE TABLE table_26998693_1 (f_laps VARCHAR, poles VARCHAR, season VARCHAR) | SELECT f_laps FROM table_26998693_1 WHERE poles > 1.0 AND season = 2008 |
What races achieved 0 f/laps and 1 pole position? | CREATE TABLE table_26998693_1 (races VARCHAR, f_laps VARCHAR, poles VARCHAR) | SELECT races FROM table_26998693_1 WHERE f_laps = 0 AND poles = 1 |
Who replaced the outgoing manager Hüsnü Özkara? | CREATE TABLE table_27091128_3 (replaced_by VARCHAR, outgoing_manager VARCHAR) | SELECT replaced_by FROM table_27091128_3 WHERE outgoing_manager = "Hüsnü Özkara" |
When was the date of vacancy for the manager of Kartalspor? | CREATE TABLE table_27091128_3 (date_of_vacancy VARCHAR, team VARCHAR) | SELECT date_of_vacancy FROM table_27091128_3 WHERE team = "Kartalspor" |
Who replaced the manager of Akhisar B.G.S.? | CREATE TABLE table_27091128_3 (replaced_by VARCHAR, team VARCHAR) | SELECT replaced_by FROM table_27091128_3 WHERE team = "Akhisar B.G.S." |
Which team replaced their manager with Serhat Güller? | CREATE TABLE table_27091128_3 (team VARCHAR, replaced_by VARCHAR) | SELECT team FROM table_27091128_3 WHERE replaced_by = "Serhat Güller" |
How many different episode numbers does the episode written by Sheri Elwood and directed by Jim Allodi have? | CREATE TABLE table_27155243_3 (total__number VARCHAR, written_by VARCHAR, directed_by VARCHAR) | SELECT COUNT(total__number) FROM table_27155243_3 WHERE written_by = "Sheri Elwood" AND directed_by = "Jim Allodi" |
How many different episode numbers are there for the episodes directed by Sheri Elwood? | CREATE TABLE table_27155243_3 (total__number VARCHAR, directed_by VARCHAR) | SELECT COUNT(total__number) FROM table_27155243_3 WHERE directed_by = "Sheri Elwood" |
Name the original airdate for robin mukherjee and margy kinmonth | CREATE TABLE table_27208814_1 (original_airdate VARCHAR, writer VARCHAR, director VARCHAR) | SELECT original_airdate FROM table_27208814_1 WHERE writer = "Robin Mukherjee" AND director = "Margy Kinmonth" |
If the highest score is 88, what are the 50s? | CREATE TABLE table_27268238_4 (highest_score VARCHAR) | SELECT 50 AS s FROM table_27268238_4 WHERE highest_score = "88" |
If the team is Worcestershire and the Matched had were 5, what is the highest score? | CREATE TABLE table_27268238_4 (highest_score VARCHAR, matches VARCHAR, team VARCHAR) | SELECT highest_score FROM table_27268238_4 WHERE matches = 5 AND team = "Worcestershire" |
What is the smallest amount of matches? | CREATE TABLE table_27268238_4 (matches INTEGER) | SELECT MIN(matches) FROM table_27268238_4 |
If the team is Gloucestershire, what is the average? | CREATE TABLE table_27268238_4 (average VARCHAR, team VARCHAR) | SELECT average FROM table_27268238_4 WHERE team = "Gloucestershire" |
What is the team Sussex' highest score? | CREATE TABLE table_27268238_4 (highest_score VARCHAR, team VARCHAR) | SELECT highest_score FROM table_27268238_4 WHERE team = "Sussex" |
If the average is 50.16, who is the player? | CREATE TABLE table_27268238_4 (player VARCHAR, average VARCHAR) | SELECT player FROM table_27268238_4 WHERE average = "50.16" |
If the working force of HK is 32.8%, what are the Pakistanis' %? | CREATE TABLE table_27257896_2 (pakistanis VARCHAR, working_force_of_hk VARCHAR) | SELECT pakistanis FROM table_27257896_2 WHERE working_force_of_hk = "32.8%" |
If the Indians are 8.2%, what is the salary range? | CREATE TABLE table_27257896_2 (salary_range VARCHAR, indians VARCHAR) | SELECT salary_range FROM table_27257896_2 WHERE indians = "8.2%" |
If the working force of HK is 10.4%, what is the salary range? | CREATE TABLE table_27257896_2 (salary_range VARCHAR, working_force_of_hk VARCHAR) | SELECT salary_range FROM table_27257896_2 WHERE working_force_of_hk = "10.4%" |
If the nepalese is 37.1%, what is the working force of HK? | CREATE TABLE table_27257896_2 (working_force_of_hk VARCHAR, nepalese VARCHAR) | SELECT working_force_of_hk FROM table_27257896_2 WHERE nepalese = "37.1%" |
If the salary range is 4,000-9,000, what is the Indians %? | CREATE TABLE table_27257896_2 (indians VARCHAR, salary_range VARCHAR) | SELECT indians FROM table_27257896_2 WHERE salary_range = "4,000-9,000" |
For teams that won exactly 15, how many points were scored? | CREATE TABLE table_27293285_6 (points VARCHAR, won VARCHAR) | SELECT points FROM table_27293285_6 WHERE won = "15" |
How many matches were drawn by the teams that won exactly 10? | CREATE TABLE table_27293285_6 (drawn VARCHAR, won VARCHAR) | SELECT COUNT(drawn) FROM table_27293285_6 WHERE won = "10" |
How many points for were scored by the team that won exactly 22? | CREATE TABLE table_27293285_6 (points_for VARCHAR, won VARCHAR) | SELECT points_for FROM table_27293285_6 WHERE won = "22" |
Which club lost exactly 7 matches? | CREATE TABLE table_27293285_6 (club VARCHAR, lost VARCHAR) | SELECT club FROM table_27293285_6 WHERE lost = "7" |
How many matches were won by the teams that scored exactly 61 tries for? | CREATE TABLE table_27293285_6 (won VARCHAR, tries_for VARCHAR) | SELECT won FROM table_27293285_6 WHERE tries_for = "61" |
How many tries for were scored by the team that had exactly 396 points for? | CREATE TABLE table_27293285_6 (tries_for VARCHAR, points_for VARCHAR) | SELECT tries_for FROM table_27293285_6 WHERE points_for = "396" |
Name the format for super callanetics | CREATE TABLE table_27303975_2 (format VARCHAR, title VARCHAR) | SELECT format FROM table_27303975_2 WHERE title = "Super Callanetics" |
Name the format for quick callanetics: hips and behind | CREATE TABLE table_27303975_2 (format VARCHAR, title VARCHAR) | SELECT format FROM table_27303975_2 WHERE title = "Quick Callanetics: Hips and Behind" |
Name the catalog number for october 6, 1988 | CREATE TABLE table_27303975_2 (catalog_number VARCHAR, release_date VARCHAR) | SELECT catalog_number FROM table_27303975_2 WHERE release_date = "October 6, 1988" |
Name the studio for super callanetics | CREATE TABLE table_27303975_2 (studio VARCHAR, title VARCHAR) | SELECT studio FROM table_27303975_2 WHERE title = "Super Callanetics" |
Name the studio for catalog number 81063 | CREATE TABLE table_27303975_2 (studio VARCHAR, catalog_number VARCHAR) | SELECT studio FROM table_27303975_2 WHERE catalog_number = "81063" |
Name the catalog number for am/pm callanetics | CREATE TABLE table_27303975_2 (catalog_number VARCHAR, title VARCHAR) | SELECT catalog_number FROM table_27303975_2 WHERE title = "AM/PM Callanetics" |
What was the share (%) for the Semi-Final 2 episode? | CREATE TABLE table_27319183_5 (share___percentage_ VARCHAR, episode VARCHAR) | SELECT share___percentage_ FROM table_27319183_5 WHERE episode = "Semi-final 2" |
What was the official ITV1 HD rating in millions for the episode that had an official ITV1 rating of 8.98 million? | CREATE TABLE table_27319183_5 (official_itv1_hd_rating__millions_ VARCHAR, official_itv1_rating__millions_ VARCHAR) | SELECT official_itv1_hd_rating__millions_ FROM table_27319183_5 WHERE official_itv1_rating__millions_ = "8.98" |
When was the episode that had a share (%) of 41.5? | CREATE TABLE table_27319183_5 (date VARCHAR, share___percentage_ VARCHAR) | SELECT date FROM table_27319183_5 WHERE share___percentage_ = "41.5" |
Which episode had an official ITV1 HD rating of 1.185 million? | CREATE TABLE table_27319183_5 (episode VARCHAR, official_itv1_hd_rating__millions_ VARCHAR) | SELECT episode FROM table_27319183_5 WHERE official_itv1_hd_rating__millions_ = "1.185" |
What was the official ITV1 rating in millions of the Live Final Results episode? | CREATE TABLE table_27319183_5 (official_itv1_rating__millions_ VARCHAR, episode VARCHAR) | SELECT official_itv1_rating__millions_ FROM table_27319183_5 WHERE episode = "Live final results" |
What was the total ITV1 viewers in millions for the episode with a share (%) of 28.9? | CREATE TABLE table_27319183_5 (total_itv1_viewers__millions_ VARCHAR, share___percentage_ VARCHAR) | SELECT total_itv1_viewers__millions_ FROM table_27319183_5 WHERE share___percentage_ = "28.9" |
What is the nickname of the Adrian, Michigan team? | CREATE TABLE table_27361255_1 (team_nickname VARCHAR, location VARCHAR) | SELECT team_nickname FROM table_27361255_1 WHERE location = "Adrian, Michigan" |
How many primary conferences were held in Allendale, Michigan? | CREATE TABLE table_27361255_1 (primary_conference VARCHAR, location VARCHAR) | SELECT COUNT(primary_conference) FROM table_27361255_1 WHERE location = "Allendale, Michigan" |
Where is Robert Morris University-Illinois held? | CREATE TABLE table_27361255_1 (location VARCHAR, institution VARCHAR) | SELECT location FROM table_27361255_1 WHERE institution = "Robert Morris University-Illinois" |
What is the enrollment for the Redhawks? | CREATE TABLE table_27361255_1 (enrollment VARCHAR, team_nickname VARCHAR) | SELECT COUNT(enrollment) FROM table_27361255_1 WHERE team_nickname = "RedHawks" |
what is the 2001 % for the status widowed or surviving partner? | CREATE TABLE table_273617_6 (status VARCHAR) | SELECT 2001 AS __percentage FROM table_273617_6 WHERE status = "Widowed or surviving partner" |
What is the lowest 2011 number (,000)? | CREATE TABLE table_273617_6 (Id VARCHAR) | SELECT MIN(2011 AS _number__), 000 AS _ FROM table_273617_6 |
What is the 2011 number (,000) when the status is separated? | CREATE TABLE table_273617_6 (status VARCHAR) | SELECT 2011 AS _number__, 000 AS _ FROM table_273617_6 WHERE status = "Separated" |
What number episode in the season was directed by Paul Adelstein? | CREATE TABLE table_27374740_1 (no_in_season INTEGER, directed_by VARCHAR) | SELECT MAX(no_in_season) FROM table_27374740_1 WHERE directed_by = "Paul Adelstein" |
What is the earliest numbered episode of the season? | CREATE TABLE table_27374740_1 (no_in_season INTEGER) | SELECT MIN(no_in_season) FROM table_27374740_1 |
Who was the director for Tango Bar? | CREATE TABLE table_27423508_1 (director VARCHAR, spanish_title VARCHAR) | SELECT director FROM table_27423508_1 WHERE spanish_title = "Tango Bar" |
What was the English title fo the film that was a nominee? | CREATE TABLE table_27423508_1 (english_title VARCHAR, result VARCHAR) | SELECT english_title FROM table_27423508_1 WHERE result = "Nominee" |
What was the English title of Ladrones Y Mentirosos? | CREATE TABLE table_27423508_1 (english_title VARCHAR, spanish_title VARCHAR) | SELECT english_title FROM table_27423508_1 WHERE spanish_title = "Ladrones y mentirosos" |
How many years have a weeks at #1 value of exactly 8? | CREATE TABLE table_27441210_6 (year VARCHAR, weeks_at__number1 VARCHAR) | SELECT COUNT(year) FROM table_27441210_6 WHERE weeks_at__number1 = 8 |
What is the position for outgoing manager alfredo merino | CREATE TABLE table_27495117_3 (position_in_table VARCHAR, outgoing_manager VARCHAR) | SELECT position_in_table FROM table_27495117_3 WHERE outgoing_manager = "Alfredo Merino" |
how many teams had an appointment date of 11 april 2011 | CREATE TABLE table_27495117_3 (team VARCHAR, date_of_appointment VARCHAR) | SELECT COUNT(team) FROM table_27495117_3 WHERE date_of_appointment = "11 April 2011" |
what was the appointment date for outgoing manager luis césar sampedro | CREATE TABLE table_27495117_3 (date_of_appointment VARCHAR, outgoing_manager VARCHAR) | SELECT date_of_appointment FROM table_27495117_3 WHERE outgoing_manager = "Luis César Sampedro" |
What was the manner of departure for the appointment date of 21 september 2010 | CREATE TABLE table_27495117_3 (manner_of_departure VARCHAR, date_of_appointment VARCHAR) | SELECT manner_of_departure FROM table_27495117_3 WHERE date_of_appointment = "21 September 2010" |
What was the position of appointment date 17 january 2011 | CREATE TABLE table_27495117_3 (position_in_table VARCHAR, date_of_appointment VARCHAR) | SELECT position_in_table FROM table_27495117_3 WHERE date_of_appointment = "17 January 2011" |
How many teams had an outgoing manager of antonio gómez | CREATE TABLE table_27495117_3 (manner_of_departure VARCHAR, outgoing_manager VARCHAR) | SELECT COUNT(manner_of_departure) FROM table_27495117_3 WHERE outgoing_manager = "Antonio Gómez" |
What was the score for the opponent florida panthers? | CREATE TABLE table_27501030_3 (score VARCHAR, opponent VARCHAR) | SELECT COUNT(score) FROM table_27501030_3 WHERE opponent = "Florida Panthers" |
What is the ab ripper x when the length is 92:24? | CREATE TABLE table_27512025_1 (ab_ripper_x VARCHAR, length VARCHAR) | SELECT ab_ripper_x FROM table_27512025_1 WHERE length = "92:24" |
How many types are cardio? | CREATE TABLE table_27512025_1 (program VARCHAR, type VARCHAR) | SELECT COUNT(program) FROM table_27512025_1 WHERE type = "Cardio" |
What is the ab ripper x when exercise is x stretch? | CREATE TABLE table_27512025_1 (ab_ripper_x VARCHAR, exercise VARCHAR) | SELECT ab_ripper_x FROM table_27512025_1 WHERE exercise = "X Stretch" |
What is the week when type is cardio workout? | CREATE TABLE table_27512025_1 (week VARCHAR, type VARCHAR) | SELECT week FROM table_27512025_1 WHERE type = "Cardio Workout" |
What is the exercise when the equipment is heart rate monitor, water and towel? | CREATE TABLE table_27512025_1 (exercise VARCHAR, equipment VARCHAR) | SELECT exercise FROM table_27512025_1 WHERE equipment = "Heart rate monitor, water and towel" |
Name the score for 29 game | CREATE TABLE table_27537870_5 (score VARCHAR, game VARCHAR) | SELECT score FROM table_27537870_5 WHERE game = 29 |
Name the opponent for record 10-13-3 | CREATE TABLE table_27537870_5 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_27537870_5 WHERE record = "10-13-3" |
Name the december for record 14-17-4 | CREATE TABLE table_27537870_5 (december VARCHAR, record VARCHAR) | SELECT december FROM table_27537870_5 WHERE record = "14-17-4" |
Name the least december for hsbc arena/18,017 | CREATE TABLE table_27537870_5 (december INTEGER, location_attendance VARCHAR) | SELECT MIN(december) FROM table_27537870_5 WHERE location_attendance = "HSBC Arena/18,017" |
Name the number of game 2-6 | CREATE TABLE table_27537870_5 (game VARCHAR, score VARCHAR) | SELECT COUNT(game) FROM table_27537870_5 WHERE score = "2-6" |
What is the highest entry in November for the game 20? | CREATE TABLE table_27539535_4 (november INTEGER, game VARCHAR) | SELECT MAX(november) FROM table_27539535_4 WHERE game = 20 |
What is the least entry for game if the score is 1-0? | CREATE TABLE table_27539535_4 (game INTEGER, score VARCHAR) | SELECT MIN(game) FROM table_27539535_4 WHERE score = "1-0" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.