question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
How many bonus points did the club who had 18 losses have? | CREATE TABLE table_27293285_2 (bonus_points VARCHAR, lost VARCHAR) | SELECT bonus_points FROM table_27293285_2 WHERE lost = "18" |
How many points for did Munster have? | CREATE TABLE table_27293285_2 (points_for VARCHAR, club VARCHAR) | SELECT points_for FROM table_27293285_2 WHERE club = "Munster" |
How many points against did the club who had 353 points for have? | CREATE TABLE table_27293285_2 (points_against VARCHAR, points_for VARCHAR) | SELECT points_against FROM table_27293285_2 WHERE points_for = "353" |
What was the team the Suns played against in game number 4? | CREATE TABLE table_27312918_5 (team VARCHAR, game VARCHAR) | SELECT team FROM table_27312918_5 WHERE game = 4 |
Who got the most points in game number 5? | CREATE TABLE table_27312918_5 (high_points VARCHAR, game VARCHAR) | SELECT high_points FROM table_27312918_5 WHERE game = 5 |
What is the default desktop environment when the code base is ubuntu 8.04 and edition is fluxbox ce? | CREATE TABLE table_27329061_2 (default_desktop_environment VARCHAR, code_base VARCHAR, edition VARCHAR) | SELECT default_desktop_environment FROM table_27329061_2 WHERE code_base = "Ubuntu 8.04" AND edition = "Fluxbox CE" |
What is the compatible repository when the version is old version, no longer supported: 9 and default desktop environment is lxde? | CREATE TABLE table_27329061_2 (compatible_repository VARCHAR, version VARCHAR, default_desktop_environment VARCHAR) | SELECT compatible_repository FROM table_27329061_2 WHERE version = "Old version, no longer supported: 9" AND default_desktop_environment = "LXDE" |
What is the the codename when the code base is ubuntu 8.04 and the edition is fluxbox ce? | CREATE TABLE table_27329061_2 (codename VARCHAR, code_base VARCHAR, edition VARCHAR) | SELECT codename FROM table_27329061_2 WHERE code_base = "Ubuntu 8.04" AND edition = "Fluxbox CE" |
What is the default desktop environment when the edition is kde and the compatible repository is ubuntu 13.04? | CREATE TABLE table_27329061_2 (default_desktop_environment VARCHAR, edition VARCHAR, compatible_repository VARCHAR) | SELECT default_desktop_environment FROM table_27329061_2 WHERE edition = "KDE" AND compatible_repository = "Ubuntu 13.04" |
What is the version when the codename is ada? | CREATE TABLE table_27329061_2 (version VARCHAR, codename VARCHAR) | SELECT version FROM table_27329061_2 WHERE codename = "Ada" |
What is the version when the compatible reposityory is xubuntu 10.04 | CREATE TABLE table_27329061_2 (version VARCHAR, compatible_repository VARCHAR) | SELECT version FROM table_27329061_2 WHERE compatible_repository = "Xubuntu 10.04" |
What is the highest population in 2001? | CREATE TABLE table_27366772_3 (population__2001_ INTEGER) | SELECT MAX(population__2001_) FROM table_27366772_3 |
What district is known in Armenian as քանաքեր-զեյթուն? | CREATE TABLE table_27366772_3 (district VARCHAR, armenian VARCHAR) | SELECT district FROM table_27366772_3 WHERE armenian = "Քանաքեր-Զեյթուն" |
What is the Armenian name of the district that is 8.37 km² large? | CREATE TABLE table_27366772_3 (armenian VARCHAR, area__km²_ VARCHAR) | SELECT armenian FROM table_27366772_3 WHERE area__km²_ = "8.37" |
What is the name of the soccer stadium in NL providence? | CREATE TABLE table_27369069_1 (soccer_stadium VARCHAR, province VARCHAR) | SELECT soccer_stadium FROM table_27369069_1 WHERE province = "NL" |
which providence's soccer stadium was founded in 2005? | CREATE TABLE table_27369069_1 (province VARCHAR, founded VARCHAR) | SELECT province FROM table_27369069_1 WHERE founded = 2005 |
What is the team mascot for the soccer team in Charlottetown? | CREATE TABLE table_27369069_1 (varsity_name VARCHAR, city VARCHAR) | SELECT varsity_name FROM table_27369069_1 WHERE city = "Charlottetown" |
Which province has the soccer stadium that holds 4,000 people? | CREATE TABLE table_27369069_1 (province VARCHAR, stadium_capacity VARCHAR) | SELECT province FROM table_27369069_1 WHERE stadium_capacity = "4,000" |
Which University's soccer stadium in named Moncton Stadium? | CREATE TABLE table_27369069_1 (university VARCHAR, soccer_stadium VARCHAR) | SELECT university FROM table_27369069_1 WHERE soccer_stadium = "Moncton Stadium" |
Name the current womens lacrosse conference for 6000 enrollment | CREATE TABLE table_27378582_1 (current_womens_lacrosse_conference VARCHAR, enrollment VARCHAR) | SELECT current_womens_lacrosse_conference FROM table_27378582_1 WHERE enrollment = 6000 |
Name the city for enrollment being 19900 | CREATE TABLE table_27378582_1 (city VARCHAR, enrollment VARCHAR) | SELECT city FROM table_27378582_1 WHERE enrollment = 19900 |
Name the current womens lacrosse conference for bison | CREATE TABLE table_27378582_1 (current_womens_lacrosse_conference VARCHAR, nickname VARCHAR) | SELECT current_womens_lacrosse_conference FROM table_27378582_1 WHERE nickname = "Bison" |
Name the most founded for bison | CREATE TABLE table_27378582_1 (founded INTEGER, nickname VARCHAR) | SELECT MAX(founded) FROM table_27378582_1 WHERE nickname = "Bison" |
How many weeks was K.Maro at #1? | CREATE TABLE table_27441210_12 (weeks_at__number1 INTEGER, artist VARCHAR) | SELECT MAX(weeks_at__number1) FROM table_27441210_12 WHERE artist = "K.Maro" |
How many weeks was France at #1? | CREATE TABLE table_27441210_12 (weeks_at__number1 INTEGER, country VARCHAR) | SELECT MAX(weeks_at__number1) FROM table_27441210_12 WHERE country = "France" |
Name the number one singles for week 1 being 5 | CREATE TABLE table_27441210_20 (number_one_single_s_ VARCHAR, weeks_at__number1 VARCHAR) | SELECT number_one_single_s_ FROM table_27441210_20 WHERE weeks_at__number1 = 5 |
Name the number one singles for desvarieux, jacob | CREATE TABLE table_27441210_5 (number_one_single_s_ VARCHAR, artist VARCHAR) | SELECT number_one_single_s_ FROM table_27441210_5 WHERE artist = "Desvarieux, Jacob" |
Name the least weeks at number 1 for 1988 | CREATE TABLE table_27441210_5 (weeks_at__number1 INTEGER, year VARCHAR) | SELECT MIN(weeks_at__number1) FROM table_27441210_5 WHERE year = 1988 |
What is the name of the episode that was written by Scott M. Gimple? | CREATE TABLE table_27450976_1 (title VARCHAR, written_by VARCHAR) | SELECT title FROM table_27450976_1 WHERE written_by = "Scott M. Gimple" |
What is the title of the episode with a production code of 2j5504? | CREATE TABLE table_27450976_1 (title VARCHAR, production_code VARCHAR) | SELECT title FROM table_27450976_1 WHERE production_code = "2J5504" |
How many people wrote the episode with a production code of 2j5507? | CREATE TABLE table_27450976_1 (written_by VARCHAR, production_code VARCHAR) | SELECT COUNT(written_by) FROM table_27450976_1 WHERE production_code = "2J5507" |
What was the latest number in series that was directed by Skip Sudduth? | CREATE TABLE table_27491610_2 (no_in_series INTEGER, directed_by VARCHAR) | SELECT MAX(no_in_series) FROM table_27491610_2 WHERE directed_by = "Skip Sudduth" |
What number in season had 10.18 million US viewers? | CREATE TABLE table_27491610_2 (no_in_season VARCHAR, us_viewers__millions_ VARCHAR) | SELECT no_in_season FROM table_27491610_2 WHERE us_viewers__millions_ = "10.18" |
What was the original air date of the episode that was directed by Alex Zakrzewski? | CREATE TABLE table_27491610_2 (original_air_date VARCHAR, directed_by VARCHAR) | SELECT original_air_date FROM table_27491610_2 WHERE directed_by = "Alex Zakrzewski" |
What number in season is number 141 in series? | CREATE TABLE table_27491610_2 (no_in_season INTEGER, no_in_series VARCHAR) | SELECT MAX(no_in_season) FROM table_27491610_2 WHERE no_in_series = 141 |
What province was New Plymouth formed from? | CREATE TABLE table_275023_1 (formed_from VARCHAR, province VARCHAR) | SELECT formed_from FROM table_275023_1 WHERE province = "New Plymouth" |
Why was Otago formed? | CREATE TABLE table_275023_1 (reason VARCHAR, province VARCHAR) | SELECT reason FROM table_275023_1 WHERE province = "Otago" |
What provinces were formed from New Munster? | CREATE TABLE table_275023_1 (province VARCHAR, formed_from VARCHAR) | SELECT province FROM table_275023_1 WHERE formed_from = "New Munster" |
How many provinces are named Wellington? | CREATE TABLE table_275023_1 (formed_date VARCHAR, province VARCHAR) | SELECT COUNT(formed_date) FROM table_275023_1 WHERE province = "Wellington" |
If the decision was by Lalime, when in January was it made? | CREATE TABLE table_27537870_6 (january VARCHAR, decision VARCHAR) | SELECT january FROM table_27537870_6 WHERE decision = "Lalime" |
If the game was on January 21, which game was it? | CREATE TABLE table_27537870_6 (game INTEGER, january VARCHAR) | SELECT MAX(game) FROM table_27537870_6 WHERE january = 21 |
If the score is 5-3, who made the decision? | CREATE TABLE table_27537870_6 (decision VARCHAR, score VARCHAR) | SELECT decision FROM table_27537870_6 WHERE score = "5-3" |
If the opponent was the Philadelphia flyers, what was the record? | CREATE TABLE table_27537870_6 (record VARCHAR, opponent VARCHAR) | SELECT record FROM table_27537870_6 WHERE opponent = "Philadelphia Flyers" |
If the record was 22-21-5, who was the opponent? | CREATE TABLE table_27537870_6 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_27537870_6 WHERE record = "22-21-5" |
If the opponent was @ Boston Bruins, what was the Location/Attendance? | CREATE TABLE table_27537870_6 (location_attendance VARCHAR, opponent VARCHAR) | SELECT location_attendance FROM table_27537870_6 WHERE opponent = "@ Boston Bruins" |
What day in February was the team 17-29-7? | CREATE TABLE table_27539535_7 (february INTEGER, record VARCHAR) | SELECT MAX(february) FROM table_27539535_7 WHERE record = "17-29-7" |
What was the teams record when they played the ottawa senators? | CREATE TABLE table_27539535_7 (record VARCHAR, opponent VARCHAR) | SELECT record FROM table_27539535_7 WHERE opponent = "Ottawa Senators" |
What was the team's rcord on february 1? | CREATE TABLE table_27539535_7 (record VARCHAR, february VARCHAR) | SELECT record FROM table_27539535_7 WHERE february = 1 |
What day in February did the team play the boston bruins? | CREATE TABLE table_27539535_7 (february VARCHAR, opponent VARCHAR) | SELECT february FROM table_27539535_7 WHERE opponent = "Boston Bruins" |
In what season did Pons Racing compete? | CREATE TABLE table_27571406_1 (season VARCHAR, team_name VARCHAR) | SELECT season FROM table_27571406_1 WHERE team_name = "Pons Racing" |
What's the f/laps count for the team with 8 podiums? | CREATE TABLE table_27571406_1 (f_laps VARCHAR, podiums VARCHAR) | SELECT f_laps FROM table_27571406_1 WHERE podiums = 8 |
What is the lowest stage when the yellow jersey is Ronan Pensec? | CREATE TABLE table_275506_1 (stage INTEGER, yellow_jersey VARCHAR) | SELECT MIN(stage) FROM table_275506_1 WHERE yellow_jersey = "Ronan Pensec" |
What is every yellow jersey entry for the distance 125? | CREATE TABLE table_275506_1 (yellow_jersey VARCHAR, distance__km_ VARCHAR) | SELECT yellow_jersey FROM table_275506_1 WHERE distance__km_ = "125" |
Who is every stage winner at the distance of 162.5? | CREATE TABLE table_275506_1 (stage VARCHAR, distance__km_ VARCHAR) | SELECT stage AS winner FROM table_275506_1 WHERE distance__km_ = "162.5" |
How many entries for start of stage occur in the year 2006? | CREATE TABLE table_275506_1 (start_of_stage VARCHAR, year VARCHAR) | SELECT COUNT(start_of_stage) FROM table_275506_1 WHERE year = "2006" |
How much power does dwzf have? | CREATE TABLE table_27588823_2 (power__kw_ VARCHAR, callsign VARCHAR) | SELECT power__kw_ FROM table_27588823_2 WHERE callsign = "DWZF" |
What is the branding for callsign dypv? | CREATE TABLE table_27588823_2 (branding VARCHAR, callsign VARCHAR) | SELECT branding FROM table_27588823_2 WHERE callsign = "DYPV" |
What is the branding for the station located in san jose del monte? | CREATE TABLE table_27588823_2 (branding VARCHAR, location VARCHAR) | SELECT branding FROM table_27588823_2 WHERE location = "San Jose Del Monte" |
How many call signs does the location masinloc, zambales have? | CREATE TABLE table_27588823_2 (callsign VARCHAR, location VARCHAR) | SELECT COUNT(callsign) FROM table_27588823_2 WHERE location = "Masinloc, Zambales" |
What is the frequency of the station located in polangui, albay? | CREATE TABLE table_27588823_2 (frequency VARCHAR, location VARCHAR) | SELECT frequency FROM table_27588823_2 WHERE location = "Polangui, Albay" |
If the mountains classification is Mathias Frank, and the General Classification is Fabian Cancellara, what is the Points classification? | CREATE TABLE table_27573848_18 (points_classification VARCHAR, general_classification VARCHAR, mountains_classification VARCHAR) | SELECT points_classification FROM table_27573848_18 WHERE general_classification = "Fabian Cancellara" AND mountains_classification = "Mathias Frank" |
If the stage is smaller than 5.0, and the points classification is by Marco Marcato, who is the General classification by? | CREATE TABLE table_27573848_18 (general_classification VARCHAR, points_classification VARCHAR, stage VARCHAR) | SELECT general_classification FROM table_27573848_18 WHERE points_classification = "Marco Marcato" AND stage < 5.0 |
How many different people had a General Classification on Stage 5? | CREATE TABLE table_27573848_18 (general_classification VARCHAR, stage VARCHAR) | SELECT COUNT(general_classification) FROM table_27573848_18 WHERE stage = 5 |
How many times was Robert Gesink a winner? | CREATE TABLE table_27573848_18 (mountains_classification VARCHAR, winner VARCHAR) | SELECT COUNT(mountains_classification) FROM table_27573848_18 WHERE winner = "Robert Gesink" |
If the winner is Rui Costa, who made the mountains classification? | CREATE TABLE table_27573848_18 (mountains_classification VARCHAR, winner VARCHAR) | SELECT mountains_classification FROM table_27573848_18 WHERE winner = "Rui Costa" |
What was Team 1 Junior's points? | CREATE TABLE table_27603010_14 (points VARCHAR, team__number1 VARCHAR) | SELECT points FROM table_27603010_14 WHERE team__number1 = "Junior" |
What was the 2nd leg score if the team 1 is Deportivo Pasto? | CREATE TABLE table_27603010_14 (team__number1 VARCHAR) | SELECT 2 AS nd_leg FROM table_27603010_14 WHERE team__number1 = "Deportivo Pasto" |
Who was the team 2 that played against team 1 Atlético la Sabana? | CREATE TABLE table_27603010_14 (team__number2 VARCHAR, team__number1 VARCHAR) | SELECT team__number2 FROM table_27603010_14 WHERE team__number1 = "Atlético La Sabana" |
How many new points were earned by rk 26? | CREATE TABLE table_27615896_18 (new_points VARCHAR, rk VARCHAR) | SELECT new_points FROM table_27615896_18 WHERE rk = 26 |
How many points were won where new points was 1680? | CREATE TABLE table_27615896_18 (points INTEGER, new_points VARCHAR) | SELECT MIN(points) AS won FROM table_27615896_18 WHERE new_points = 1680 |
What are the total points for sd 15? | CREATE TABLE table_27615896_18 (points INTEGER, sd VARCHAR) | SELECT MAX(points) FROM table_27615896_18 WHERE sd = 15 |
What is the total number of sd listings where the status is quarterfinals lost to Novak Djokovic [1]? | CREATE TABLE table_27615896_18 (sd VARCHAR, status VARCHAR) | SELECT COUNT(sd) FROM table_27615896_18 WHERE status = "Quarterfinals lost to Novak Djokovic [1]" |
How many different counts for won points does Flavia Pennetta have? | CREATE TABLE table_27615896_20 (points VARCHAR, player VARCHAR) | SELECT COUNT(points) AS won FROM table_27615896_20 WHERE player = "Flavia Pennetta" |
What's Kaia Kanepi's Sd? | CREATE TABLE table_27615896_20 (sd INTEGER, player VARCHAR) | SELECT MIN(sd) FROM table_27615896_20 WHERE player = "Kaia Kanepi" |
What's the status of the player with 3041 points? | CREATE TABLE table_27615896_20 (status VARCHAR, points VARCHAR) | SELECT status FROM table_27615896_20 WHERE points = 3041 |
When 62 is the number in series who is the writer? | CREATE TABLE table_27657925_1 (written_by VARCHAR, no_in_series VARCHAR) | SELECT written_by FROM table_27657925_1 WHERE no_in_series = "62" |
When steve holland is the writer what is the air date? | CREATE TABLE table_27657925_1 (original_air_date VARCHAR, written_by VARCHAR) | SELECT original_air_date FROM table_27657925_1 WHERE written_by = "Steve Holland" |
When 231 is the production code what is the title? | CREATE TABLE table_27657925_1 (title VARCHAR, production_code VARCHAR) | SELECT title FROM table_27657925_1 WHERE production_code = "231" |
When there are 5.2 million u.s. viewers how many numbers in series are there? | CREATE TABLE table_27657925_1 (no_in_series VARCHAR, us_viewers__millions_ VARCHAR) | SELECT COUNT(no_in_series) FROM table_27657925_1 WHERE us_viewers__millions_ = "5.2" |
Name the total number of outgoing manager for villarreal b | CREATE TABLE table_27666856_3 (outgoing_manager VARCHAR, team VARCHAR) | SELECT COUNT(outgoing_manager) FROM table_27666856_3 WHERE team = "Villarreal B" |
Name the date of appointment for 26 may 2011 | CREATE TABLE table_27666856_3 (date_of_appointment VARCHAR, date_of_vacancy VARCHAR) | SELECT COUNT(date_of_appointment) FROM table_27666856_3 WHERE date_of_vacancy = "26 May 2011" |
Name the outgoing manager for esteban vigo | CREATE TABLE table_27666856_3 (outgoing_manager VARCHAR, replaced_by VARCHAR) | SELECT COUNT(outgoing_manager) FROM table_27666856_3 WHERE replaced_by = "Esteban Vigo" |
Name the number of team for 19th position | CREATE TABLE table_27666856_3 (team VARCHAR, position_in_table VARCHAR) | SELECT COUNT(team) FROM table_27666856_3 WHERE position_in_table = "19th" |
Name the manner of departure for luis enrique | CREATE TABLE table_27666856_3 (manner_of_departure VARCHAR, outgoing_manager VARCHAR) | SELECT manner_of_departure FROM table_27666856_3 WHERE outgoing_manager = "Luis Enrique" |
Who was the opponent in the Women's Cup 0 0 where Brancão Couto 0 is the scorer? | CREATE TABLE table_27654988_1 (opponent VARCHAR, competition VARCHAR, scorers VARCHAR) | SELECT opponent FROM table_27654988_1 WHERE competition = "Women's Cup 0 0" AND scorers = "Brancão Couto 0" |
What is the result of the game where the opponent is Innsbrucker Kilmarnock CSK VVS Samara? | CREATE TABLE table_27654988_1 (result VARCHAR, opponent VARCHAR) | SELECT result FROM table_27654988_1 WHERE opponent = "Innsbrucker Kilmarnock CSK VVS Samara" |
How many seasons was the opponent Vamos Idaliou Krka Novo Mesto SV Neulengbach? | CREATE TABLE table_27654988_1 (season VARCHAR, opponent VARCHAR) | SELECT COUNT(season) FROM table_27654988_1 WHERE opponent = "Vamos Idaliou Krka Novo Mesto SV Neulengbach" |
Who were the scorers in the game with final score 0–4 7–1 0–3? | CREATE TABLE table_27654988_1 (scorers VARCHAR, result VARCHAR) | SELECT scorers FROM table_27654988_1 WHERE result = "0–4 7–1 0–3" |
Name the kickoff for rheinstadion | CREATE TABLE table_27690037_2 (kickoff VARCHAR, game_site VARCHAR) | SELECT kickoff FROM table_27690037_2 WHERE game_site = "Rheinstadion" |
Who had the high point total on october 20? | CREATE TABLE table_27700530_5 (high_points VARCHAR, date VARCHAR) | SELECT high_points FROM table_27700530_5 WHERE date = "October 20" |
What was the series record at after game 3? | CREATE TABLE table_27700530_15 (series VARCHAR, game VARCHAR) | SELECT series FROM table_27700530_15 WHERE game = 3 |
What was the location and attendance for game 2? | CREATE TABLE table_27700530_15 (location_attendance VARCHAR, game VARCHAR) | SELECT location_attendance FROM table_27700530_15 WHERE game = 2 |
Who had the most points and how many did they have on April 22? | CREATE TABLE table_27700530_15 (high_points VARCHAR, date VARCHAR) | SELECT high_points FROM table_27700530_15 WHERE date = "April 22" |
Who had the most assists and how many did they have on October 5? | CREATE TABLE table_27704187_2 (high_assists VARCHAR, date VARCHAR) | SELECT high_assists FROM table_27704187_2 WHERE date = "October 5" |
List all artists with choreographer Marcos Aguirre and a simple rating. | CREATE TABLE table_27711947_1 (artist VARCHAR, choreographer VARCHAR, rating VARCHAR) | SELECT artist FROM table_27711947_1 WHERE choreographer = "Marcos Aguirre" AND rating = "Simple" |
How many times was the overall attendance 17807? | CREATE TABLE table_2771237_1 (overall_attendance VARCHAR, average_attendance VARCHAR) | SELECT COUNT(overall_attendance) FROM table_2771237_1 WHERE average_attendance = 17807 |
What is the overall attendance in the places where the average attendance was 17148? | CREATE TABLE table_2771237_1 (overall_attendance VARCHAR, average_attendance VARCHAR) | SELECT overall_attendance FROM table_2771237_1 WHERE average_attendance = 17148 |
What season was the average attendance is 16043? | CREATE TABLE table_2771237_1 (season VARCHAR, average_attendance VARCHAR) | SELECT season FROM table_2771237_1 WHERE average_attendance = 16043 |
What was the overall record in the season where average attendance was 16720? | CREATE TABLE table_2771237_1 (overall_record VARCHAR, average_attendance VARCHAR) | SELECT overall_record FROM table_2771237_1 WHERE average_attendance = 16720 |
Name the high assists for march 14 | CREATE TABLE table_27712451_9 (high_assists VARCHAR, date VARCHAR) | SELECT high_assists FROM table_27712451_9 WHERE date = "March 14" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.