Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
40,600 | <question>: for the drumset name td-15k how many snare pads are <context>: CREATE TABLE table_2889300_6 (snare_pad VARCHAR, drumset_name VARCHAR) | SELECT COUNT(snare_pad) FROM table_2889300_6 WHERE drumset_name = "TD-15K" |
40,601 | <question>: Who won the race on June 26? <context>: CREATE TABLE table_28925058_1 (race_winner VARCHAR, date VARCHAR) | SELECT race_winner FROM table_28925058_1 WHERE date = "June 26" |
40,602 | <question>: Who won the race on August 15? <context>: CREATE TABLE table_28925058_1 (race_winner VARCHAR, date VARCHAR) | SELECT race_winner FROM table_28925058_1 WHERE date = "August 15" |
40,603 | <question>: What is the date of the Italian Grand Prix? <context>: CREATE TABLE table_28925058_1 (date VARCHAR, grand_prix VARCHAR) | SELECT date FROM table_28925058_1 WHERE grand_prix = "Italian grand_prix" |
40,604 | <question>: How many dates did Daniel Ruiz win the Spanish Grand Prix? <context>: CREATE TABLE table_28925058_1 (date VARCHAR, grand_prix VARCHAR, race_winner VARCHAR) | SELECT COUNT(date) FROM table_28925058_1 WHERE grand_prix = "Spanish grand_prix" AND race_winner = "Daniel Ruiz" |
40,605 | <question>: Who won the race on May 1? <context>: CREATE TABLE table_28925058_1 (race_winner VARCHAR, date VARCHAR) | SELECT race_winner FROM table_28925058_1 WHERE date = "May 1" |
40,606 | <question>: When james rutherford is the incumbent how many dates are there? <context>: CREATE TABLE table_28898974_3 (date VARCHAR, incumbent VARCHAR) | SELECT COUNT(date) FROM table_28898974_3 WHERE incumbent = "James Rutherford" |
40,607 | <question>: When edward shaw is the winner what is the date? <context>: CREATE TABLE table_28898974_3 (date VARCHAR, winner VARCHAR) | SELECT date FROM table_28898974_3 WHERE winner = "Edward Shaw" |
40,608 | <question>: When peninsula is the electorate what is the reason? <context>: CREATE TABLE table_28898974_3 (reason VARCHAR, electorate VARCHAR) | SELECT reason FROM table_28898974_3 WHERE electorate = "Peninsula" |
40,609 | <question>: When james seaton is the incumbent what is the reason? <context>: CREATE TABLE table_28898974_3 (reason VARCHAR, incumbent VARCHAR) | SELECT reason FROM table_28898974_3 WHERE incumbent = "James Seaton" |
40,610 | <question>: What was the handicap when the prize money was 120s? <context>: CREATE TABLE table_2896329_1 (handicap VARCHAR, prize_money VARCHAR) | SELECT handicap FROM table_2896329_1 WHERE prize_money = "120s" |
40,611 | <question>: On what date was the handicap 8 st 12 lb? <context>: CREATE TABLE table_2896329_1 (date VARCHAR, handicap VARCHAR) | SELECT date FROM table_2896329_1 WHERE handicap = "8 st 12 lb" |
40,612 | <question>: On what date was the track Ballarat? <context>: CREATE TABLE table_2896329_1 (date VARCHAR, track VARCHAR) | SELECT date FROM table_2896329_1 WHERE track = "Ballarat" |
40,613 | <question>: How many literate males are there in the taluka name nevasa? <context>: CREATE TABLE table_28939145_2 (Literate INTEGER, taluka_name VARCHAR) | SELECT MAX(Literate) AS male FROM table_28939145_2 WHERE taluka_name = "Nevasa" |
40,614 | <question>: how many literate males are there that has a district population of 6.65? <context>: CREATE TABLE table_28939145_2 (Literate VARCHAR, _percentage_of_district_population VARCHAR) | SELECT Literate AS male FROM table_28939145_2 WHERE _percentage_of_district_population = "6.65" |
40,615 | <question>: How many males are in the group that has an amount of 139361 <context>: CREATE TABLE table_28939145_2 (male VARCHAR, female VARCHAR) | SELECT male FROM table_28939145_2 WHERE female = 139361 |
40,616 | <question>: List all the runners-up on 16 October 2012? <context>: CREATE TABLE table_28962227_1 (runners_up VARCHAR, finale VARCHAR) | SELECT runners_up FROM table_28962227_1 WHERE finale = "16 October 2012" |
40,617 | <question>: What is the date when Miranda Gore Browne was runner-up? <context>: CREATE TABLE table_28962227_1 (finale VARCHAR, runners_up VARCHAR) | SELECT finale FROM table_28962227_1 WHERE runners_up = "Miranda Gore Browne" |
40,618 | <question>: What is the date of the finale where Holly Bell was runner-up? <context>: CREATE TABLE table_28962227_1 (finale VARCHAR, runners_up VARCHAR) | SELECT finale FROM table_28962227_1 WHERE runners_up = "Holly Bell" |
40,619 | <question>: What is the premiere of the season where Holly Bell was the runner-up? <context>: CREATE TABLE table_28962227_1 (premiere VARCHAR, runners_up VARCHAR) | SELECT premiere FROM table_28962227_1 WHERE runners_up = "Holly Bell" |
40,620 | <question>: How many runners-up were there when Joanne Wheatley won? <context>: CREATE TABLE table_28962227_1 (runners_up VARCHAR, winner VARCHAR) | SELECT COUNT(runners_up) FROM table_28962227_1 WHERE winner = "Joanne Wheatley" |
40,621 | <question>: Who won the season for which Brendan Lynch is the runner-up? <context>: CREATE TABLE table_28962227_1 (winner VARCHAR, runners_up VARCHAR) | SELECT winner FROM table_28962227_1 WHERE runners_up = "Brendan Lynch" |
40,622 | <question>: What is the pick # when the new jersey devils is the nhl team? <context>: CREATE TABLE table_2897457_3 (pick__number VARCHAR, nhl_team VARCHAR) | SELECT pick__number FROM table_2897457_3 WHERE nhl_team = "New Jersey Devils" |
40,623 | <question>: Which college/junior/team has defence as the position with canada as the nationality and the pick # is less than 61.0? <context>: CREATE TABLE table_2897457_3 (college_junior_club_team VARCHAR, pick__number VARCHAR, position VARCHAR, nationality VARCHAR) | SELECT college_junior_club_team FROM table_2897457_3 WHERE position = "Defence" AND nationality = "Canada" AND pick__number < 61.0 |
40,624 | <question>: Which nhl team has kris draper as the player? <context>: CREATE TABLE table_2897457_3 (nhl_team VARCHAR, player VARCHAR) | SELECT nhl_team FROM table_2897457_3 WHERE player = "Kris Draper" |
40,625 | <question>: Which position has new Jersey Devils as the nhl team? <context>: CREATE TABLE table_2897457_3 (position VARCHAR, nhl_team VARCHAR) | SELECT position FROM table_2897457_3 WHERE nhl_team = "New Jersey Devils" |
40,626 | <question>: Which college/junior/club team has jim mathieson as the player? <context>: CREATE TABLE table_2897457_3 (college_junior_club_team VARCHAR, player VARCHAR) | SELECT college_junior_club_team FROM table_2897457_3 WHERE player = "Jim Mathieson" |
40,627 | <question>: What is the production code of the episode with series #8? <context>: CREATE TABLE table_28967275_2 (production_code VARCHAR, series__number VARCHAR) | SELECT production_code FROM table_28967275_2 WHERE series__number = 8 |
40,628 | <question>: What is the title of the episode with series number 14? <context>: CREATE TABLE table_28967275_2 (episode_title VARCHAR, series__number VARCHAR) | SELECT episode_title FROM table_28967275_2 WHERE series__number = 14 |
40,629 | <question>: What is the original airdate of episode #31? <context>: CREATE TABLE table_28967275_2 (original_air_date VARCHAR, episode__number VARCHAR) | SELECT original_air_date FROM table_28967275_2 WHERE episode__number = 31 |
40,630 | <question>: Who was drafted to the Vancouver Canucks? <context>: CREATE TABLE table_2897457_8 (player VARCHAR, nhl_team VARCHAR) | SELECT player FROM table_2897457_8 WHERE nhl_team = "Vancouver Canucks" |
40,631 | <question>: How many figures are provided for the team when the position drafted is center? <context>: CREATE TABLE table_2897457_8 (nhl_team VARCHAR, position VARCHAR) | SELECT COUNT(nhl_team) FROM table_2897457_8 WHERE position = "Center" |
40,632 | <question>: What was the pick number when Paul Krake was selected? <context>: CREATE TABLE table_2897457_8 (pick__number INTEGER, player VARCHAR) | SELECT MIN(pick__number) FROM table_2897457_8 WHERE player = "Paul Krake" |
40,633 | <question>: What pick number did the New York Rangers have? <context>: CREATE TABLE table_2897457_8 (pick__number VARCHAR, nhl_team VARCHAR) | SELECT pick__number FROM table_2897457_8 WHERE nhl_team = "New York Rangers" |
40,634 | <question>: What pick number was the Boston Bruins selection for defence? <context>: CREATE TABLE table_2897457_8 (pick__number VARCHAR, position VARCHAR, nhl_team VARCHAR) | SELECT pick__number FROM table_2897457_8 WHERE position = "Defence" AND nhl_team = "Boston Bruins" |
40,635 | <question>: Which player is pick 64? <context>: CREATE TABLE table_2897457_4 (player VARCHAR, pick__number VARCHAR) | SELECT player FROM table_2897457_4 WHERE pick__number = 64 |
40,636 | <question>: Which player is the centre for the Detroit Red Wings? <context>: CREATE TABLE table_2897457_4 (player VARCHAR, position VARCHAR, nhl_team VARCHAR) | SELECT player FROM table_2897457_4 WHERE position = "Centre" AND nhl_team = "Detroit Red Wings" |
40,637 | <question>: How many positions drafted for the Minnesota North Stars? <context>: CREATE TABLE table_2897457_4 (position VARCHAR, nhl_team VARCHAR) | SELECT COUNT(position) FROM table_2897457_4 WHERE nhl_team = "Minnesota North Stars" |
40,638 | <question>: What position did Roseau High School (USHS-MN) play? <context>: CREATE TABLE table_2897457_7 (position VARCHAR, college_junior_club_team VARCHAR) | SELECT position FROM table_2897457_7 WHERE college_junior_club_team = "Roseau High School (USHS-MN)" |
40,639 | <question>: What are Scott Zygulski's pick numbers? <context>: CREATE TABLE table_2897457_7 (pick__number VARCHAR, player VARCHAR) | SELECT pick__number FROM table_2897457_7 WHERE player = "Scott Zygulski" |
40,640 | <question>: Which country is pick# 136 from? <context>: CREATE TABLE table_2897457_7 (nationality VARCHAR, pick__number VARCHAR) | SELECT nationality FROM table_2897457_7 WHERE pick__number = 136 |
40,641 | <question>: How many nationalities does Alex Nikolic come from? <context>: CREATE TABLE table_2897457_7 (nationality VARCHAR, player VARCHAR) | SELECT COUNT(nationality) FROM table_2897457_7 WHERE player = "Alex Nikolic" |
40,642 | <question>: How many NHL teams have a pick number of 128? <context>: CREATE TABLE table_2897457_7 (nhl_team VARCHAR, pick__number VARCHAR) | SELECT COUNT(nhl_team) FROM table_2897457_7 WHERE pick__number = 128 |
40,643 | <question>: Name the opponents for anabel medina garrigues <context>: CREATE TABLE table_28979895_4 (opponents VARCHAR, partner VARCHAR) | SELECT COUNT(opponents) FROM table_28979895_4 WHERE partner = "Anabel Medina Garrigues" |
40,644 | <question>: Name the parter for w/o <context>: CREATE TABLE table_28979895_4 (partner VARCHAR, score VARCHAR) | SELECT partner FROM table_28979895_4 WHERE score = "w/o" |
40,645 | <question>: Which of the networks originate in Xalapa? <context>: CREATE TABLE table_2899987_2 (network VARCHAR, origin VARCHAR) | SELECT network FROM table_2899987_2 WHERE origin = "Xalapa" |
40,646 | <question>: What are all the programs on the Soy Guerrero network? <context>: CREATE TABLE table_2899987_2 (programming VARCHAR, network VARCHAR) | SELECT programming FROM table_2899987_2 WHERE network = "Soy Guerrero" |
40,647 | <question>: Which owners originate in Mexico City? <context>: CREATE TABLE table_2899987_2 (owner VARCHAR, origin VARCHAR) | SELECT owner FROM table_2899987_2 WHERE origin = "Mexico City" |
40,648 | <question>: Which network serves the Guerrero region <context>: CREATE TABLE table_2899987_2 (network VARCHAR, region VARCHAR) | SELECT network FROM table_2899987_2 WHERE region = "Guerrero" |
40,649 | <question>: Which regions are owned by estado de tabasco? <context>: CREATE TABLE table_2899987_2 (region VARCHAR, owner VARCHAR) | SELECT region FROM table_2899987_2 WHERE owner = "Estado de Tabasco" |
40,650 | <question>: What subdivision names (RU) have a code of by-hr? <context>: CREATE TABLE table_290017_1 (subdivision_name___ru____bgn_pcgn_ VARCHAR, code VARCHAR) | SELECT subdivision_name___ru____bgn_pcgn_ FROM table_290017_1 WHERE code = "BY-HR" |
40,651 | <question>: What cods have a subdivision name (RU) of Grodnenskaya Oblast'? <context>: CREATE TABLE table_290017_1 (code VARCHAR, subdivision_name___ru____bgn_pcgn_ VARCHAR) | SELECT code FROM table_290017_1 WHERE subdivision_name___ru____bgn_pcgn_ = "Grodnenskaya oblast'" |
40,652 | <question>: What are the subdivision names (RU) where the subdivision name (BE) is Hrodzenskaya Voblasts'? <context>: CREATE TABLE table_290017_1 (subdivision_name___ru____gost_ VARCHAR, subdivision_name___be____bgn_pcgn_ VARCHAR) | SELECT subdivision_name___ru____gost_ FROM table_290017_1 WHERE subdivision_name___be____bgn_pcgn_ = "Hrodzenskaya voblasts'" |
40,653 | <question>: What is the subdivision name (BE) where subdivision name (RU) (BGN) is Grodnenskaya Oblast'? <context>: CREATE TABLE table_290017_1 (subdivision_name___be____bgn_pcgn_ VARCHAR, subdivision_name___ru____bgn_pcgn_ VARCHAR) | SELECT subdivision_name___be____bgn_pcgn_ FROM table_290017_1 WHERE subdivision_name___ru____bgn_pcgn_ = "Grodnenskaya oblast'" |
40,654 | <question>: Which codes have subdivision names (BE) (BGN) of Homyel'skaya Voblasts'? <context>: CREATE TABLE table_290017_1 (code VARCHAR, subdivision_name___be____bgn_pcgn_ VARCHAR) | SELECT code FROM table_290017_1 WHERE subdivision_name___be____bgn_pcgn_ = "Homyel'skaya voblasts'" |
40,655 | <question>: Name the into service for dh1 <context>: CREATE TABLE table_29002641_1 (into_service VARCHAR, number VARCHAR) | SELECT into_service FROM table_29002641_1 WHERE number = "DH1" |
40,656 | <question>: Name the into service for dh2 <context>: CREATE TABLE table_29002641_1 (into_service VARCHAR, number VARCHAR) | SELECT into_service FROM table_29002641_1 WHERE number = "DH2" |
40,657 | <question>: Name the most serial number for feb 1994 <context>: CREATE TABLE table_29002641_1 (Serial INTEGER, scrapped VARCHAR) | SELECT MAX(Serial) AS number FROM table_29002641_1 WHERE scrapped = "Feb 1994" |
40,658 | <question>: Name the number for 2004 scapped <context>: CREATE TABLE table_29002641_1 (number VARCHAR, scrapped VARCHAR) | SELECT number FROM table_29002641_1 WHERE scrapped = "2004" |
40,659 | <question>: How many month names are there for the tenth numbered month? <context>: CREATE TABLE table_28985631_1 (month_name VARCHAR, numbered_month VARCHAR) | SELECT COUNT(month_name) FROM table_28985631_1 WHERE numbered_month = "Tenth" |
40,660 | <question>: What is the defective year for the eighth numbered month? <context>: CREATE TABLE table_28985631_1 (defective_year VARCHAR, numbered_month VARCHAR) | SELECT defective_year FROM table_28985631_1 WHERE numbered_month = "Eighth" |
40,661 | <question>: What is the month sequence for the month name of av? <context>: CREATE TABLE table_28985631_1 (month_sequence INTEGER, month_name VARCHAR) | SELECT MIN(month_sequence) FROM table_28985631_1 WHERE month_name = "Av" |
40,662 | <question>: What is the defective year for the regular year of 29 days and month sequence of 2? <context>: CREATE TABLE table_28985631_1 (defective_year INTEGER, regular_year VARCHAR, month_sequence VARCHAR) | SELECT MAX(defective_year) FROM table_28985631_1 WHERE regular_year = "29 days" AND month_sequence = 2 |
40,663 | <question>: When 4.5 is the rating (18-49) what is the air date? <context>: CREATE TABLE table_28980706_4 (first_air_date VARCHAR, rating__18_49_ VARCHAR) | SELECT first_air_date FROM table_28980706_4 WHERE rating__18_49_ = "4.5" |
40,664 | <question>: When 13 is the share (18-49) what is the rank (timeslot)? <context>: CREATE TABLE table_28980706_4 (rank__timeslot_ VARCHAR, share__18_49_ VARCHAR) | SELECT rank__timeslot_ FROM table_28980706_4 WHERE share__18_49_ = 13 |
40,665 | <question>: When 11 is the episode what is the air date? <context>: CREATE TABLE table_28980706_4 (first_air_date VARCHAR, episode VARCHAR) | SELECT first_air_date FROM table_28980706_4 WHERE episode = 11 |
40,666 | <question>: When there are 10.02 million viewers what is the rating (18-49)? <context>: CREATE TABLE table_28980706_4 (rating__18_49_ VARCHAR, viewers__millions_ VARCHAR) | SELECT rating__18_49_ FROM table_28980706_4 WHERE viewers__millions_ = "10.02" |
40,667 | <question>: When there are 9.28 million viewers what is the share (18-49)? <context>: CREATE TABLE table_28980706_4 (share__18_49_ VARCHAR, viewers__millions_ VARCHAR) | SELECT share__18_49_ FROM table_28980706_4 WHERE viewers__millions_ = "9.28" |
40,668 | <question>: When 4 is the episode what is the air date? <context>: CREATE TABLE table_28980706_4 (first_air_date VARCHAR, episode VARCHAR) | SELECT first_air_date FROM table_28980706_4 WHERE episode = 4 |
40,669 | <question>: How many different results were there for the scores 6β7 (2β7) , 6β2, 7β6 (7β3)? <context>: CREATE TABLE table_29026564_9 (result VARCHAR, score VARCHAR) | SELECT COUNT(result) FROM table_29026564_9 WHERE score = "6β7 (2β7) , 6β2, 7β6 (7β3)" |
40,670 | <question>: Who was the writer for episode 3? <context>: CREATE TABLE table_29039942_1 (writer VARCHAR, episode VARCHAR) | SELECT writer FROM table_29039942_1 WHERE episode = 3 |
40,671 | <question>: What was the original airdate for the episode written by daisuke habara and directed by akimitsu sasaki <context>: CREATE TABLE table_29039942_1 (original_airdate VARCHAR, writer VARCHAR, director VARCHAR) | SELECT original_airdate FROM table_29039942_1 WHERE writer = "Daisuke Habara" AND director = "Akimitsu Sasaki" |
40,672 | <question>: What episode did tomoyuki furumaya <context>: CREATE TABLE table_29039942_1 (title VARCHAR, director VARCHAR) | SELECT title FROM table_29039942_1 WHERE director = "Tomoyuki Furumaya" |
40,673 | <question>: What is the earliest round where collingswood lost by 36 points? <context>: CREATE TABLE table_29033869_3 (round INTEGER, result__includes_margin_ VARCHAR) | SELECT MIN(round) FROM table_29033869_3 WHERE result__includes_margin_ = "Lost by 36 points" |
40,674 | <question>: What was the score on saturday, 26 june 7:10pm? <context>: CREATE TABLE table_29033869_3 (score__collingwoods_score_is_in_bold_ VARCHAR, date VARCHAR) | SELECT score__collingwoods_score_is_in_bold_ FROM table_29033869_3 WHERE date = "Saturday, 26 June 7:10pm" |
40,675 | <question>: What is the round number of the round against melbourne on saturday, 4 april 2:10pm? <context>: CREATE TABLE table_29033869_3 (round INTEGER, opponent VARCHAR, date VARCHAR) | SELECT MIN(round) FROM table_29033869_3 WHERE opponent = "Melbourne" AND date = "Saturday, 4 April 2:10pm" |
40,676 | <question>: Which venue did collingsworth play essendon in when they had the 3rd position on the ladder? <context>: CREATE TABLE table_29033869_3 (venue VARCHAR, opponent VARCHAR, position_on_ladder VARCHAR) | SELECT venue FROM table_29033869_3 WHERE opponent = "Essendon" AND position_on_ladder = "3rd" |
40,677 | <question>: Was the round where they were in 6th at home or away? <context>: CREATE TABLE table_29033869_3 (home_away VARCHAR, position_on_ladder VARCHAR) | SELECT home_away FROM table_29033869_3 WHERE position_on_ladder = "6th" |
40,678 | <question>: What was the previous school for the forward with a height of ft5in (m)? <context>: CREATE TABLE table_29050051_3 (previous_school VARCHAR, height VARCHAR, position VARCHAR) | SELECT previous_school FROM table_29050051_3 WHERE height = "ft5in (m)" AND position = "Forward" |
40,679 | <question>: What is the lowest listed number for a player? <context>: CREATE TABLE table_29050051_3 (_number INTEGER) | SELECT MIN(_number) FROM table_29050051_3 |
40,680 | <question>: Who previously attended south kent school / brentwood hs? <context>: CREATE TABLE table_29050051_3 (name VARCHAR, previous_school VARCHAR) | SELECT name FROM table_29050051_3 WHERE previous_school = "South Kent School / Brentwood HS" |
40,681 | <question>: What is the highest number a guard from brophy college prep wore? <context>: CREATE TABLE table_29050051_3 (_number INTEGER, position VARCHAR, previous_school VARCHAR) | SELECT MAX(_number) FROM table_29050051_3 WHERE position = "Guard" AND previous_school = "Brophy College Prep" |
40,682 | <question>: How many directed by entries have UK viewership over 6.16 million? <context>: CREATE TABLE table_29063233_1 (directed_by VARCHAR, uk_viewers__million_ VARCHAR) | SELECT COUNT(directed_by) FROM table_29063233_1 WHERE uk_viewers__million_ = "6.16" |
40,683 | <question>: Who directed the episode with a UK viewership of exactly 5.77 million? <context>: CREATE TABLE table_29063233_1 (directed_by VARCHAR, uk_viewers__million_ VARCHAR) | SELECT directed_by FROM table_29063233_1 WHERE uk_viewers__million_ = "5.77" |
40,684 | <question>: What was the airdate of the episode with a UK viewership of 6.02 million? <context>: CREATE TABLE table_29063233_1 (original_air_date VARCHAR, uk_viewers__million_ VARCHAR) | SELECT original_air_date FROM table_29063233_1 WHERE uk_viewers__million_ = "6.02" |
40,685 | <question>: Who directed the episode with UK viewership of 6.09 million? <context>: CREATE TABLE table_29063233_1 (directed_by VARCHAR, uk_viewers__million_ VARCHAR) | SELECT directed_by FROM table_29063233_1 WHERE uk_viewers__million_ = "6.09" |
40,686 | <question>: Name the general classification for mauricio soler <context>: CREATE TABLE table_29077342_19 (general_classification VARCHAR, winner VARCHAR) | SELECT general_classification FROM table_29077342_19 WHERE winner = "Mauricio Soler" |
40,687 | <question>: Name the general classification for steven kruijswijk <context>: CREATE TABLE table_29077342_19 (general_classification VARCHAR, winner VARCHAR) | SELECT general_classification FROM table_29077342_19 WHERE winner = "Steven Kruijswijk" |
40,688 | <question>: Name the points classification for levi leipheimer <context>: CREATE TABLE table_29077342_19 (points_classification VARCHAR, general_classification VARCHAR) | SELECT points_classification FROM table_29077342_19 WHERE general_classification = "Levi Leipheimer" |
40,689 | <question>: Name the mountains classification for rabobank and damiano cunego <context>: CREATE TABLE table_29077342_19 (mountains_classification VARCHAR, team_classification VARCHAR, general_classification VARCHAR) | SELECT mountains_classification FROM table_29077342_19 WHERE team_classification = "Rabobank" AND general_classification = "Damiano Cunego" |
40,690 | <question>: Name the team classification for thomas de gendt <context>: CREATE TABLE table_29077342_19 (team_classification VARCHAR, winner VARCHAR) | SELECT team_classification FROM table_29077342_19 WHERE winner = "Thomas De Gendt" |
40,691 | <question>: What is listed in built for when the original number is 24d? <context>: CREATE TABLE table_29071587_1 (built_for VARCHAR, original_no VARCHAR) | SELECT built_for FROM table_29071587_1 WHERE original_no = "24D" |
40,692 | <question>: What is the season # when ther are 5.3 million U.S viewers? <context>: CREATE TABLE table_29102612_1 (season__number INTEGER, us_viewers__millions_ VARCHAR) | SELECT MAX(season__number) FROM table_29102612_1 WHERE us_viewers__millions_ = "5.3" |
40,693 | <question>: What are the titles of episodes written by Eric Trueheart? <context>: CREATE TABLE table_29087004_3 (title VARCHAR, written_by VARCHAR) | SELECT title FROM table_29087004_3 WHERE written_by = "Eric Trueheart" |
40,694 | <question>: Who were the writers of episode/s first aired in the US on June 9, 2012? <context>: CREATE TABLE table_29087004_3 (written_by VARCHAR, united_states_original_airdate VARCHAR) | SELECT written_by FROM table_29087004_3 WHERE united_states_original_airdate = "June 9, 2012" |
40,695 | <question>: Who were the writers of the episodes directed by Greg Sullivan and which first aired on July 21, 2012? <context>: CREATE TABLE table_29087004_3 (written_by VARCHAR, directed_by VARCHAR, united_states_original_airdate VARCHAR) | SELECT written_by FROM table_29087004_3 WHERE directed_by = "Greg Sullivan" AND united_states_original_airdate = "July 21, 2012" |
40,696 | <question>: Which episode/s were written by Evan Gore? <context>: CREATE TABLE table_29087004_3 (series__number VARCHAR, written_by VARCHAR) | SELECT series__number FROM table_29087004_3 WHERE written_by = "Evan Gore" |
40,697 | <question>: Which team was the away team when home team was essendon? <context>: CREATE TABLE table_29090919_1 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_29090919_1 WHERE home_team = "Essendon" |
40,698 | <question>: How many scores were there for the home team when the away team was fitzroy? <context>: CREATE TABLE table_29090919_1 (home_team VARCHAR, away_team VARCHAR) | SELECT COUNT(home_team) AS score FROM table_29090919_1 WHERE away_team = "Fitzroy" |
40,699 | <question>: Which team was the away team when the home team was north melbourne? <context>: CREATE TABLE table_29090919_1 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_29090919_1 WHERE home_team = "North Melbourne" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.