question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What was the regular season from year 2012?
CREATE TABLE table_15409403_1 (regular_season VARCHAR, year VARCHAR)
SELECT regular_season FROM table_15409403_1 WHERE year = 2012
Which teams had a difference of 8 between goals scored and goals conceeded
CREATE TABLE table_15420044_1 (team VARCHAR, difference VARCHAR)
SELECT team FROM table_15420044_1 WHERE difference = "8"
Which teams had 10 goals scored against them
CREATE TABLE table_15420044_1 (team VARCHAR, against VARCHAR)
SELECT team FROM table_15420044_1 WHERE against = 10
What is the original air date for episode 17 in the season?
CREATE TABLE table_15431251_1 (original_air_date VARCHAR, no_in_season VARCHAR)
SELECT original_air_date FROM table_15431251_1 WHERE no_in_season = 17
What is the original air date for the episode directed by Peter Woeste?
CREATE TABLE table_15431251_1 (original_air_date VARCHAR, directed_by VARCHAR)
SELECT original_air_date FROM table_15431251_1 WHERE directed_by = "Peter Woeste"
What is the title for episode number 7 in the season?
CREATE TABLE table_15431251_1 (title VARCHAR, no_in_season VARCHAR)
SELECT COUNT(title) FROM table_15431251_1 WHERE no_in_season = 7
Name the total number of number disc for jimmy kaufman
CREATE TABLE table_15430606_1 (no_disc VARCHAR, directed_by VARCHAR)
SELECT COUNT(no_disc) FROM table_15430606_1 WHERE directed_by = "Jimmy Kaufman"
Name the minimum number disc for number in series for 14
CREATE TABLE table_15430606_1 (no_disc INTEGER, no_in_series VARCHAR)
SELECT MIN(no_disc) FROM table_15430606_1 WHERE no_in_series = "14"
Name the maximum number of disc for bill gereghty
CREATE TABLE table_15430606_1 (no_disc INTEGER, directed_by VARCHAR)
SELECT MAX(no_disc) FROM table_15430606_1 WHERE directed_by = "Bill Gereghty"
Name the total number of length minutes for number in series for 17
CREATE TABLE table_15430606_1 (length__minutes_ VARCHAR, no_in_series VARCHAR)
SELECT COUNT(length__minutes_) FROM table_15430606_1 WHERE no_in_series = "17"
What is the best finish where the scoring rank is 97?
CREATE TABLE table_15431122_2 (best_finish VARCHAR, scoring_rank VARCHAR)
SELECT best_finish FROM table_15431122_2 WHERE scoring_rank = "97"
What is the minimum number of wins?
CREATE TABLE table_15431122_2 (wins INTEGER)
SELECT MIN(wins) FROM table_15431122_2
How many different second members were there when John rudhale was first member?
CREATE TABLE table_15451122_2 (second_member VARCHAR, first_member VARCHAR)
SELECT COUNT(second_member) FROM table_15451122_2 WHERE first_member = "John Rudhale"
What date was parliament assembled when John rudhale was first member?
CREATE TABLE table_15451122_2 (assembled VARCHAR, first_member VARCHAR)
SELECT assembled FROM table_15451122_2 WHERE first_member = "John Rudhale"
Name the school/club team when season is 2009-2011
CREATE TABLE table_15463188_7 (school_club_team VARCHAR, season VARCHAR)
SELECT school_club_team FROM table_15463188_7 WHERE season = "2009-2011"
Name the name for san beda
CREATE TABLE table_15463188_7 (name VARCHAR, school_club_team VARCHAR)
SELECT name FROM table_15463188_7 WHERE school_club_team = "San Beda"
Name the position for san beda
CREATE TABLE table_15463188_7 (position VARCHAR, school_club_team VARCHAR)
SELECT position FROM table_15463188_7 WHERE school_club_team = "San Beda"
Name the name of the state
CREATE TABLE table_15463188_7 (name VARCHAR, school_club_team VARCHAR)
SELECT name FROM table_15463188_7 WHERE school_club_team = "State"
Namethe school team for season 2008
CREATE TABLE table_15463188_7 (school_club_team VARCHAR, season VARCHAR)
SELECT school_club_team FROM table_15463188_7 WHERE season = "2008"
Nametheh school team for norman gonzales
CREATE TABLE table_15463188_7 (school_club_team VARCHAR, name VARCHAR)
SELECT school_club_team FROM table_15463188_7 WHERE name = "Norman Gonzales"
Name the points for pontrhydyfen rfc
CREATE TABLE table_15467476_2 (points VARCHAR, club VARCHAR)
SELECT points FROM table_15467476_2 WHERE club = "Pontrhydyfen RFC"
Name the try bonus and tries for 30
CREATE TABLE table_15467476_2 (try_bonus VARCHAR, tries_for VARCHAR)
SELECT try_bonus FROM table_15467476_2 WHERE tries_for = "30"
Name the points for where lost is 4
CREATE TABLE table_15467476_2 (points_for VARCHAR, lost VARCHAR)
SELECT COUNT(points_for) FROM table_15467476_2 WHERE lost = "4"
Name the number when acquisition via far eastern
CREATE TABLE table_15463188_16 (number VARCHAR, acquisition_via VARCHAR)
SELECT number FROM table_15463188_16 WHERE acquisition_via = "Far Eastern"
Name the season when the number is 9
CREATE TABLE table_15463188_16 (season VARCHAR, number VARCHAR)
SELECT season FROM table_15463188_16 WHERE number = "9"
Name the name for visayas
CREATE TABLE table_15463188_16 (name VARCHAR, school_club_team VARCHAR)
SELECT name FROM table_15463188_16 WHERE school_club_team = "Visayas"
Name the school/club team for 9
CREATE TABLE table_15463188_16 (school_club_team VARCHAR, number VARCHAR)
SELECT school_club_team FROM table_15463188_16 WHERE number = "9"
What are all the schools that use the colors maroon and white
CREATE TABLE table_15475116_1 (school VARCHAR, colors VARCHAR)
SELECT school FROM table_15475116_1 WHERE colors = "Maroon and White"
Middletown High School uses which colors
CREATE TABLE table_15475116_1 (colors VARCHAR, school VARCHAR)
SELECT colors FROM table_15475116_1 WHERE school = "Middletown High school"
What league does the team with the nickname Cavaliers belong to
CREATE TABLE table_15475116_1 (league VARCHAR, nickname VARCHAR)
SELECT league FROM table_15475116_1 WHERE nickname = "Cavaliers"
In what division will you find the team nicknamed the Silver Eagles
CREATE TABLE table_15475116_1 (division VARCHAR, nickname VARCHAR)
SELECT division FROM table_15475116_1 WHERE nickname = "Silver Eagles"
What league does Delaware Military Academy belong to
CREATE TABLE table_15475116_1 (league VARCHAR, school VARCHAR)
SELECT league FROM table_15475116_1 WHERE school = "Delaware Military Academy"
Name the number of districts for december 1799
CREATE TABLE table_15572443_1 (district VARCHAR, election_date VARCHAR)
SELECT COUNT(district) FROM table_15572443_1 WHERE election_date = "December 1799"
Name the vacator for took seat being january 29, 1813
CREATE TABLE table_15572443_1 (vacator VARCHAR, took_seat VARCHAR)
SELECT vacator FROM table_15572443_1 WHERE took_seat = "January 29, 1813"
Name the most number of s eva
CREATE TABLE table_1558077_8 (number_of_s_eva INTEGER)
SELECT MAX(number_of_s_eva) FROM table_1558077_8
Name the total number of luna blastoff date for apollo 11
CREATE TABLE table_1558077_8 (lunar_blastoff_date VARCHAR, mission_name VARCHAR)
SELECT COUNT(lunar_blastoff_date) FROM table_1558077_8 WHERE mission_name = "Apollo 11"
Name the mission name for 21 november 1969
CREATE TABLE table_1558077_8 (mission_name VARCHAR, lunar_blastoff_date VARCHAR)
SELECT mission_name FROM table_1558077_8 WHERE lunar_blastoff_date = "21 November 1969"
Name the lunar landing site for 19 november 1969
CREATE TABLE table_1558077_8 (lunar_landing_site VARCHAR, lunar_landing_date VARCHAR)
SELECT lunar_landing_site FROM table_1558077_8 WHERE lunar_landing_date = "19 November 1969"
Name the mission name for ocean of storms
CREATE TABLE table_1558077_8 (mission_name VARCHAR, lunar_landing_site VARCHAR)
SELECT mission_name FROM table_1558077_8 WHERE lunar_landing_site = "Ocean of Storms"
What award did team 679 win?
CREATE TABLE table_15584199_2 (award_name VARCHAR, team_number VARCHAR)
SELECT award_name FROM table_15584199_2 WHERE team_number = 679
Which number belonged to the school team from Arizona?
CREATE TABLE table_15621965_17 (no VARCHAR, school_club_team VARCHAR)
SELECT no FROM table_15621965_17 WHERE school_club_team = "Arizona"
What is the latest number of the guard position from the Wake Forest school team?
CREATE TABLE table_15621965_17 (no INTEGER, position VARCHAR, school_club_team VARCHAR)
SELECT MAX(no) FROM table_15621965_17 WHERE position = "Guard" AND school_club_team = "Wake Forest"
List all years in Orlando where Jeryl Sasser was a player.
CREATE TABLE table_15621965_17 (years_in_orlando VARCHAR, player VARCHAR)
SELECT years_in_orlando FROM table_15621965_17 WHERE player = "Jeryl Sasser"
WHAT WAS THE NUMBER OF THE ONLY FORWARD-CENTER TO MAKE THE ROSTER?
CREATE TABLE table_15621965_18 (no INTEGER, position VARCHAR)
SELECT MIN(no) FROM table_15621965_18 WHERE position = "Forward-Center"
WHAT WAS THE JERSEY NUMBER OF THE ROSTER PLAYER FROM OKLAHOMA STATE WHO PLAYED GUARD?
CREATE TABLE table_15621965_18 (no VARCHAR, position VARCHAR, school_club_team VARCHAR)
SELECT no FROM table_15621965_18 WHERE position = "Guard" AND school_club_team = "Oklahoma State"
WHO IS THE PLAYER(S) ON THE ROSTER FROM SCHOOL/CLUB TEAM ARIZONA?
CREATE TABLE table_15621965_18 (player VARCHAR, school_club_team VARCHAR)
SELECT player FROM table_15621965_18 WHERE school_club_team = "Arizona"
What is the fleet size of the airline which has a callsign of cool red?
CREATE TABLE table_15637071_1 (fleet_size INTEGER, callsign VARCHAR)
SELECT MIN(fleet_size) FROM table_15637071_1 WHERE callsign = "COOL RED"
How large is the fleet size of the airline with the IATA code of 5j?
CREATE TABLE table_15637071_1 (fleet_size VARCHAR, iata VARCHAR)
SELECT COUNT(fleet_size) FROM table_15637071_1 WHERE iata = "5J"
Which year did the Angeles City based airline begin operations?
CREATE TABLE table_15637071_1 (commenced_operations VARCHAR, headquarters VARCHAR)
SELECT commenced_operations FROM table_15637071_1 WHERE headquarters = "Angeles City"
When did the oldest airline start operations?
CREATE TABLE table_15637071_1 (commenced_operations INTEGER)
SELECT MIN(commenced_operations) FROM table_15637071_1
Where is the headquarters of the airline which has the ICAO code of AAU?
CREATE TABLE table_15637071_1 (headquarters VARCHAR, icao VARCHAR)
SELECT headquarters FROM table_15637071_1 WHERE icao = "AAU"
How much uranium did Russia use in 2006 to 2008?
CREATE TABLE table_15624586_2 (uranium_required_2006_08 VARCHAR, country VARCHAR)
SELECT uranium_required_2006_08 FROM table_15624586_2 WHERE country = "Russia"
Which country mines 24.0% of the world demand of uranium?
CREATE TABLE table_15624586_2 (indigenous_mining_production_2006 VARCHAR, _percentage_of_world_demand VARCHAR)
SELECT indigenous_mining_production_2006 FROM table_15624586_2 WHERE _percentage_of_world_demand = "24.0%"
What is the deficit (-surplus) of the country who use 5.2% of the world demand of uranium?
CREATE TABLE table_15624586_2 (deficit___surplus_ VARCHAR, _percentage_of_world_demand VARCHAR)
SELECT deficit___surplus_ FROM table_15624586_2 WHERE _percentage_of_world_demand = "5.2%"
What is the indigenous mining production of the country that uses 3.4% of the world demand?
CREATE TABLE table_15624586_2 (indigenous_mining_production_2006 VARCHAR, _percentage_of_world_demand VARCHAR)
SELECT indigenous_mining_production_2006 FROM table_15624586_2 WHERE _percentage_of_world_demand = "3.4%"
What is the deficit (-surplus) of France?
CREATE TABLE table_15624586_2 (deficit___surplus_ VARCHAR, country VARCHAR)
SELECT deficit___surplus_ FROM table_15624586_2 WHERE country = "France"
Name the pictorials when the interview subject is steve jobs
CREATE TABLE table_1566848_6 (pictorials VARCHAR, interview_subject VARCHAR)
SELECT pictorials FROM table_1566848_6 WHERE interview_subject = "Steve Jobs"
Name the 20 questions when centerfold model is cherie witter
CREATE TABLE table_1566848_6 (centerfold_model VARCHAR)
SELECT 20 AS _questions FROM table_1566848_6 WHERE centerfold_model = "Cherie Witter"
Name the number of pictorials for 5-85
CREATE TABLE table_1566848_6 (pictorials VARCHAR, date VARCHAR)
SELECT COUNT(pictorials) FROM table_1566848_6 WHERE date = "5-85"
Name the centerfold model when interview subject is steve jobs
CREATE TABLE table_1566848_6 (centerfold_model VARCHAR, interview_subject VARCHAR)
SELECT centerfold_model FROM table_1566848_6 WHERE interview_subject = "Steve Jobs"
Which date contained Aubrey O'Day as the cover model?
CREATE TABLE table_1566852_10 (date VARCHAR, cover_model VARCHAR)
SELECT date FROM table_1566852_10 WHERE cover_model = "Aubrey O'Day"
Who were the cover models in the edition that included Benicio Del Toro as the interview subject?
CREATE TABLE table_1566852_10 (cover_model VARCHAR, interview_subject VARCHAR)
SELECT cover_model FROM table_1566852_10 WHERE interview_subject = "Benicio del Toro"
How many cover models were on the edition that featured Jennifer Pershing as the centerfold?
CREATE TABLE table_1566852_10 (cover_model VARCHAR, centerfold_model VARCHAR)
SELECT COUNT(cover_model) FROM table_1566852_10 WHERE centerfold_model = "Jennifer Pershing"
What season number corresponds to series number 102?
CREATE TABLE table_15717093_1 (season__number INTEGER, series__number VARCHAR)
SELECT MAX(season__number) FROM table_15717093_1 WHERE series__number = 102
What was the title when there were 14.39 million viewers?
CREATE TABLE table_15717093_1 (title VARCHAR, us_viewers__millions_ VARCHAR)
SELECT title FROM table_15717093_1 WHERE us_viewers__millions_ = "14.39"
Who was the writer when there were 15.85 million US viewers?
CREATE TABLE table_15717093_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR)
SELECT written_by FROM table_15717093_1 WHERE us_viewers__millions_ = "15.85"
How many years did notre dame participate?
CREATE TABLE table_1571238_2 (years_participated INTEGER, team VARCHAR)
SELECT MAX(years_participated) FROM table_1571238_2 WHERE team = "Notre Dame"
When colgate is the team how many times did they place fourth?
CREATE TABLE table_1571238_2 (fourth_place VARCHAR, team VARCHAR)
SELECT COUNT(fourth_place) FROM table_1571238_2 WHERE team = "Colgate"
When the team is lake superior state how many times did they place fourth?
CREATE TABLE table_1571238_2 (fourth_place INTEGER, team VARCHAR)
SELECT MIN(fourth_place) FROM table_1571238_2 WHERE team = "Lake Superior State"
When the team is yale what is max amount of times they placed fourth?
CREATE TABLE table_1571238_2 (fourth_place INTEGER, team VARCHAR)
SELECT MAX(fourth_place) FROM table_1571238_2 WHERE team = "Yale"
When the team is Toronto how many times did they place third?
CREATE TABLE table_1571238_2 (third_place VARCHAR, team VARCHAR)
SELECT COUNT(third_place) FROM table_1571238_2 WHERE team = "Toronto"
What is the current streak against TCU?
CREATE TABLE table_15740666_4 (current_streak VARCHAR, kansas_state_vs VARCHAR)
SELECT current_streak FROM table_15740666_4 WHERE kansas_state_vs = "TCU"
What is the at Manhattan record against TCU?
CREATE TABLE table_15740666_4 (at_manhattan VARCHAR, kansas_state_vs VARCHAR)
SELECT at_manhattan FROM table_15740666_4 WHERE kansas_state_vs = "TCU"
What is the airdate when the director is george spenton-foster
CREATE TABLE table_15739098_1 (airdate VARCHAR, director VARCHAR)
SELECT airdate FROM table_15739098_1 WHERE director = "George Spenton-Foster"
Name the msot episode that was adapted by leon griffiths
CREATE TABLE table_15739098_1 (episode INTEGER, adapted_by VARCHAR)
SELECT MAX(episode) FROM table_15739098_1 WHERE adapted_by = "Leon Griffiths"
Name the number of episodes for alan nourse
CREATE TABLE table_15739098_1 (episode VARCHAR, story VARCHAR)
SELECT COUNT(episode) FROM table_15739098_1 WHERE story = "Alan Nourse"
Which viewers have the language of troff (typesetter runoff) , groff (gnu runoff)?
CREATE TABLE table_1574968_1 (viewer VARCHAR, language VARCHAR)
SELECT viewer FROM table_1574968_1 WHERE language = "troff (typesetter runoff) , groff (GNU runoff)"
Who is the creator when the view happens to gddm, afp viewer?
CREATE TABLE table_1574968_1 (creator VARCHAR, viewer VARCHAR)
SELECT creator FROM table_1574968_1 WHERE viewer = "GDDM, AFP viewer"
WHERE THE THEME WAS "YEAR THEY WERE BORN," WHAT THE TOTAL NUMBER OF RESULTS?
CREATE TABLE table_15778392_1 (result VARCHAR, theme VARCHAR)
SELECT COUNT(result) FROM table_15778392_1 WHERE theme = "Year They Were Born"
WHAT IS THE RESULT FOR THE SONG WHERE THE ORIGINAL ARTIST IS BETTY EVERETT?
CREATE TABLE table_15778392_1 (result VARCHAR, original_artist VARCHAR)
SELECT result FROM table_15778392_1 WHERE original_artist = "Betty Everett"
WHAT WAS HER SONG CHOICE WHEN THE WEEK WAS TOP 10?
CREATE TABLE table_15778392_1 (song_choice VARCHAR, week__number VARCHAR)
SELECT song_choice FROM table_15778392_1 WHERE week__number = "Top 10"
WHERE THE WEEK NUMBER WAS TOP 8, WHAT WAS THE THEME?
CREATE TABLE table_15778392_1 (theme VARCHAR, week__number VARCHAR)
SELECT theme FROM table_15778392_1 WHERE week__number = "Top 8"
What is the location and what is the attendance of game 38?
CREATE TABLE table_15780049_6 (location_attendance VARCHAR, game VARCHAR)
SELECT location_attendance FROM table_15780049_6 WHERE game = 38
What was the games score on January 11?
CREATE TABLE table_15780049_6 (score VARCHAR, date VARCHAR)
SELECT score FROM table_15780049_6 WHERE date = "January 11"
What is the score of game 33?
CREATE TABLE table_15780049_6 (score VARCHAR, game VARCHAR)
SELECT score FROM table_15780049_6 WHERE game = 33
Who had the most assist when the opponent was Cleveland?
CREATE TABLE table_15780049_6 (high_assists VARCHAR, team VARCHAR)
SELECT high_assists FROM table_15780049_6 WHERE team = "Cleveland"
What was the score of the game played on January 19?
CREATE TABLE table_15780049_6 (score VARCHAR, date VARCHAR)
SELECT score FROM table_15780049_6 WHERE date = "January 19"
What is the Raptors' record against New Jersey?
CREATE TABLE table_15780718_9 (record VARCHAR, team VARCHAR)
SELECT record FROM table_15780718_9 WHERE team = "New Jersey"
Name for the high rebounds when score is w 105–91 (ot)
CREATE TABLE table_15780718_6 (high_rebounds VARCHAR, score VARCHAR)
SELECT high_rebounds FROM table_15780718_6 WHERE score = "W 105–91 (OT)"
What is the order number for the theme of Mariah Carey?
CREATE TABLE table_15796100_1 (order__number VARCHAR, theme VARCHAR)
SELECT order__number FROM table_15796100_1 WHERE theme = "Mariah Carey"
Who is the original artist for the theme "Year they were born?"
CREATE TABLE table_15796100_1 (original_artist VARCHAR, theme VARCHAR)
SELECT original_artist FROM table_15796100_1 WHERE theme = "Year They Were Born"
What theme name has the original artist of Dolly Parton?
CREATE TABLE table_15796100_1 (theme VARCHAR, original_artist VARCHAR)
SELECT theme FROM table_15796100_1 WHERE original_artist = "Dolly Parton"
How many themes have the original artist of Judy Garland?
CREATE TABLE table_15796100_1 (theme VARCHAR, original_artist VARCHAR)
SELECT COUNT(theme) FROM table_15796100_1 WHERE original_artist = "Judy Garland"
What is the original airdate when the season number is 4?
CREATE TABLE table_15824796_5 (original_air_date VARCHAR, season__number VARCHAR)
SELECT original_air_date FROM table_15824796_5 WHERE season__number = 4
What is the smallest number of European Parliament sets when the international affiliation is global greens, egp?
CREATE TABLE table_158282_1 (european_parliament_seats INTEGER, international_affiliation VARCHAR)
SELECT MIN(european_parliament_seats) FROM table_158282_1 WHERE international_affiliation = "Global Greens, EGP"
How many categories of Senate Seats does Emile Roemer have?
CREATE TABLE table_158282_1 (senate_seats VARCHAR, political_leader VARCHAR)
SELECT COUNT(senate_seats) FROM table_158282_1 WHERE political_leader = "Emile Roemer"
Name the least road wins
CREATE TABLE table_1585112_2 (road_wins INTEGER)
SELECT MIN(road_wins) FROM table_1585112_2
Name the maximum mum l is less than 6.0
CREATE TABLE table_1585112_2 (num INTEGER, l INTEGER)
SELECT MAX(num) FROM table_1585112_2 WHERE l < 6.0
What is the highest value for race?
CREATE TABLE table_15852257_1 (races INTEGER)
SELECT MAX(races) FROM table_15852257_1
Which podiums have a final placing of 10th?
CREATE TABLE table_15852257_1 (podiums VARCHAR, final_placing VARCHAR)
SELECT podiums FROM table_15852257_1 WHERE final_placing = "10th"