question stringlengths 12 244 | context stringlengths 27 489 | answer dict |
|---|---|---|
How many timeslots had viewers of 0.238 million? | CREATE TABLE table_27987623_3 (timeslot VARCHAR, viewers__millions_ VARCHAR) | {
"SQL_Query": "SELECT COUNT(timeslot) FROM table_27987623_3 WHERE viewers__millions_ = \"0.238\""
} |
Which episode was #1 in the order? | CREATE TABLE table_27987623_3 (episode VARCHAR, order VARCHAR) | {
"SQL_Query": "SELECT episode FROM table_27987623_3 WHERE order = 1"
} |
What's the density in the district with 2320529 citizens in 2011? | CREATE TABLE table_2801442_1 (density_in_2011___km²_ VARCHAR, population__2011_census_ VARCHAR) | {
"SQL_Query": "SELECT density_in_2011___km²_ FROM table_2801442_1 WHERE population__2011_census_ = 2320529"
} |
What's the code of the district in which 312520 people lived in 2011? | CREATE TABLE table_2801442_1 (code VARCHAR, population__2011_census_ VARCHAR) | {
"SQL_Query": "SELECT code FROM table_2801442_1 WHERE population__2011_census_ = 312520"
} |
What's the code of the district with 800.5 people per km2? | CREATE TABLE table_2801442_1 (code VARCHAR, density_in_2011___km²_ VARCHAR) | {
"SQL_Query": "SELECT code FROM table_2801442_1 WHERE density_in_2011___km²_ = \"800.5\""
} |
How many people lived in the district with a code GP in 2011? | CREATE TABLE table_2801442_1 (population__2011_census_ INTEGER, code VARCHAR) | {
"SQL_Query": "SELECT MIN(population__2011_census_) FROM table_2801442_1 WHERE code = \"GP\""
} |
How many people lived in the district whose headquarters is in Bhubaneswar in 2001? | CREATE TABLE table_2801442_1 (population__2001_census_ VARCHAR, headquarters VARCHAR) | {
"SQL_Query": "SELECT population__2001_census_ FROM table_2801442_1 WHERE headquarters = \"Bhubaneswar\""
} |
How big (in km2) is the district with a code BW? | CREATE TABLE table_2801442_1 (area__km²_ INTEGER, code VARCHAR) | {
"SQL_Query": "SELECT MIN(area__km²_) FROM table_2801442_1 WHERE code = \"BW\""
} |
What is the number of this season's episode that had the production code 2t6206? | CREATE TABLE table_28014096_1 (no_in_season INTEGER, production_code VARCHAR) | {
"SQL_Query": "SELECT MIN(no_in_season) FROM table_28014096_1 WHERE production_code = \"2T6206\""
} |
What episode number of the series had a production code of bdf409? | CREATE TABLE table_28019988_5 (series__number INTEGER, production_code VARCHAR) | {
"SQL_Query": "SELECT MIN(series__number) FROM table_28019988_5 WHERE production_code = \"BDF409\""
} |
What episode number of the season was written by Tom Garrigus and had 2.31 million u.s. viewers? | CREATE TABLE table_28019988_5 (season__number INTEGER, us_viewers__million_ VARCHAR, written_by VARCHAR) | {
"SQL_Query": "SELECT MAX(season__number) FROM table_28019988_5 WHERE us_viewers__million_ = \"2.31\" AND written_by = \"Tom Garrigus\""
} |
What is the highest numbered episode in the series? | CREATE TABLE table_28019988_5 (series__number INTEGER) | {
"SQL_Query": "SELECT MAX(series__number) FROM table_28019988_5"
} |
What episode number in the series had a production code of bdf405? | CREATE TABLE table_28019988_5 (series__number INTEGER, production_code VARCHAR) | {
"SQL_Query": "SELECT MIN(series__number) FROM table_28019988_5 WHERE production_code = \"BDF405\""
} |
Who is the operator when Roe was the bodybuilder? | CREATE TABLE table_28035004_1 (operator VARCHAR, bodybuilder VARCHAR) | {
"SQL_Query": "SELECT operator FROM table_28035004_1 WHERE bodybuilder = \"Roe\""
} |
What is the variant when Alexander was the bodybuilder? | CREATE TABLE table_28035004_1 (variant VARCHAR, bodybuilder VARCHAR) | {
"SQL_Query": "SELECT variant FROM table_28035004_1 WHERE bodybuilder = \"Alexander\""
} |
Who was the bodybuilder when Coventry was operating? | CREATE TABLE table_28035004_1 (bodybuilder VARCHAR, operator VARCHAR) | {
"SQL_Query": "SELECT bodybuilder FROM table_28035004_1 WHERE operator = \"Coventry\""
} |
How many different variants are there for Northern Counties bodybuilder? | CREATE TABLE table_28035004_1 (variant VARCHAR, bodybuilder VARCHAR) | {
"SQL_Query": "SELECT COUNT(variant) FROM table_28035004_1 WHERE bodybuilder = \"Northern Counties\""
} |
Who is the operator when willowbrook was the bodybuilder? | CREATE TABLE table_28035004_1 (operator VARCHAR, bodybuilder VARCHAR) | {
"SQL_Query": "SELECT operator FROM table_28035004_1 WHERE bodybuilder = \"Willowbrook\""
} |
How many teams had a point margin of 48? | CREATE TABLE table_28068063_3 (eliminated_from_competition VARCHAR, points_margin VARCHAR) | {
"SQL_Query": "SELECT COUNT(eliminated_from_competition) FROM table_28068063_3 WHERE points_margin = 48"
} |
How many teams eliminated béziers from competition? | CREATE TABLE table_28068063_3 (match_points VARCHAR, eliminated_from_competition VARCHAR) | {
"SQL_Query": "SELECT COUNT(match_points) FROM table_28068063_3 WHERE eliminated_from_competition = \"Béziers\""
} |
Who was eliminated from the competition when pau proceed to the quarter final? | CREATE TABLE table_28068063_3 (eliminated_from_competition VARCHAR, proceed_to_quarter_final VARCHAR) | {
"SQL_Query": "SELECT eliminated_from_competition FROM table_28068063_3 WHERE proceed_to_quarter_final = \"Pau\""
} |
Who was eliminated from the competition when connacht to the quarter final? | CREATE TABLE table_28068063_3 (eliminated_from_competition VARCHAR, proceed_to_quarter_final VARCHAR) | {
"SQL_Query": "SELECT eliminated_from_competition FROM table_28068063_3 WHERE proceed_to_quarter_final = \"Connacht\""
} |
Who proceeded to the quarter final when the london irish were eliminated from competition? | CREATE TABLE table_28068063_3 (proceed_to_quarter_final VARCHAR, eliminated_from_competition VARCHAR) | {
"SQL_Query": "SELECT proceed_to_quarter_final FROM table_28068063_3 WHERE eliminated_from_competition = \"London Irish\""
} |
What was the aggregate score for the match won by Brive? | CREATE TABLE table_28068063_2 (aggregate_score VARCHAR, winners VARCHAR) | {
"SQL_Query": "SELECT aggregate_score FROM table_28068063_2 WHERE winners = \"Brive\""
} |
What was the match points score for the match won by Connacht? | CREATE TABLE table_28068063_2 (match_points VARCHAR, winners VARCHAR) | {
"SQL_Query": "SELECT match_points FROM table_28068063_2 WHERE winners = \"Connacht\""
} |
What was the aggregate score for the match won by Viadana? | CREATE TABLE table_28068063_2 (aggregate_score VARCHAR, winners VARCHAR) | {
"SQL_Query": "SELECT aggregate_score FROM table_28068063_2 WHERE winners = \"Viadana\""
} |
Name the cfl team for patrice denis | CREATE TABLE table_28059992_2 (cfl_team VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT cfl_team FROM table_28059992_2 WHERE player = \"Patrice Denis\""
} |
Name the cfl team for robert beveridge | CREATE TABLE table_28059992_2 (cfl_team VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT cfl_team FROM table_28059992_2 WHERE player = \"Robert Beveridge\""
} |
Name the college for dl | CREATE TABLE table_28059992_2 (college VARCHAR, position VARCHAR) | {
"SQL_Query": "SELECT college FROM table_28059992_2 WHERE position = \"DL\""
} |
Name the number of colleges for jerome pathon | CREATE TABLE table_28059992_2 (college VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT COUNT(college) FROM table_28059992_2 WHERE player = \"Jerome Pathon\""
} |
Name the number of cfl teams for jeff traversy | CREATE TABLE table_28059992_2 (cfl_team VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT COUNT(cfl_team) FROM table_28059992_2 WHERE player = \"Jeff Traversy\""
} |
Name the position for british columbia | CREATE TABLE table_28059992_2 (position VARCHAR, college VARCHAR) | {
"SQL_Query": "SELECT position FROM table_28059992_2 WHERE college = \"British Columbia\""
} |
What original air date was the episode with production code of 5.05? | CREATE TABLE table_28089666_1 (original_air_date VARCHAR, production_code VARCHAR) | {
"SQL_Query": "SELECT original_air_date FROM table_28089666_1 WHERE production_code = \"5.05\""
} |
Who wrote episode with production code 1.01? | CREATE TABLE table_28089666_1 (written_by VARCHAR, production_code VARCHAR) | {
"SQL_Query": "SELECT written_by FROM table_28089666_1 WHERE production_code = \"1.01\""
} |
What is the title when the director is Maynard C. Virgil i ? | CREATE TABLE table_28140588_1 (title VARCHAR, directed_by VARCHAR) | {
"SQL_Query": "SELECT title FROM table_28140588_1 WHERE directed_by = \"Maynard C. Virgil I\""
} |
Who is the director when the production code is 60034? | CREATE TABLE table_28140588_1 (directed_by VARCHAR, production_code VARCHAR) | {
"SQL_Query": "SELECT directed_by FROM table_28140588_1 WHERE production_code = 60034"
} |
What is the name of the episode with 418 as the production code? | CREATE TABLE table_2818164_5 (title VARCHAR, production_code VARCHAR) | {
"SQL_Query": "SELECT title FROM table_2818164_5 WHERE production_code = 418"
} |
What episoe number in the season originally aired on February 11, 1988? | CREATE TABLE table_2818164_5 (no_in_season VARCHAR, original_air_date VARCHAR) | {
"SQL_Query": "SELECT no_in_season FROM table_2818164_5 WHERE original_air_date = \"February 11, 1988\""
} |
What episode number in the series is also number 17 in the season? | CREATE TABLE table_2818164_5 (no_in_series VARCHAR, no_in_season VARCHAR) | {
"SQL_Query": "SELECT no_in_series FROM table_2818164_5 WHERE no_in_season = \"17\""
} |
What is the production code for episode 96 in the series? | CREATE TABLE table_2818164_5 (production_code INTEGER, no_in_series VARCHAR) | {
"SQL_Query": "SELECT MIN(production_code) FROM table_2818164_5 WHERE no_in_series = \"96\""
} |
What is the production code that was written by matt robinson? | CREATE TABLE table_2818164_7 (production_code VARCHAR, written_by VARCHAR) | {
"SQL_Query": "SELECT production_code FROM table_2818164_7 WHERE written_by = \"Matt Robinson\""
} |
Which title has 147 as no. in series? | CREATE TABLE table_2818164_7 (title VARCHAR, no_in_series VARCHAR) | {
"SQL_Query": "SELECT title FROM table_2818164_7 WHERE no_in_series = 147"
} |
What is the original air date the was written by mark st. germain and direct by jay sandrich? | CREATE TABLE table_2818164_7 (original_air_date VARCHAR, written_by VARCHAR, directed_by VARCHAR) | {
"SQL_Query": "SELECT original_air_date FROM table_2818164_7 WHERE written_by = \"Mark St. Germain\" AND directed_by = \"Jay Sandrich\""
} |
What are the networks whose version of the show includes the judges batuhan zeynioğlu piatti murat bozok erol kaynar? | CREATE TABLE table_28190363_1 (network VARCHAR, judges VARCHAR) | {
"SQL_Query": "SELECT network FROM table_28190363_1 WHERE judges = \"Batuhan Zeynioğlu Piatti Murat Bozok Erol Kaynar\""
} |
How many networks are there that include the judges pete goffe-wood andrew atkinson benny masekwameng? | CREATE TABLE table_28190363_1 (network VARCHAR, judges VARCHAR) | {
"SQL_Query": "SELECT COUNT(network) FROM table_28190363_1 WHERE judges = \"Pete Goffe-Wood Andrew Atkinson Benny Masekwameng\""
} |
How many networks are there whose version of the shows includes judges tba and the presenter is Arbana Osmani? | CREATE TABLE table_28190363_1 (network VARCHAR, judges VARCHAR, presenter_s_ VARCHAR) | {
"SQL_Query": "SELECT COUNT(network) FROM table_28190363_1 WHERE judges = \"TBA\" AND presenter_s_ = \"Arbana Osmani\""
} |
How many sets of presenters are there for the version of the show named Celebrity Masterchef? | CREATE TABLE table_28190363_1 (presenter_s_ VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT COUNT(presenter_s_) FROM table_28190363_1 WHERE name = \"Celebrity MasterChef\""
} |
Who is the incumbent of district pa-8? | CREATE TABLE table_28188239_1 (incumbent VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT incumbent FROM table_28188239_1 WHERE district = \"PA-8\""
} |
How many incumbents are in district la-1? | CREATE TABLE table_28188239_1 (incumbent VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT COUNT(incumbent) FROM table_28188239_1 WHERE district = \"LA-1\""
} |
Who directed the episode whose production code is pabf05? | CREATE TABLE table_28194879_1 (directed_by VARCHAR, production_code VARCHAR) | {
"SQL_Query": "SELECT directed_by FROM table_28194879_1 WHERE production_code = \"PABF05\""
} |
What is the last number in season of the episodes written by Dan Vebber? | CREATE TABLE table_28194879_1 (_number INTEGER, written_by VARCHAR) | {
"SQL_Query": "SELECT MAX(_number) FROM table_28194879_1 WHERE written_by = \"Dan Vebber\""
} |
What is the number in season of the episode whose production code is pabf05? | CREATE TABLE table_28194879_1 (_number VARCHAR, production_code VARCHAR) | {
"SQL_Query": "SELECT _number FROM table_28194879_1 WHERE production_code = \"PABF05\""
} |
When were the Spartans founded? | CREATE TABLE table_28211213_1 (founded INTEGER, team_nickname VARCHAR) | {
"SQL_Query": "SELECT MAX(founded) FROM table_28211213_1 WHERE team_nickname = \"Spartans\""
} |
How many affiliations does the University of Toledo have? | CREATE TABLE table_28211213_1 (affiliation VARCHAR, institution VARCHAR) | {
"SQL_Query": "SELECT COUNT(affiliation) FROM table_28211213_1 WHERE institution = \"University of Toledo\""
} |
What is the affiliation of Davenport University? | CREATE TABLE table_28211213_1 (affiliation VARCHAR, institution VARCHAR) | {
"SQL_Query": "SELECT affiliation FROM table_28211213_1 WHERE institution = \"Davenport University\""
} |
What is the highest 2001 population when the ethnic group is white: british? | CREATE TABLE table_282413_3 (ethnic_group VARCHAR) | {
"SQL_Query": "SELECT MAX(2001 AS _population) FROM table_282413_3 WHERE ethnic_group = \"White: British\""
} |
How many times is the ethnic group other: total? | CREATE TABLE table_282413_3 (ethnic_group VARCHAR) | {
"SQL_Query": "SELECT COUNT(2001 AS __percentage) FROM table_282413_3 WHERE ethnic_group = \"Other: Total\""
} |
What is the highest 2011 population when the ethnic group is asian or asian british: asian other? | CREATE TABLE table_282413_3 (ethnic_group VARCHAR) | {
"SQL_Query": "SELECT MAX(2011 AS _population) FROM table_282413_3 WHERE ethnic_group = \"Asian or Asian British: Asian Other\""
} |
Name the affiliation for 27209 enrollment | CREATE TABLE table_28253870_1 (affiliation VARCHAR, enrollment VARCHAR) | {
"SQL_Query": "SELECT affiliation FROM table_28253870_1 WHERE enrollment = 27209"
} |
Name the least founded | CREATE TABLE table_28253870_1 (founded INTEGER) | {
"SQL_Query": "SELECT MIN(founded) FROM table_28253870_1"
} |
Name the founded for florida state university | CREATE TABLE table_28253870_1 (founded VARCHAR, institution VARCHAR) | {
"SQL_Query": "SELECT founded FROM table_28253870_1 WHERE institution = \"Florida State University\""
} |
Name the location for yellow jackets | CREATE TABLE table_28253870_1 (location VARCHAR, team_nickname VARCHAR) | {
"SQL_Query": "SELECT location FROM table_28253870_1 WHERE team_nickname = \"Yellow Jackets\""
} |
How many college teams have a player with a nationality of Russia? | CREATE TABLE table_2840500_6 (college_junior_club_team VARCHAR, nationality VARCHAR) | {
"SQL_Query": "SELECT COUNT(college_junior_club_team) FROM table_2840500_6 WHERE nationality = \"Russia\""
} |
Which pick did Michel Larocque receive? | CREATE TABLE table_2840500_6 (pick VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT pick FROM table_2840500_6 WHERE player = \"Michel Larocque\""
} |
Which team picked Blaine Russell? | CREATE TABLE table_2840500_6 (nhl_team VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT nhl_team FROM table_2840500_6 WHERE player = \"Blaine Russell\""
} |
How many entries for district home are listed for the 87th congress? | CREATE TABLE table_2841865_2 (district_home VARCHAR, congress VARCHAR) | {
"SQL_Query": "SELECT COUNT(district_home) FROM table_2841865_2 WHERE congress = \"87th\""
} |
What time span is listed under years for the 96th congres? | CREATE TABLE table_2841865_2 (years VARCHAR, congress VARCHAR) | {
"SQL_Query": "SELECT years FROM table_2841865_2 WHERE congress = \"96th\""
} |
What party is listed for the Representative under the 85th congress? | CREATE TABLE table_2841865_2 (party VARCHAR, congress VARCHAR) | {
"SQL_Query": "SELECT party FROM table_2841865_2 WHERE congress = \"85th\""
} |
How many entries are listed for party during the 69th congress? | CREATE TABLE table_2841865_2 (party VARCHAR, congress VARCHAR) | {
"SQL_Query": "SELECT COUNT(party) FROM table_2841865_2 WHERE congress = \"69th\""
} |
What frame of time is listed under years during the 72nd congress? | CREATE TABLE table_2841865_2 (years VARCHAR, congress VARCHAR) | {
"SQL_Query": "SELECT years FROM table_2841865_2 WHERE congress = \"72nd\""
} |
What name is listed under representative for the 112th congress? | CREATE TABLE table_2841865_2 (representative VARCHAR, congress VARCHAR) | {
"SQL_Query": "SELECT representative FROM table_2841865_2 WHERE congress = \"112th\""
} |
What is the value of the runner up column for the Alberta province? | CREATE TABLE table_28457809_3 (runner_up INTEGER, province VARCHAR) | {
"SQL_Query": "SELECT MAX(runner_up) FROM table_28457809_3 WHERE province = \"Alberta\""
} |
What year was Ontario's first LLCR? | CREATE TABLE table_28457809_3 (first_llcr VARCHAR, province VARCHAR) | {
"SQL_Query": "SELECT first_llcr FROM table_28457809_3 WHERE province = \"Ontario\""
} |
What is the pinyin name for the english name xin county? | CREATE TABLE table_2847477_2 (pinyin VARCHAR, english_name VARCHAR) | {
"SQL_Query": "SELECT pinyin FROM table_2847477_2 WHERE english_name = \"Xin County\""
} |
What is the area of 罗山县? | CREATE TABLE table_2847477_2 (area VARCHAR, simplified VARCHAR) | {
"SQL_Query": "SELECT area FROM table_2847477_2 WHERE simplified = \"罗山县\""
} |
What is the English name of gùshǐ xiàn? | CREATE TABLE table_2847477_2 (english_name VARCHAR, pinyin VARCHAR) | {
"SQL_Query": "SELECT english_name FROM table_2847477_2 WHERE pinyin = \"Gùshǐ Xiàn\""
} |
How many simplified names are there for xin county? | CREATE TABLE table_2847477_2 (simplified VARCHAR, english_name VARCHAR) | {
"SQL_Query": "SELECT COUNT(simplified) FROM table_2847477_2 WHERE english_name = \"Xin County\""
} |
What is the density of the place with an area of 1512? | CREATE TABLE table_2847477_2 (density INTEGER, area VARCHAR) | {
"SQL_Query": "SELECT MAX(density) FROM table_2847477_2 WHERE area = 1512"
} |
What is the area of xin county? | CREATE TABLE table_2847477_2 (area VARCHAR, english_name VARCHAR) | {
"SQL_Query": "SELECT area FROM table_2847477_2 WHERE english_name = \"Xin County\""
} |
How many positions are associated with the St. Louis Blues? | CREATE TABLE table_2850912_4 (position VARCHAR, nhl_team VARCHAR) | {
"SQL_Query": "SELECT COUNT(position) FROM table_2850912_4 WHERE nhl_team = \"St. Louis Blues\""
} |
Which junior team is associated with an NHL pick by the Buffalo Sabres? | CREATE TABLE table_2850912_4 (college_junior_club_team VARCHAR, nhl_team VARCHAR) | {
"SQL_Query": "SELECT college_junior_club_team FROM table_2850912_4 WHERE nhl_team = \"Buffalo Sabres\""
} |
Which position was selected for by the Toronto Maple Leafs? | CREATE TABLE table_2850912_4 (position VARCHAR, nhl_team VARCHAR) | {
"SQL_Query": "SELECT position FROM table_2850912_4 WHERE nhl_team = \"Toronto Maple Leafs\""
} |
How many different college/junior/club teams had player John Dzikowski? | CREATE TABLE table_2850912_6 (college_junior_club_team VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT COUNT(college_junior_club_team) FROM table_2850912_6 WHERE player = \"John Dzikowski\""
} |
What pick was Greg Strome? | CREATE TABLE table_2850912_6 (pick__number INTEGER, player VARCHAR) | {
"SQL_Query": "SELECT MAX(pick__number) FROM table_2850912_6 WHERE player = \"Greg Strome\""
} |
What is the gender of the cunningham hill infant school? | CREATE TABLE table_28523_2 (gender VARCHAR, school VARCHAR) | {
"SQL_Query": "SELECT gender FROM table_28523_2 WHERE school = \"Cunningham Hill Infant school\""
} |
What is the gender with a age range of 3-11 at the st adrian roman catholic primary school? | CREATE TABLE table_28523_2 (gender VARCHAR, age_range VARCHAR, school VARCHAR) | {
"SQL_Query": "SELECT gender FROM table_28523_2 WHERE age_range = \"3-11\" AND school = \"St Adrian Roman Catholic Primary school\""
} |
What is the website of the cunningham hill infant school? | CREATE TABLE table_28523_2 (school VARCHAR) | {
"SQL_Query": "SELECT school AS website FROM table_28523_2 WHERE school = \"Cunningham Hill Infant school\""
} |
Where is the cunningham hill infant school located? | CREATE TABLE table_28523_2 (location VARCHAR, school VARCHAR) | {
"SQL_Query": "SELECT location FROM table_28523_2 WHERE school = \"Cunningham Hill Infant school\""
} |
Name the event 3 deadlift for hennie jordan | CREATE TABLE table_28540428_3 (event_3_deadlift VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT event_3_deadlift FROM table_28540428_3 WHERE name = \"Hennie Jordan\""
} |
How many rebounds per game did Andrej Džaković average when playing 35 minutes per game? | CREATE TABLE table_28547289_1 (rebounds_per_game VARCHAR, minutes_per_game VARCHAR) | {
"SQL_Query": "SELECT rebounds_per_game FROM table_28547289_1 WHERE minutes_per_game = \"35\""
} |
What are all the winning records when the result is Scotland won on points table and the Runner-Up result is [[|]] 4 points? | CREATE TABLE table_28601467_1 (winner VARCHAR, result VARCHAR, runner_up VARCHAR) | {
"SQL_Query": "SELECT winner FROM table_28601467_1 WHERE result = \"Scotland won on points table\" AND runner_up = \"[[|]] 4 points\""
} |
What is the runner-up record where winner record is Ireland 59 points? | CREATE TABLE table_28601467_1 (runner_up VARCHAR, winner VARCHAR) | {
"SQL_Query": "SELECT runner_up FROM table_28601467_1 WHERE winner = \"Ireland 59 points\""
} |
Which nation hosted the competition in 2004? | CREATE TABLE table_28601467_1 (host_nation_s_ VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT host_nation_s_ FROM table_28601467_1 WHERE year = 2004"
} |
What was the final venue whene England hasted the competition and the runner-up record is [[|]] 4 points and the winner record is [[|]] 6 points? | CREATE TABLE table_28601467_1 (final_venue VARCHAR, winner VARCHAR, host_nation_s_ VARCHAR, runner_up VARCHAR) | {
"SQL_Query": "SELECT final_venue FROM table_28601467_1 WHERE host_nation_s_ = \"England\" AND runner_up = \"[[|]] 4 points\" AND winner = \"[[|]] 6 points\""
} |
What is the most recent year in which the winner record is Ireland 4 points? | CREATE TABLE table_28601467_1 (year INTEGER, winner VARCHAR) | {
"SQL_Query": "SELECT MAX(year) FROM table_28601467_1 WHERE winner = \"Ireland 4 points\""
} |
under which president was gunther volz executed? | CREATE TABLE table_2861364_1 (under_president VARCHAR, executed_person VARCHAR) | {
"SQL_Query": "SELECT under_president FROM table_2861364_1 WHERE executed_person = \"Gunther Volz\""
} |
who was executed during president charles de gaulle's reign for thr crime of child murder after rape? | CREATE TABLE table_2861364_1 (executed_person VARCHAR, under_president VARCHAR, crime VARCHAR) | {
"SQL_Query": "SELECT executed_person FROM table_2861364_1 WHERE under_president = \"Charles de Gaulle\" AND crime = \"Child murder after rape\""
} |
where was mazouz ghaouti executed? | CREATE TABLE table_2861364_1 (place_of_execution VARCHAR, executed_person VARCHAR) | {
"SQL_Query": "SELECT place_of_execution FROM table_2861364_1 WHERE executed_person = \"Mazouz Ghaouti\""
} |
for what crime was gunther volz executed at metz? | CREATE TABLE table_2861364_1 (crime VARCHAR, place_of_execution VARCHAR, executed_person VARCHAR) | {
"SQL_Query": "SELECT crime FROM table_2861364_1 WHERE place_of_execution = \"Metz\" AND executed_person = \"Gunther Volz\""
} |
How many of Asian release statuses does Uno HD have? | CREATE TABLE table_28621502_1 (asia VARCHAR, title VARCHAR) | {
"SQL_Query": "SELECT COUNT(asia) FROM table_28621502_1 WHERE title = \"UNO HD\""
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.