question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
What is the total number of poles values in the Formula Renault 2.0 Eurocup with a 10th final placing? | CREATE TABLE table_15852257_1 (poles VARCHAR, series VARCHAR, final_placing VARCHAR) | SELECT COUNT(poles) FROM table_15852257_1 WHERE series = "Formula Renault 2.0 Eurocup" AND final_placing = "10th" |
Name the total number of record for 27 | CREATE TABLE table_15869204_5 (record VARCHAR, game VARCHAR) | SELECT COUNT(record) FROM table_15869204_5 WHERE game = 27 |
Name the high assists for december 14 | CREATE TABLE table_15869204_5 (high_assists VARCHAR, date VARCHAR) | SELECT high_assists FROM table_15869204_5 WHERE date = "December 14" |
Name the high assists for delta center 19,639 | CREATE TABLE table_15869204_5 (high_assists VARCHAR, location_attendance VARCHAR) | SELECT high_assists FROM table_15869204_5 WHERE location_attendance = "Delta Center 19,639" |
Name the score for washington | CREATE TABLE table_15872814_3 (score VARCHAR, team VARCHAR) | SELECT score FROM table_15872814_3 WHERE team = "Washington" |
Name the team for november 9 | CREATE TABLE table_15872814_3 (team VARCHAR, date VARCHAR) | SELECT team FROM table_15872814_3 WHERE date = "November 9" |
Name the most game for december 22 | CREATE TABLE table_15872814_4 (game INTEGER, date VARCHAR) | SELECT MAX(game) FROM table_15872814_4 WHERE date = "December 22" |
Name the score for december 28 | CREATE TABLE table_15872814_4 (score VARCHAR, date VARCHAR) | SELECT score FROM table_15872814_4 WHERE date = "December 28" |
What country has the Sky Calcio 2 tv service? | CREATE TABLE table_15887683_4 (country VARCHAR, television_service VARCHAR) | SELECT country FROM table_15887683_4 WHERE television_service = "Sky Calcio 2" |
Does the sky calcio 6 hd have PPV? | CREATE TABLE table_15887683_4 (ppv VARCHAR, television_service VARCHAR) | SELECT ppv FROM table_15887683_4 WHERE television_service = "Sky Calcio 6 HD" |
Do the Sky Calcio 5 channels have PPV? | CREATE TABLE table_15887683_4 (ppv VARCHAR, television_service VARCHAR) | SELECT ppv FROM table_15887683_4 WHERE television_service = "Sky Calcio 5" |
Name the country for sky primafila 7 hd | CREATE TABLE table_15887683_6 (country VARCHAR, television_service VARCHAR) | SELECT country FROM table_15887683_6 WHERE television_service = "Sky Primafila 7 HD" |
Name the number of package/option for sky primafila 24 | CREATE TABLE table_15887683_6 (package_option VARCHAR, television_service VARCHAR) | SELECT COUNT(package_option) FROM table_15887683_6 WHERE television_service = "Sky Primafila 24" |
Name the hdtv when number is 378 | CREATE TABLE table_15887683_6 (hdtv VARCHAR, n° VARCHAR) | SELECT hdtv FROM table_15887683_6 WHERE n° = 378 |
Name the hdtv for sky primafila 17 | CREATE TABLE table_15887683_6 (hdtv VARCHAR, television_service VARCHAR) | SELECT hdtv FROM table_15887683_6 WHERE television_service = "Sky Primafila 17" |
Name the television service when primafila hot club | CREATE TABLE table_15887683_6 (television_service VARCHAR, content VARCHAR) | SELECT television_service FROM table_15887683_6 WHERE content = "Primafila Hot Club" |
Name the number for fox news channel | CREATE TABLE table_15887683_8 (n° VARCHAR, television_service VARCHAR) | SELECT n° FROM table_15887683_8 WHERE television_service = "Fox News Channel" |
Name the dar for cinese | CREATE TABLE table_15887683_8 (dar VARCHAR, language VARCHAR) | SELECT dar FROM table_15887683_8 WHERE language = "cinese" |
Name the language for fox business network | CREATE TABLE table_15887683_8 (language VARCHAR, television_service VARCHAR) | SELECT language FROM table_15887683_8 WHERE television_service = "Fox Business Network" |
Name the package/option for giappone | CREATE TABLE table_15887683_8 (package_option VARCHAR, country VARCHAR) | SELECT package_option FROM table_15887683_8 WHERE country = "Giappone" |
Name the package/option for number being 543 | CREATE TABLE table_15887683_8 (package_option VARCHAR, n° VARCHAR) | SELECT package_option FROM table_15887683_8 WHERE n° = 543 |
Name the aspect ratio for 720 | CREATE TABLE table_15928363_1 (aspect_ratio VARCHAR, horizontal VARCHAR) | SELECT aspect_ratio FROM table_15928363_1 WHERE horizontal = 720 |
Name the number of horizontal when framerate hz is 25 | CREATE TABLE table_15928363_1 (horizontal VARCHAR, framerate___hz__ VARCHAR) | SELECT COUNT(horizontal) FROM table_15928363_1 WHERE framerate___hz__ = "25" |
Name the mccain % for dukes | CREATE TABLE table_15929156_3 (mccain__percentage VARCHAR, county VARCHAR) | SELECT mccain__percentage FROM table_15929156_3 WHERE county = "Dukes" |
Name the number of counties for obama votes for 49558 | CREATE TABLE table_15929156_3 (county VARCHAR, obama_votes VARCHAR) | SELECT COUNT(county) FROM table_15929156_3 WHERE obama_votes = 49558 |
Name the number of others votes for when others % is 2.0% | CREATE TABLE table_15929156_3 (others_votes VARCHAR, others__percentage VARCHAR) | SELECT COUNT(others_votes) FROM table_15929156_3 WHERE others__percentage = "2.0%" |
Which series number had the production code of 116 | CREATE TABLE table_15938543_1 (no_in_series VARCHAR, production_code VARCHAR) | SELECT no_in_series FROM table_15938543_1 WHERE production_code = 116 |
Whats the title of the episode with production code 109 | CREATE TABLE table_15938543_1 (title VARCHAR, production_code VARCHAR) | SELECT title FROM table_15938543_1 WHERE production_code = 109 |
How many episodes were written by Jack Burditt & Robert Carlock | CREATE TABLE table_15938543_1 (production_code VARCHAR, written_by VARCHAR) | SELECT COUNT(production_code) FROM table_15938543_1 WHERE written_by = "Jack Burditt & Robert Carlock" |
How many episodes had an original air date with 5.1 million viewers | CREATE TABLE table_15938543_1 (original_air_date VARCHAR, us_viewers__million_ VARCHAR) | SELECT COUNT(original_air_date) FROM table_15938543_1 WHERE us_viewers__million_ = "5.1" |
Who wrote the episode that was directed by Dennie Gordon | CREATE TABLE table_15938543_1 (written_by VARCHAR, directed_by VARCHAR) | SELECT written_by FROM table_15938543_1 WHERE directed_by = "Dennie Gordon" |
What septembers are 17.1 in December? | CREATE TABLE table_15945862_1 (december VARCHAR, september VARCHAR) | SELECT december FROM table_15945862_1 WHERE september = "17.1" |
March 0.41 in July? | CREATE TABLE table_15945862_1 (july VARCHAR, march VARCHAR) | SELECT july FROM table_15945862_1 WHERE march = "0.41" |
What september has 10.35 in November? | CREATE TABLE table_15945862_1 (september VARCHAR, november VARCHAR) | SELECT september FROM table_15945862_1 WHERE november = "10.35" |
January 7.34 where is June ? | CREATE TABLE table_15945862_1 (january VARCHAR, june VARCHAR) | SELECT january FROM table_15945862_1 WHERE june = "7.34" |
What December is 8.77 in January | CREATE TABLE table_15945862_1 (december VARCHAR, january VARCHAR) | SELECT december FROM table_15945862_1 WHERE january = "8.77" |
What is the genre for the hot fm station? | CREATE TABLE table_1601792_3 (genre VARCHAR, station VARCHAR) | SELECT genre FROM table_1601792_3 WHERE station = "Hot FM" |
What is the frequency of hot fm? | CREATE TABLE table_1601792_3 (frequency VARCHAR, station VARCHAR) | SELECT COUNT(frequency) FROM table_1601792_3 WHERE station = "Hot FM" |
What is the name of the station where the language is tamil malay? | CREATE TABLE table_1601792_3 (station VARCHAR, language VARCHAR) | SELECT station FROM table_1601792_3 WHERE language = "Tamil Malay" |
Who operates the xfm station? | CREATE TABLE table_1601792_3 (operator VARCHAR, station VARCHAR) | SELECT operator FROM table_1601792_3 WHERE station = "XFM" |
What is the language of the malacca fm station? | CREATE TABLE table_1601792_3 (language VARCHAR, station VARCHAR) | SELECT language FROM table_1601792_3 WHERE station = "Malacca FM" |
What is the station that is transmitted at 20 kw and has a frequency of 48 uhf? | CREATE TABLE table_1601792_4 (television_station VARCHAR, transmitted VARCHAR, frequency VARCHAR) | SELECT television_station FROM table_1601792_4 WHERE transmitted = "20 kW" AND frequency = "48 UHF" |
How many stations have a 35 uhf frequency? | CREATE TABLE table_1601792_4 (television_station VARCHAR, frequency VARCHAR) | SELECT COUNT(television_station) FROM table_1601792_4 WHERE frequency = "35 UHF" |
What are the site(s) for tv station 8tv? | CREATE TABLE table_1601792_4 (site VARCHAR, television_station VARCHAR) | SELECT site FROM table_1601792_4 WHERE television_station = "8TV" |
What are the network(s) for tv1? | CREATE TABLE table_1601792_4 (network VARCHAR, television_station VARCHAR) | SELECT network FROM table_1601792_4 WHERE television_station = "TV1" |
How many stations are transmitted on frequency 7 uhf? | CREATE TABLE table_1601792_4 (transmitted VARCHAR, frequency VARCHAR) | SELECT COUNT(transmitted) FROM table_1601792_4 WHERE frequency = "7 UHF" |
What site(s) for tv station tv3? | CREATE TABLE table_1601792_4 (site VARCHAR, television_station VARCHAR) | SELECT site FROM table_1601792_4 WHERE television_station = "TV3" |
Name the number of headphone class for sr100 | CREATE TABLE table_1601027_2 (headphone_class VARCHAR, headphone_model VARCHAR) | SELECT COUNT(headphone_class) FROM table_1601027_2 WHERE headphone_model = "SR100" |
Name what succeeded by for foam | CREATE TABLE table_1601027_2 (succeeded_by VARCHAR, earpads VARCHAR) | SELECT succeeded_by FROM table_1601027_2 WHERE earpads = "Foam" |
Name the headphone model for succeeded by sr125 | CREATE TABLE table_1601027_2 (headphone_model VARCHAR, succeeded_by VARCHAR) | SELECT headphone_model FROM table_1601027_2 WHERE succeeded_by = "SR125" |
Name the driver matched db for joseph grado signature | CREATE TABLE table_1601027_2 (driver_matched_db VARCHAR, headphone_class VARCHAR) | SELECT driver_matched_db FROM table_1601027_2 WHERE headphone_class = "Joseph Grado Signature" |
At which stadiums was attendance total 79176? | CREATE TABLE table_16028479_2 (game_site VARCHAR, attendance VARCHAR) | SELECT game_site FROM table_16028479_2 WHERE attendance = 79176 |
how many times were points counted for fk prienai | CREATE TABLE table_16034882_3 (points VARCHAR, club VARCHAR) | SELECT COUNT(points) FROM table_16034882_3 WHERE club = "FK Prienai" |
what is the highest number of draws for sveikata kybartai | CREATE TABLE table_16034882_3 (draws INTEGER, club VARCHAR) | SELECT MAX(draws) FROM table_16034882_3 WHERE club = "Sveikata Kybartai" |
What are the total number of losses for the team who has conceded 22? | CREATE TABLE table_16034882_4 (loses VARCHAR, goals_conceded VARCHAR) | SELECT COUNT(loses) FROM table_16034882_4 WHERE goals_conceded = 22 |
What is the amount of points for the team with 13 wins? | CREATE TABLE table_16034882_4 (points VARCHAR, wins VARCHAR) | SELECT points FROM table_16034882_4 WHERE wins = 13 |
How many draws did švyturys Klaipėda have? | CREATE TABLE table_16034882_4 (draws INTEGER, club VARCHAR) | SELECT MIN(draws) FROM table_16034882_4 WHERE club = "Švyturys Klaipėda" |
What position did the team with 3 losses finish? | CREATE TABLE table_16034882_4 (position INTEGER, loses VARCHAR) | SELECT MIN(position) FROM table_16034882_4 WHERE loses = 3 |
How many points did piritas klaipėda get? | CREATE TABLE table_16034882_4 (points VARCHAR, club VARCHAR) | SELECT points FROM table_16034882_4 WHERE club = "Piritas Klaipėda" |
How many wins did the team with 42 points get? | CREATE TABLE table_16034882_4 (wins VARCHAR, points VARCHAR) | SELECT wins FROM table_16034882_4 WHERE points = 42 |
How many total goals were scored in games where goals conceded was 35? | CREATE TABLE table_16034882_2 (goals_scored VARCHAR, goals_conceded VARCHAR) | SELECT COUNT(goals_scored) FROM table_16034882_2 WHERE goals_conceded = 35 |
What is the fewest number of games played? | CREATE TABLE table_16034882_2 (games_played INTEGER) | SELECT MIN(games_played) FROM table_16034882_2 |
How many games were lost when the goals scored was 37? | CREATE TABLE table_16034882_2 (loses VARCHAR, goals_scored VARCHAR) | SELECT COUNT(loses) FROM table_16034882_2 WHERE goals_scored = 37 |
What type of government does Kyrgyzstan have? | CREATE TABLE table_1604579_2 (country VARCHAR) | SELECT 2012 AS _democracy_index FROM table_1604579_2 WHERE country = "Kyrgyzstan" |
How economically free is the country of Armenia? | CREATE TABLE table_1604579_2 (country VARCHAR) | SELECT 2013 AS _index_of_economic_freedom FROM table_1604579_2 WHERE country = "Armenia" |
How much freedom can did the people of Guinea experience in 2013? | CREATE TABLE table_1604579_2 (freedom_in_the_world_2013 VARCHAR, country VARCHAR) | SELECT freedom_in_the_world_2013 FROM table_1604579_2 WHERE country = "Guinea" |
How many freedom indices does the country of Austria have? | CREATE TABLE table_1604579_2 (country VARCHAR) | SELECT COUNT(2013 AS _press_freedom_index) FROM table_1604579_2 WHERE country = "Austria" |
How many times was the incumbent elected in Washington 4 district? | CREATE TABLE table_16185956_1 (elected VARCHAR, district VARCHAR) | SELECT COUNT(elected) FROM table_16185956_1 WHERE district = "Washington 4" |
What is the status of the district where the result is 63% 37%? | CREATE TABLE table_16185956_1 (status VARCHAR, results VARCHAR) | SELECT status FROM table_16185956_1 WHERE results = "63% 37%" |
Who are the candidates in Washington 1 district? | CREATE TABLE table_16185956_1 (district VARCHAR) | SELECT 2008 AS _candidates FROM table_16185956_1 WHERE district = "Washington 1" |
How many groups of candidates are there in there in the district where the incumbent is Doc Hastings? | CREATE TABLE table_16185956_1 (incumbent VARCHAR) | SELECT COUNT(2008 AS _candidates) FROM table_16185956_1 WHERE incumbent = "Doc Hastings" |
What is the highest number of Counties carries? | CREATE TABLE table_16186152_1 (counties_carries INTEGER) | SELECT MAX(counties_carries) FROM table_16186152_1 |
How many state delegates did Candidate Mitt Romney have? | CREATE TABLE table_16186152_1 (state_delegate INTEGER, candidate VARCHAR) | SELECT MAX(state_delegate) FROM table_16186152_1 WHERE candidate = "Mitt Romney" |
Candidate John Mccain had how many delegates? | CREATE TABLE table_16186152_1 (delegates VARCHAR, candidate VARCHAR) | SELECT delegates FROM table_16186152_1 WHERE candidate = "John McCain" |
What's the percentage when the state delegate is 1662? | CREATE TABLE table_16186152_1 (percentage VARCHAR, state_delegate VARCHAR) | SELECT percentage FROM table_16186152_1 WHERE state_delegate = 1662 |
What series was sorted at number 3? | CREATE TABLE table_1620397_5 (series_sorted VARCHAR, _number VARCHAR) | SELECT series_sorted FROM table_1620397_5 WHERE _number = 3 |
What was the doctor for sorted series 6eb/b? | CREATE TABLE table_1620397_5 (doctor VARCHAR, series_sorted VARCHAR) | SELECT doctor FROM table_1620397_5 WHERE series_sorted = "6EB/B" |
What was the doctor when the author was Gary Hopkins category:articles with hcards? | CREATE TABLE table_1620397_5 (doctor VARCHAR, author VARCHAR) | SELECT doctor FROM table_1620397_5 WHERE author = "Gary Hopkins Category:Articles with hCards" |
Name the municpality for 57 populaton | CREATE TABLE table_16278673_1 (municipality VARCHAR, population VARCHAR) | SELECT municipality FROM table_16278673_1 WHERE population = "57" |
Name the population for sørvágur | CREATE TABLE table_16278673_1 (population VARCHAR, municipality VARCHAR) | SELECT population FROM table_16278673_1 WHERE municipality = "Sørvágur" |
Name the minimum inhabitants for markatal 49 | CREATE TABLE table_16278673_1 (inhabitants_per_km² INTEGER, markatal VARCHAR) | SELECT MIN(inhabitants_per_km²) FROM table_16278673_1 WHERE markatal = 49 |
How many events have a time of 1:48.322? | CREATE TABLE table_16308030_1 (event VARCHAR, time VARCHAR) | SELECT event FROM table_16308030_1 WHERE time = "1:48.322" |
How many years have a time of 1:42.086? | CREATE TABLE table_16308030_1 (year VARCHAR, time VARCHAR) | SELECT COUNT(year) FROM table_16308030_1 WHERE time = "1:42.086" |
Which college did Leon Perry attend? | CREATE TABLE table_16376436_1 (college VARCHAR, player VARCHAR) | SELECT college FROM table_16376436_1 WHERE player = "Leon Perry" |
What is the NFL team for the player who's college was Norfolk State? | CREATE TABLE table_16376436_1 (nfl_team VARCHAR, college VARCHAR) | SELECT nfl_team FROM table_16376436_1 WHERE college = "Norfolk State" |
Which player was pick number 150? | CREATE TABLE table_16376436_1 (player VARCHAR, pick__number VARCHAR) | SELECT player FROM table_16376436_1 WHERE pick__number = 150 |
What college did the defensive back attend? | CREATE TABLE table_16376436_1 (college VARCHAR, position VARCHAR) | SELECT college FROM table_16376436_1 WHERE position = "Defensive Back" |
What is the NFL team for the player who's college was North Carolina? | CREATE TABLE table_16376436_1 (nfl_team VARCHAR, college VARCHAR) | SELECT nfl_team FROM table_16376436_1 WHERE college = "North Carolina" |
What is the pick number for the player Garry Lewis? | CREATE TABLE table_16376436_1 (pick__number INTEGER, player VARCHAR) | SELECT MIN(pick__number) FROM table_16376436_1 WHERE player = "Garry Lewis" |
What is the home team that played on M.C.G. grounds? | CREATE TABLE table_16388398_2 (home_team VARCHAR, ground VARCHAR) | SELECT home_team FROM table_16388398_2 WHERE ground = "M.C.G." |
What was the home team score when Brisbane lions was the home team? | CREATE TABLE table_16388398_1 (home_team VARCHAR) | SELECT home_team AS score FROM table_16388398_1 WHERE home_team = "Brisbane Lions" |
When was the game played on Manuka Oval? | CREATE TABLE table_16388398_1 (date VARCHAR, ground VARCHAR) | SELECT date FROM table_16388398_1 WHERE ground = "Manuka Oval" |
What was the score for the home team when the away team was Sydney? | CREATE TABLE table_16388398_1 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team AS score FROM table_16388398_1 WHERE away_team = "Sydney" |
What were the home team scores at york park? | CREATE TABLE table_16388478_2 (home_team VARCHAR, ground VARCHAR) | SELECT home_team AS score FROM table_16388478_2 WHERE ground = "York Park" |
How many locations were there when sydney was the home team? | CREATE TABLE table_16388478_2 (ground VARCHAR, home_team VARCHAR) | SELECT COUNT(ground) FROM table_16388478_2 WHERE home_team = "Sydney" |
What were the home team scores when carlton was the home team? | CREATE TABLE table_16388478_2 (home_team VARCHAR) | SELECT home_team AS score FROM table_16388478_2 WHERE home_team = "Carlton" |
What were all the away teams when the crowd was 13304? | CREATE TABLE table_16388478_2 (away_team VARCHAR, crowd VARCHAR) | SELECT away_team FROM table_16388478_2 WHERE crowd = 13304 |
Name the least established | CREATE TABLE table_1641054_2 (established INTEGER) | SELECT MIN(established) FROM table_1641054_2 |
Name the most official number for tf1 # being 42 | CREATE TABLE table_16425614_4 (official__number INTEGER, tf1__number VARCHAR) | SELECT MAX(official__number) FROM table_16425614_4 WHERE tf1__number = 42 |
What was the nickname Established in 2002? | CREATE TABLE table_16432543_3 (nickname VARCHAR, established VARCHAR) | SELECT nickname FROM table_16432543_3 WHERE established = 2002 |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.