question
stringlengths
16
239
table_name
stringlengths
3
43
columns
listlengths
5
20
column_types
listlengths
5
20
gold_sql
stringlengths
35
209
db_id
stringclasses
1 value
source
stringclasses
1 value
what's the name with first operational being march 1945
abc_computer_info
[ "name", "first_operational", "numeral_system", "computing_mechanism", "programming", "turing_complete" ]
[ "text", "text", "text", "text", "text", "text" ]
SELECT "name" FROM abc_computer_info WHERE "first_operational" = 'March 1945'
dev
wikisql
what's the computing mechanbeingm with first operational being february 1944
abc_computer_info
[ "name", "first_operational", "numeral_system", "computing_mechanism", "programming", "turing_complete" ]
[ "text", "text", "text", "text", "text", "text" ]
SELECT "computing_mechanism" FROM abc_computer_info WHERE "first_operational" = 'February 1944'
dev
wikisql
what's the turing complete with name being atanasoff–berry computer (us)
abc_computer_info
[ "name", "first_operational", "numeral_system", "computing_mechanism", "programming", "turing_complete" ]
[ "text", "text", "text", "text", "text", "text" ]
SELECT "turing_complete" FROM abc_computer_info WHERE "name" = 'Atanasoff–Berry Computer (US)'
dev
wikisql
what's the first operational with programming being not programmable—single purpose
abc_computer_info
[ "name", "first_operational", "numeral_system", "computing_mechanism", "programming", "turing_complete" ]
[ "text", "text", "text", "text", "text", "text" ]
SELECT "first_operational" FROM abc_computer_info WHERE "programming" = 'Not programmable—single purpose'
dev
wikisql
What country has a 5.5 mark for security?
cdi_scores
[ "country", "rank", "aid", "trade", "investment", "migration", "environment", "security", "technology", "overall_average" ]
[ "real", "text", "text", "text", "text", "text", "text", "text", "text", "text" ]
SELECT "rank" FROM cdi_scores WHERE "security" = '5.5'
dev
wikisql
How many times is denmark ranked in technology?
cdi_scores
[ "country", "rank", "aid", "trade", "investment", "migration", "environment", "security", "technology", "overall_average" ]
[ "real", "text", "text", "text", "text", "text", "text", "text", "text", "text" ]
SELECT COUNT("technology") FROM cdi_scores WHERE "rank" = 'Denmark'
dev
wikisql
What is the environment rating of the country with an overall average rating of 4.7?
cdi_scores
[ "country", "rank", "aid", "trade", "investment", "migration", "environment", "security", "technology", "overall_average" ]
[ "real", "text", "text", "text", "text", "text", "text", "text", "text", "text" ]
SELECT "environment" FROM cdi_scores WHERE "overall_average" = '4.7'
dev
wikisql
What is the migration rating when trade is 5.7?
cdi_scores
[ "country", "rank", "aid", "trade", "investment", "migration", "environment", "security", "technology", "overall_average" ]
[ "real", "text", "text", "text", "text", "text", "text", "text", "text", "text" ]
SELECT "migration" FROM cdi_scores WHERE "trade" = '5.7'
dev
wikisql
What is the lowest PF?
curling_2005_toh
[ "locale", "skip", "w", "l", "pf", "pa", "ends_won", "ends_lost", "blank_ends", "stolen_ends", "shot_pct" ]
[ "text", "text", "real", "real", "real", "real", "real", "real", "real", "real", "real" ]
SELECT MIN("pf") FROM curling_2005_toh
dev
wikisql
What is the PA when the skip is Colleen Jones?
curling_2005_toh
[ "locale", "skip", "w", "l", "pf", "pa", "ends_won", "ends_lost", "blank_ends", "stolen_ends", "shot_pct" ]
[ "text", "text", "real", "real", "real", "real", "real", "real", "real", "real", "real" ]
SELECT "pa" FROM curling_2005_toh WHERE "skip" = 'Colleen Jones'
dev
wikisql
What is the minimum PA when ends lost is 45?
curling_2005_toh
[ "locale", "skip", "w", "l", "pf", "pa", "ends_won", "ends_lost", "blank_ends", "stolen_ends", "shot_pct" ]
[ "text", "text", "real", "real", "real", "real", "real", "real", "real", "real", "real" ]
SELECT MIN("pa") FROM curling_2005_toh WHERE "ends_lost" = 45
dev
wikisql
What is the PA when the PF is 77?
curling_2005_toh
[ "locale", "skip", "w", "l", "pf", "pa", "ends_won", "ends_lost", "blank_ends", "stolen_ends", "shot_pct" ]
[ "text", "text", "real", "real", "real", "real", "real", "real", "real", "real", "real" ]
SELECT "pa" FROM curling_2005_toh WHERE "pf" = 77
dev
wikisql
What is the total number of ends won when the locale is Northwest Territories Yukon?
curling_2005_toh
[ "locale", "skip", "w", "l", "pf", "pa", "ends_won", "ends_lost", "blank_ends", "stolen_ends", "shot_pct" ]
[ "text", "text", "real", "real", "real", "real", "real", "real", "real", "real", "real" ]
SELECT COUNT("ends_won") FROM curling_2005_toh WHERE "locale" = 'Northwest Territories Yukon'
dev
wikisql
what's the won with try bonus being 8
rugby_points
[ "club", "played", "won", "drawn", "lost", "points_for", "points_against", "tries_for", "tries_against", "try_bonus", "losing_bonus", "points" ]
[ "text", "text", "text", "text", "text", "text", "text", "text", "text", "text", "text", "text" ]
SELECT "won" FROM rugby_points WHERE "try_bonus" = '8'
dev
wikisql
what's the club with losing bonus being 1
rugby_points
[ "club", "played", "won", "drawn", "lost", "points_for", "points_against", "tries_for", "tries_against", "try_bonus", "losing_bonus", "points" ]
[ "text", "text", "text", "text", "text", "text", "text", "text", "text", "text", "text", "text" ]
SELECT "club" FROM rugby_points WHERE "losing_bonus" = '1'
dev
wikisql
how many losing bonus with won being 10 and points against being 283
rugby_points
[ "club", "played", "won", "drawn", "lost", "points_for", "points_against", "tries_for", "tries_against", "try_bonus", "losing_bonus", "points" ]
[ "text", "text", "text", "text", "text", "text", "text", "text", "text", "text", "text", "text" ]
SELECT COUNT("losing_bonus") FROM rugby_points WHERE "won" = '10' AND "points_against" = '283'
dev
wikisql
how many points against with tries for being 43
rugby_points
[ "club", "played", "won", "drawn", "lost", "points_for", "points_against", "tries_for", "tries_against", "try_bonus", "losing_bonus", "points" ]
[ "text", "text", "text", "text", "text", "text", "text", "text", "text", "text", "text", "text" ]
SELECT COUNT("points_against") FROM rugby_points WHERE "tries_for" = '43'
dev
wikisql
what's the points with tries for being 64
rugby_points
[ "club", "played", "won", "drawn", "lost", "points_for", "points_against", "tries_for", "tries_against", "try_bonus", "losing_bonus", "points" ]
[ "text", "text", "text", "text", "text", "text", "text", "text", "text", "text", "text", "text" ]
SELECT "points" FROM rugby_points WHERE "tries_for" = '64'
dev
wikisql
what's the won with points against being 597
rugby_points
[ "club", "played", "won", "drawn", "lost", "points_for", "points_against", "tries_for", "tries_against", "try_bonus", "losing_bonus", "points" ]
[ "text", "text", "text", "text", "text", "text", "text", "text", "text", "text", "text", "text" ]
SELECT "won" FROM rugby_points WHERE "points_against" = '597'
dev
wikisql
What is the type of the player whose transfer fee was €20m?
player_transfers
[ "n", "p", "name", "eu", "country", "age", "type", "moving_from", "transfer_window", "ends", "transfer_fee", "source" ]
[ "real", "text", "text", "text", "text", "real", "text", "text", "text", "text", "text", "text" ]
SELECT "type" FROM player_transfers WHERE "transfer_fee" = '€20M'
dev
wikisql
What is the EU status of ESP?
player_transfers
[ "n", "p", "name", "eu", "country", "age", "type", "moving_from", "transfer_window", "ends", "transfer_fee", "source" ]
[ "real", "text", "text", "text", "text", "real", "text", "text", "text", "text", "text", "text" ]
SELECT "eu" FROM player_transfers WHERE "country" = 'ESP'
dev
wikisql
How many numbers are ending in 1 year?
player_transfers
[ "n", "p", "name", "eu", "country", "age", "type", "moving_from", "transfer_window", "ends", "transfer_fee", "source" ]
[ "real", "text", "text", "text", "text", "real", "text", "text", "text", "text", "text", "text" ]
SELECT COUNT("n") FROM player_transfers WHERE "ends" = '1 year'
dev
wikisql
what is the nme of the song performed by billy vaughn?
vg_lista_1959
[ "position", "artist", "song_title", "highest_position", "points" ]
[ "real", "text", "text", "real", "real" ]
SELECT "song_title" FROM vg_lista_1959 WHERE "artist" = 'Billy Vaughn'
dev
wikisql
What is highest place reached by artist Ray Adams?
chart_positions
[ "position", "artist", "song_title", "highest_position", "points" ]
[ "real", "text", "text", "real", "real" ]
SELECT MAX("position") FROM chart_positions WHERE "artist" = 'Ray Adams'
dev
wikisql
What is the title of the song that received 259 points?
chart_positions
[ "position", "artist", "song_title", "highest_position", "points" ]
[ "real", "text", "text", "real", "real" ]
SELECT "song_title" FROM chart_positions WHERE "points" = 259
dev
wikisql
how heavy is the maximum
west_gondola_84
[ "name", "japanese", "length", "max_speed", "per_lift", "per_hour", "built" ]
[ "text", "text", "text", "text", "real", "text", "text" ]
SELECT MAX("per_lift") FROM west_gondola_84
dev
wikisql
how many channels were gained in 1997
tv_stations_edmonton
[ "city", "station", "year_acquired", "primary_programming_source", "other_programming_sources", "current_status" ]
[ "text", "text", "real", "text", "text", "text" ]
SELECT COUNT("other_programming_sources") FROM tv_stations_edmonton WHERE "year_acquired" = 1997
dev
wikisql
how any were gained as the chan
tv_stations_edmonton
[ "city", "station", "year_acquired", "primary_programming_source", "other_programming_sources", "current_status" ]
[ "text", "text", "real", "text", "text", "text" ]
SELECT COUNT("year_acquired") FROM tv_stations_edmonton WHERE "station" = 'CHAN'
dev
wikisql
how many is the minimum for citv
tv_stations_edmonton
[ "city", "station", "year_acquired", "primary_programming_source", "other_programming_sources", "current_status" ]
[ "text", "text", "real", "text", "text", "text" ]
SELECT MIN("year_acquired") FROM tv_stations_edmonton WHERE "station" = 'CITV'
dev
wikisql
where is citv located
tv_stations_edmonton
[ "city", "station", "year_acquired", "primary_programming_source", "other_programming_sources", "current_status" ]
[ "text", "text", "real", "text", "text", "text" ]
SELECT "city" FROM tv_stations_edmonton WHERE "station" = 'CITV'
dev
wikisql
which station is located in edmonton
tv_stations_edmonton
[ "city", "station", "year_acquired", "primary_programming_source", "other_programming_sources", "current_status" ]
[ "text", "text", "real", "text", "text", "text" ]
SELECT "station" FROM tv_stations_edmonton WHERE "city" = 'Edmonton'
dev
wikisql
What was the outcome for the match in 1989?
tennis_match_stats
[ "outcome", "year", "location", "surface", "partner", "opponents", "score" ]
[ "text", "text", "text", "text", "text", "text", "text" ]
SELECT "outcome" FROM tennis_match_stats WHERE "year" = '1989'
dev
wikisql
How many locations hosted Claudia Kohde-Kilsch Eva Pfaff?
tennis_match_stats
[ "outcome", "year", "location", "surface", "partner", "opponents", "score" ]
[ "text", "text", "text", "text", "text", "text", "text" ]
SELECT COUNT("location") FROM tennis_match_stats WHERE "opponents" = 'Claudia Kohde-Kilsch Eva Pfaff'
dev
wikisql
Who were all of the opponents in 1984?
tennis_match_stats
[ "outcome", "year", "location", "surface", "partner", "opponents", "score" ]
[ "text", "text", "text", "text", "text", "text", "text" ]
SELECT "opponents" FROM tennis_match_stats WHERE "year" = '1984'
dev
wikisql
How many partners were there in 1988?
tennis_match_stats
[ "outcome", "year", "location", "surface", "partner", "opponents", "score" ]
[ "text", "text", "text", "text", "text", "text", "text" ]
SELECT COUNT("partner") FROM tennis_match_stats WHERE "year" = '1988'
dev
wikisql
How tall is Maksim Botin?
vc_dynamo_moscow_players
[ "shirt_no", "nationality", "player", "birth_date", "height", "position" ]
[ "real", "text", "text", "text", "real", "text" ]
SELECT "height" FROM vc_dynamo_moscow_players WHERE "player" = 'Maksim Botin'
dev
wikisql
What is Maksim Botin's position?
vc_dynamo_moscow_players
[ "shirt_no", "nationality", "player", "birth_date", "height", "position" ]
[ "real", "text", "text", "text", "real", "text" ]
SELECT "position" FROM vc_dynamo_moscow_players WHERE "player" = 'Maksim Botin'
dev
wikisql
What is Roman Bragin's position?
vc_dynamo_moscow_players
[ "shirt_no", "nationality", "player", "birth_date", "height", "position" ]
[ "real", "text", "text", "text", "real", "text" ]
SELECT "position" FROM vc_dynamo_moscow_players WHERE "player" = 'Roman Bragin'
dev
wikisql
How many position does Teodor Salparov play on?
vc_dynamo_moscow_players
[ "shirt_no", "nationality", "player", "birth_date", "height", "position" ]
[ "real", "text", "text", "text", "real", "text" ]
SELECT COUNT("position") FROM vc_dynamo_moscow_players WHERE "player" = 'Teodor Salparov'
dev
wikisql
what is the minimum points with goals for/against being 8-5
super_league_2008
[ "position", "club_city_town", "games_played", "w_l_d", "goals_for_against", "points" ]
[ "real", "text", "real", "text", "text", "real" ]
SELECT MIN("points") FROM super_league_2008 WHERE "goals_for_against" = '8-5'
dev
wikisql
what's the w-l-d with position being 1
super_league_2008
[ "position", "club_city_town", "games_played", "w_l_d", "goals_for_against", "points" ]
[ "real", "text", "real", "text", "text", "real" ]
SELECT "w_l_d" FROM super_league_2008 WHERE "position" = 1
dev
wikisql
who is the the club (city/town) with goals for/against being 14-2
super_league_2008
[ "position", "club_city_town", "games_played", "w_l_d", "goals_for_against", "points" ]
[ "real", "text", "real", "text", "text", "real" ]
SELECT "club_city_town" FROM super_league_2008 WHERE "goals_for_against" = '14-2'
dev
wikisql
what's the goals for/against with w-l-d being 3-1-1
super_league_2008
[ "position", "club_city_town", "games_played", "w_l_d", "goals_for_against", "points" ]
[ "real", "text", "real", "text", "text", "real" ]
SELECT "goals_for_against" FROM super_league_2008 WHERE "w_l_d" = '3-1-1'
dev
wikisql
what is the minimum games played with goals for/against being 7-5
super_league_2008
[ "position", "club_city_town", "games_played", "w_l_d", "goals_for_against", "points" ]
[ "real", "text", "real", "text", "text", "real" ]
SELECT MIN("games_played") FROM super_league_2008 WHERE "goals_for_against" = '7-5'
dev
wikisql
What is the nationality of the player whose college/junior/club team (league) is Seattle Thunderbirds (WHL)?
draft_picks_1993
[ "round", "pick", "player", "position", "nationality", "college_junior_club_team_league" ]
[ "real", "text", "text", "text", "text", "text" ]
SELECT "nationality" FROM draft_picks_1993 WHERE "college_junior_club_team_league" = 'Seattle Thunderbirds (WHL)'
dev
wikisql
What is the college/junior/club team (league) of the player who was pick number 130?
draft_picks_1993
[ "round", "pick", "player", "position", "nationality", "college_junior_club_team_league" ]
[ "real", "text", "text", "text", "text", "text" ]
SELECT "college_junior_club_team_league" FROM draft_picks_1993 WHERE "pick" = '130'
dev
wikisql
What is the pick number for round 2?
draft_picks_1993
[ "round", "pick", "player", "position", "nationality", "college_junior_club_team_league" ]
[ "real", "text", "text", "text", "text", "text" ]
SELECT "pick" FROM draft_picks_1993 WHERE "round" = 2
dev
wikisql
what time is mon may 26 and fri may 30 is 18' 28.27 122.599mph?
iomm_tt_results
[ "rank", "rider", "mon_26_may", "tues_27_may", "wed_28_may", "thurs_29_may", "fri_30_may" ]
[ "real", "text", "text", "text", "text", "text", "text" ]
SELECT "mon_26_may" FROM iomm_tt_results WHERE "fri_30_may" = '18'' 28.27 122.599mph'
dev
wikisql
what tims is wed may 28 and mon may 26 is 17' 58.34 125.960mph?
iomm_tt_results
[ "rank", "rider", "mon_26_may", "tues_27_may", "wed_28_may", "thurs_29_may", "fri_30_may" ]
[ "real", "text", "text", "text", "text", "text", "text" ]
SELECT "wed_28_may" FROM iomm_tt_results WHERE "mon_26_may" = '17'' 58.34 125.960mph'
dev
wikisql
what is the numbr for fri may 30 and mon may 26 is 19' 02.890 118.847mph?
iomm_tt_results
[ "rank", "rider", "mon_26_may", "tues_27_may", "wed_28_may", "thurs_29_may", "fri_30_may" ]
[ "real", "text", "text", "text", "text", "text", "text" ]
SELECT "fri_30_may" FROM iomm_tt_results WHERE "mon_26_may" = '19'' 02.890 118.847mph'
dev
wikisql
What the name of the school where the last win in 2007-08?
all_ireland_schools_boys
[ "school", "winners", "finalists", "total_finals", "year_of_last_win" ]
[ "text", "real", "real", "real", "text" ]
SELECT "school" FROM all_ireland_schools_boys WHERE "year_of_last_win" = '2007-08'
dev
wikisql
How many times was banbridge academy the winner?
all_ireland_schools_boys
[ "school", "winners", "finalists", "total_finals", "year_of_last_win" ]
[ "text", "real", "real", "real", "text" ]
SELECT COUNT("winners") FROM all_ireland_schools_boys WHERE "school" = 'Banbridge Academy'
dev
wikisql
What are the names that had a finalist score of 2?
all_ireland_schools_boys
[ "school", "winners", "finalists", "total_finals", "year_of_last_win" ]
[ "text", "real", "real", "real", "text" ]
SELECT "school" FROM all_ireland_schools_boys WHERE "finalists" = 2
dev
wikisql
In what year was the total finals at 10?
all_ireland_schools_boys
[ "school", "winners", "finalists", "total_finals", "year_of_last_win" ]
[ "text", "real", "real", "real", "text" ]
SELECT "year_of_last_win" FROM all_ireland_schools_boys WHERE "total_finals" = 10
dev
wikisql
What is the name of the school where the year of last win is 1985-86?
all_ireland_schools_boys
[ "school", "winners", "finalists", "total_finals", "year_of_last_win" ]
[ "text", "real", "real", "real", "text" ]
SELECT "school" FROM all_ireland_schools_boys WHERE "year_of_last_win" = '1985-86'
dev
wikisql
How many total finals where there when the last win was in 2012-13?
all_ireland_schools_boys
[ "school", "winners", "finalists", "total_finals", "year_of_last_win" ]
[ "text", "real", "real", "real", "text" ]
SELECT "total_finals" FROM all_ireland_schools_boys WHERE "year_of_last_win" = '2012-13'
dev
wikisql
Name the team for 1993-94 for 32
argentinian_football_stats
[ "team", "average", "points", "played", "1992_93", "1993_94", "1994_1995" ]
[ "text", "text", "real", "real", "text", "text", "real" ]
SELECT "team" FROM argentinian_football_stats WHERE "1993_94" = '32'
dev
wikisql
Name the most played
argentinian_football_stats
[ "team", "average", "points", "played", "1992_93", "1993_94", "1994_1995" ]
[ "text", "text", "real", "real", "text", "text", "real" ]
SELECT MAX("played") FROM argentinian_football_stats
dev
wikisql
Name the total number of 1992-93 for 115 points
argentinian_football_stats
[ "team", "average", "points", "played", "1992_93", "1993_94", "1994_1995" ]
[ "text", "text", "real", "real", "text", "text", "real" ]
SELECT COUNT("1992_93") FROM argentinian_football_stats WHERE "points" = 115
dev
wikisql
Name the most played
argentinian_football_stats
[ "team", "average", "points", "played", "1992_93", "1993_94", "1994_1995" ]
[ "text", "text", "real", "real", "text", "text", "real" ]
SELECT MAX("played") FROM argentinian_football_stats
dev
wikisql
Name the most touchdowns for field goals being 1
football_stats_1903
[ "player", "position", "starter", "touchdowns", "extra_points", "field_goals", "points" ]
[ "text", "text", "text", "real", "real", "real", "real" ]
SELECT MAX("touchdowns") FROM football_stats_1903 WHERE "field_goals" = 1
dev
wikisql
Name the starter for position being left end
football_stats_1903
[ "player", "position", "starter", "touchdowns", "extra_points", "field_goals", "points" ]
[ "text", "text", "text", "real", "real", "real", "real" ]
SELECT "starter" FROM football_stats_1903 WHERE "position" = 'Left end'
dev
wikisql
Name the fewest touchdowns
football_stats_1903
[ "player", "position", "starter", "touchdowns", "extra_points", "field_goals", "points" ]
[ "text", "text", "text", "real", "real", "real", "real" ]
SELECT MIN("touchdowns") FROM football_stats_1903
dev
wikisql
Name the most extra points for right tackle
football_stats_1903
[ "player", "position", "starter", "touchdowns", "extra_points", "field_goals", "points" ]
[ "text", "text", "text", "real", "real", "real", "real" ]
SELECT MAX("extra_points") FROM football_stats_1903 WHERE "position" = 'Right tackle'
dev
wikisql
Name the number of points for field goals being 1
football_stats_1903
[ "player", "position", "starter", "touchdowns", "extra_points", "field_goals", "points" ]
[ "text", "text", "text", "real", "real", "real", "real" ]
SELECT COUNT("points") FROM football_stats_1903 WHERE "field_goals" = 1
dev
wikisql
Name the most touchdowns for becker
football_stats_1904
[ "player", "position", "starter", "touchdowns", "extra_points", "field_goals", "points" ]
[ "text", "text", "text", "real", "real", "real", "real" ]
SELECT MAX("touchdowns") FROM football_stats_1904 WHERE "player" = 'Becker'
dev
wikisql
Name the extra points for left guard
football_stats_1904
[ "player", "position", "starter", "touchdowns", "extra_points", "field_goals", "points" ]
[ "text", "text", "text", "real", "real", "real", "real" ]
SELECT "extra_points" FROM football_stats_1904 WHERE "position" = 'Left guard'
dev
wikisql
Name the least touchdowns for 11 points
football_stats_1904
[ "player", "position", "starter", "touchdowns", "extra_points", "field_goals", "points" ]
[ "text", "text", "text", "real", "real", "real", "real" ]
SELECT MIN("touchdowns") FROM football_stats_1904 WHERE "points" = 11
dev
wikisql
Name the most field goals
football_stats_1904
[ "player", "position", "starter", "touchdowns", "extra_points", "field_goals", "points" ]
[ "text", "text", "text", "real", "real", "real", "real" ]
SELECT MAX("field_goals") FROM football_stats_1904
dev
wikisql
Name the number of field goals for 19 extra points
football_stats_1904
[ "player", "position", "starter", "touchdowns", "extra_points", "field_goals", "points" ]
[ "text", "text", "text", "real", "real", "real", "real" ]
SELECT COUNT("field_goals") FROM football_stats_1904 WHERE "extra_points" = 19
dev
wikisql
Name the most touchdowns for norcross
football_stats_1904
[ "player", "position", "starter", "touchdowns", "extra_points", "field_goals", "points" ]
[ "text", "text", "text", "real", "real", "real", "real" ]
SELECT MAX("touchdowns") FROM football_stats_1904 WHERE "player" = 'Norcross'
dev
wikisql
Name who was famous for finished in 9th
celebrity_get_out
[ "celebrity", "famous_for", "entered", "exited", "finished" ]
[ "text", "text", "text", "text", "text" ]
SELECT "famous_for" FROM celebrity_get_out WHERE "finished" = '9th'
dev
wikisql
Name the finished for exited day 13
celebrity_get_out
[ "celebrity", "famous_for", "entered", "exited", "finished" ]
[ "text", "text", "text", "text", "text" ]
SELECT "finished" FROM celebrity_get_out WHERE "exited" = 'Day 13'
dev
wikisql
Name the entered for famous for page 3 model
celebrity_get_out
[ "celebrity", "famous_for", "entered", "exited", "finished" ]
[ "text", "text", "text", "text", "text" ]
SELECT "entered" FROM celebrity_get_out WHERE "famous_for" = 'Page 3 Model'
dev
wikisql
Name the finished for kerry katona
celebrity_get_out
[ "celebrity", "famous_for", "entered", "exited", "finished" ]
[ "text", "text", "text", "text", "text" ]
SELECT COUNT("finished") FROM celebrity_get_out WHERE "celebrity" = 'Kerry Katona'
dev
wikisql
Name the finished for exited of day 13
celebrity_get_out
[ "celebrity", "famous_for", "entered", "exited", "finished" ]
[ "text", "text", "text", "text", "text" ]
SELECT "finished" FROM celebrity_get_out WHERE "exited" = 'Day 13'
dev
wikisql
Name the number of celebrity for athlete
celebrity_get_out
[ "celebrity", "famous_for", "entered", "exited", "finished" ]
[ "text", "text", "text", "text", "text" ]
SELECT COUNT("celebrity") FROM celebrity_get_out WHERE "famous_for" = 'Athlete'
dev
wikisql
What is the total number of values for "Teleplay by" category for series # 35?
tv_episode_data_4
[ "series", "season", "title", "story_by", "teleplay_by", "directed_by", "original_air_date" ]
[ "real", "real", "text", "text", "text", "text", "text" ]
SELECT COUNT("teleplay_by") FROM tv_episode_data_4 WHERE "series" = 35
dev
wikisql
Who is the teleplay by when the director is Rob Bailey?
tv_episode_data_4
[ "series", "season", "title", "story_by", "teleplay_by", "directed_by", "original_air_date" ]
[ "real", "real", "text", "text", "text", "text", "text" ]
SELECT "teleplay_by" FROM tv_episode_data_4 WHERE "directed_by" = 'Rob Bailey'
dev
wikisql
What is the season # for a teleplay by Richard Price and the director is Steve Shill?
tv_episode_data_4
[ "series", "season", "title", "story_by", "teleplay_by", "directed_by", "original_air_date" ]
[ "real", "real", "text", "text", "text", "text", "text" ]
SELECT "season" FROM tv_episode_data_4 WHERE "teleplay_by" = 'Richard Price' AND "directed_by" = 'Steve Shill'
dev
wikisql
What time in eastern standard time was game held at denver broncos?
t_1982_steelers_season
[ "week", "date", "opponent", "location", "time_et", "tv", "result", "record" ]
[ "real", "text", "text", "text", "text", "text", "text", "text" ]
SELECT "time_et" FROM t_1982_steelers_season WHERE "opponent" = 'at Denver Broncos'
dev
wikisql
What are the names of all unix shell with PowerShell (Cmdlet) of select-string?
file_content_retrieval
[ "powershell_cmdlet", "powershell_alias", "cmd_exe_command_com", "unix_shell", "description" ]
[ "text", "text", "text", "text", "text" ]
SELECT "unix_shell" FROM file_content_retrieval WHERE "powershell_cmdlet" = 'Select-String'
dev
wikisql
What are all values of CMD.EXE / COMMAND.COM for the unix shell echo?
file_content_retrieval
[ "powershell_cmdlet", "powershell_alias", "cmd_exe_command_com", "unix_shell", "description" ]
[ "text", "text", "text", "text", "text" ]
SELECT "cmd_exe_command_com" FROM file_content_retrieval WHERE "unix_shell" = 'echo'
dev
wikisql
If Powershell (alias) is cpi, copy, cp, what are all corresponding descriptions.
file_content_retrieval
[ "powershell_cmdlet", "powershell_alias", "cmd_exe_command_com", "unix_shell", "description" ]
[ "text", "text", "text", "text", "text" ]
SELECT "description" FROM file_content_retrieval WHERE "powershell_alias" = 'cpi, copy, cp'
dev
wikisql
When the cmd.exe / command.com is type, what are all associated values for powershell (cmdlet)?
file_content_retrieval
[ "powershell_cmdlet", "powershell_alias", "cmd_exe_command_com", "unix_shell", "description" ]
[ "text", "text", "text", "text", "text" ]
SELECT "powershell_cmdlet" FROM file_content_retrieval WHERE "cmd_exe_command_com" = 'type'
dev
wikisql
How many values of powershell (cmdlet) are valid when unix shell is env, export, set, setenv?
file_content_retrieval
[ "powershell_cmdlet", "powershell_alias", "cmd_exe_command_com", "unix_shell", "description" ]
[ "text", "text", "text", "text", "text" ]
SELECT COUNT("powershell_cmdlet") FROM file_content_retrieval WHERE "unix_shell" = 'env, export, set, setenv'
dev
wikisql
What county has 2053 households?
pennsylvania_income_ranking
[ "rank", "place", "county", "per_capita_income", "median_house_hold_income", "population", "number_of_households" ]
[ "real", "text", "text", "text", "text", "real", "real" ]
SELECT "county" FROM pennsylvania_income_ranking WHERE "number_of_households" = 2053
dev
wikisql
Which place has a rank of 71?
pennsylvania_income_ranking
[ "rank", "place", "county", "per_capita_income", "median_house_hold_income", "population", "number_of_households" ]
[ "real", "text", "text", "text", "text", "real", "real" ]
SELECT "place" FROM pennsylvania_income_ranking WHERE "rank" = 71
dev
wikisql
Which county has a median household income of $98,090?
pennsylvania_income_ranking
[ "rank", "place", "county", "per_capita_income", "median_house_hold_income", "population", "number_of_households" ]
[ "real", "text", "text", "text", "text", "real", "real" ]
SELECT "county" FROM pennsylvania_income_ranking WHERE "median_house_hold_income" = '$98,090'
dev
wikisql
What is the median household income for Woodside?
pennsylvania_income_ranking
[ "rank", "place", "county", "per_capita_income", "median_house_hold_income", "population", "number_of_households" ]
[ "real", "text", "text", "text", "text", "real", "real" ]
SELECT "median_house_hold_income" FROM pennsylvania_income_ranking WHERE "place" = 'Woodside'
dev
wikisql
What is the per capita income for Fayette County?
pennsylvania_income_ranking
[ "rank", "place", "county", "per_capita_income", "median_house_hold_income", "population", "number_of_households" ]
[ "real", "text", "text", "text", "text", "real", "real" ]
SELECT "per_capita_income" FROM pennsylvania_income_ranking WHERE "county" = 'Fayette County'
dev
wikisql
Where does the common of Galliate rank in population?
province_data
[ "rank", "common", "population", "area_km_2", "density_inhabitants_km_2", "altitude_mslm" ]
[ "text", "text", "real", "text", "text", "real" ]
SELECT "rank" FROM province_data WHERE "common" = 'Galliate'
dev
wikisql
Which common has an area (km2) of 38.38?
province_data
[ "rank", "common", "population", "area_km_2", "density_inhabitants_km_2", "altitude_mslm" ]
[ "text", "text", "real", "text", "text", "real" ]
SELECT "common" FROM province_data WHERE "area_km_2" = '38.38'
dev
wikisql
Which common has an area (km2) of 103.02?
province_data
[ "rank", "common", "population", "area_km_2", "density_inhabitants_km_2", "altitude_mslm" ]
[ "text", "text", "real", "text", "text", "real" ]
SELECT "common" FROM province_data WHERE "area_km_2" = '103.02'
dev
wikisql
What is the minimum altitude (mslm) in all the commons?
province_data
[ "rank", "common", "population", "area_km_2", "density_inhabitants_km_2", "altitude_mslm" ]
[ "text", "text", "real", "text", "text", "real" ]
SELECT MIN("altitude_mslm") FROM province_data
dev
wikisql
What rank is the common with an area of 47.3 km^2?
province_data_2
[ "rank", "common_of", "population", "area_km_2", "density_inhabitants_km_2", "altitude_mslm" ]
[ "text", "text", "real", "text", "text", "real" ]
SELECT "rank" FROM province_data_2 WHERE "area_km_2" = '47.3'
dev
wikisql
What is the density of the common with an area of 20.4 km^2?
province_data_2
[ "rank", "common_of", "population", "area_km_2", "density_inhabitants_km_2", "altitude_mslm" ]
[ "text", "text", "real", "text", "text", "real" ]
SELECT "density_inhabitants_km_2" FROM province_data_2 WHERE "area_km_2" = '20.4'
dev
wikisql
How many altitudes does the common with an area of 130.7 km^2 have?
province_data_2
[ "rank", "common_of", "population", "area_km_2", "density_inhabitants_km_2", "altitude_mslm" ]
[ "text", "text", "real", "text", "text", "real" ]
SELECT COUNT("altitude_mslm") FROM province_data_2 WHERE "area_km_2" = '130.7'
dev
wikisql
How may population figures are given for Settimo Torinese
province_data_2
[ "rank", "common_of", "population", "area_km_2", "density_inhabitants_km_2", "altitude_mslm" ]
[ "text", "text", "real", "text", "text", "real" ]
SELECT COUNT("population") FROM province_data_2 WHERE "common_of" = 'Settimo Torinese'
dev
wikisql
What is the name of the 9th ranked common?
province_data_2
[ "rank", "common_of", "population", "area_km_2", "density_inhabitants_km_2", "altitude_mslm" ]
[ "text", "text", "real", "text", "text", "real" ]
SELECT "common_of" FROM province_data_2 WHERE "rank" = '9th'
dev
wikisql