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