text
stringlengths
114
1.06k
### question: How many times was Mike McIntyre elected? ### answer: SELECT COUNT(results) FROM table_1805191_34 WHERE incumbent = "Mike McIntyre" ### context: CREATE TABLE table_1805191_34 (results VARCHAR, incumbent VARCHAR)
### question: Which party was elected first in 1998? ### answer: SELECT party FROM table_1805191_34 WHERE first_elected = 1998 ### context: CREATE TABLE table_1805191_34 (party VARCHAR, first_elected VARCHAR)
### question: How many times did Robin Hayes run? ### answer: SELECT COUNT(candidates) FROM table_1805191_34 WHERE incumbent = "Robin Hayes" ### context: CREATE TABLE table_1805191_34 (candidates VARCHAR, incumbent VARCHAR)
### question: What district first elected a Democratic incumbent in 1998? ### answer: SELECT district FROM table_1805191_50 WHERE party = "Democratic" AND first_elected = 1998 ### context: CREATE TABLE table_1805191_50 (district VARCHAR, party VARCHAR, first_elected VARCHAR)
### question: How many tackle assists for the player who averages 23.7? ### answer: SELECT ast FROM table_18064020_21 WHERE avg = "23.7" ### context: CREATE TABLE table_18064020_21 (ast VARCHAR, avg VARCHAR)
### question: How many players named jake flaherty? ### answer: SELECT COUNT(solo) FROM table_18064020_21 WHERE name = "Jake Flaherty" ### context: CREATE TABLE table_18064020_21 (solo VARCHAR, name VARCHAR)
### question: What is the total brup for the team? ### answer: SELECT brup FROM table_18064020_21 WHERE name = "total" ### context: CREATE TABLE table_18064020_21 (brup VARCHAR, name VARCHAR)
### question: What is the largest number of tds scored for a player? ### answer: SELECT MAX(td) FROM table_18064020_21 ### context: CREATE TABLE table_18064020_21 (td INTEGER)
### question: How many yards for the player with tfl-yds of 2.5-4? ### answer: SELECT no_yds FROM table_18064020_21 WHERE tfl_yds = "2.5-4" ### context: CREATE TABLE table_18064020_21 (no_yds VARCHAR, tfl_yds VARCHAR)
### question: What is the lowest number associated with Tonkolili? ### answer: SELECT MIN(tonkolili) FROM table_18103265_1 ### context: CREATE TABLE table_18103265_1 (tonkolili INTEGER)
### question: What is the main service for the station with 14.849 million passengers 2011-12? ### answer: SELECT main_services FROM table_18118221_1 WHERE total_passengers__millions__2011_12 = "14.849" ### context: CREATE TABLE table_18118221_1 (main_services VARCHAR, total_passengers__millions__2011_12 VARCHAR)
### question: What is the lowest rank of Gatwick Airport? ### answer: SELECT MIN(rank) FROM table_18118221_1 WHERE railway_station = "Gatwick Airport" ### context: CREATE TABLE table_18118221_1 (rank INTEGER, railway_station VARCHAR)
### question: Which location has 103.534 million passengers in 2011-12? ### answer: SELECT location FROM table_18118221_1 WHERE total_passengers__millions__2011_12 = "103.534" ### context: CREATE TABLE table_18118221_1 (location VARCHAR, total_passengers__millions__2011_12 VARCHAR)
### question: How many annual interchanges in the millions occurred in 2011-12 when the number of annual entry/exits was 36.609 million? ### answer: SELECT annual_interchanges__millions__2011_12 FROM table_18118221_1 WHERE annual_entry_exit__millions__2011_12 = "36.609" ### context: CREATE TABLE table_18118221_1 (annu...
### question: Who was the winning team on the circuit Zolder? ### answer: SELECT winning_team FROM table_18095719_2 WHERE circuit = "Zolder" ### context: CREATE TABLE table_18095719_2 (winning_team VARCHAR, circuit VARCHAR)
### question: What round was circuit Avus? ### answer: SELECT MAX(round) FROM table_18095719_2 WHERE circuit = "AVUS" ### context: CREATE TABLE table_18095719_2 (round INTEGER, circuit VARCHAR)
### question: Who had pole position in round 7? ### answer: SELECT pole_position FROM table_18095719_2 WHERE round = 7 ### context: CREATE TABLE table_18095719_2 (pole_position VARCHAR, round VARCHAR)
### question: What is the english (bcp) phrase "for thine is the kingdom, the power" in modern german with standard wording? ### answer: SELECT modern_german__standard_wording_ FROM table_181240_1 WHERE english___bcp__ = "For thine is the kingdom, the power" ### context: CREATE TABLE table_181240_1 (modern_german__stan...
### question: What is the modern german standard wording for the german based writing system 2 phrase "wie mir die vergewwe wu uns schuldich sinn."? ### answer: SELECT modern_german__standard_wording_ FROM table_181240_1 WHERE writing_system_2__german_based_ = "wie mir die vergewwe wu uns schuldich sinn." ### context: ...
### question: How many news stations opened on the date of June 24, 2000? ### answer: SELECT _number_of_new_stations FROM table_1817879_2 WHERE date_opened = "June 24, 2000" ### context: CREATE TABLE table_1817879_2 (_number_of_new_stations VARCHAR, date_opened VARCHAR)
### question: What is the length (miles) when pico to 7th st/metro center are the endpoints? ### answer: SELECT length__miles_ FROM table_1817879_2 WHERE endpoints = "Pico to 7th St/Metro Center" ### context: CREATE TABLE table_1817879_2 (length__miles_ VARCHAR, endpoints VARCHAR)
### question: How many lines have the segment description of red line mos-2 west? ### answer: SELECT line_s_ FROM table_1817879_2 WHERE segment_description = "Red Line MOS-2 West" ### context: CREATE TABLE table_1817879_2 (line_s_ VARCHAR, segment_description VARCHAR)
### question: What is the lenth (miles) of endpoints westlake/macarthur park to wilshire/western? ### answer: SELECT length__miles_ FROM table_1817879_2 WHERE endpoints = "Westlake/MacArthur Park to Wilshire/Western" ### context: CREATE TABLE table_1817879_2 (length__miles_ VARCHAR, endpoints VARCHAR)
### question: What date of segment description red line mos-2 north open? ### answer: SELECT date_opened FROM table_1817879_2 WHERE segment_description = "Red Line MOS-2 North" ### context: CREATE TABLE table_1817879_2 (date_opened VARCHAR, segment_description VARCHAR)
### question: How many new stations have a lenght (miles) of 6.0? ### answer: SELECT COUNT(_number_of_new_stations) FROM table_1817879_2 WHERE length__miles_ = "6.0" ### context: CREATE TABLE table_1817879_2 (_number_of_new_stations VARCHAR, length__miles_ VARCHAR)
### question: If there were 14 in 1990 and 6 survived how many were destroyed? ### answer: SELECT destroyed FROM table_1817852_1 WHERE 1990 = 14 AND survived = 6 ### context: CREATE TABLE table_1817852_1 (destroyed VARCHAR, survived VARCHAR)
### question: If 4 went to iran and the amount that survived was less than 12.0 how many were there in 1990? ### answer: SELECT COUNT(1990) FROM table_1817852_1 WHERE to_iran = 4 AND survived < 12.0 ### context: CREATE TABLE table_1817852_1 (to_iran VARCHAR, survived VARCHAR)
### question: If the aircraft was ussr mig-25 rb how many were destroyed? ### answer: SELECT destroyed FROM table_1817852_1 WHERE aircraft = "USSR MiG-25 RB" ### context: CREATE TABLE table_1817852_1 (destroyed VARCHAR, aircraft VARCHAR)
### question: What was the score when the opposing team was from Belgium? ### answer: SELECT score FROM table_18183850_12 WHERE opponent_team = "Belgium" ### context: CREATE TABLE table_18183850_12 (score VARCHAR, opponent_team VARCHAR)
### question: How many outcomes were there when the opponent was Aleksandra Wozniak? ### answer: SELECT COUNT(outcome) FROM table_18183850_12 WHERE opponent = "Aleksandra Wozniak" ### context: CREATE TABLE table_18183850_12 (outcome VARCHAR, opponent VARCHAR)
### question: What was the score when the opponent was Dominika Cibulková? ### answer: SELECT score FROM table_18183850_12 WHERE opponent = "Dominika Cibulková" ### context: CREATE TABLE table_18183850_12 (score VARCHAR, opponent VARCHAR)
### question: What was the outcome of the game when the opponent was Magdaléna Rybáriková? ### answer: SELECT outcome FROM table_18183850_12 WHERE opponent = "Magdaléna Rybáriková" ### context: CREATE TABLE table_18183850_12 (outcome VARCHAR, opponent VARCHAR)
### question: What was the game edition when they played on the clay (i) surface and the outcome was a winner? ### answer: SELECT edition FROM table_18183850_12 WHERE surface = "Clay (i)" AND outcome = "Winner" ### context: CREATE TABLE table_18183850_12 (edition VARCHAR, surface VARCHAR, outcome VARCHAR)
### question: Who was the game attended by 60425 people played against? ### answer: SELECT opponent FROM table_18207285_2 WHERE attendance = 60425 ### context: CREATE TABLE table_18207285_2 (opponent VARCHAR, attendance VARCHAR)
### question: How many different counts of the Raiders first downs are there for the game number 9? ### answer: SELECT COUNT(raiders_first_downs) FROM table_18207285_2 WHERE game = 9 ### context: CREATE TABLE table_18207285_2 (raiders_first_downs VARCHAR, game VARCHAR)
### question: What's the record in the game played against 42? ### answer: SELECT record FROM table_18207285_2 WHERE opponents = 42 ### context: CREATE TABLE table_18207285_2 (record VARCHAR, opponents VARCHAR)
### question: What was the result of the game seen by 31095 people? ### answer: SELECT result FROM table_18207285_2 WHERE attendance = 31095 ### context: CREATE TABLE table_18207285_2 (result VARCHAR, attendance VARCHAR)
### question: How many opponents played 1 game with a result win? ### answer: SELECT MAX(opponents) FROM table_18207285_2 WHERE result = "Win" AND game = 1 ### context: CREATE TABLE table_18207285_2 (opponents INTEGER, result VARCHAR, game VARCHAR)
### question: Which award-winning film has a screening number of 50 films 50 televised? ### answer: SELECT award_winning_film FROM table_18220102_1 WHERE number_of_screening = "50 films 50 televised" ### context: CREATE TABLE table_18220102_1 (award_winning_film VARCHAR, number_of_screening VARCHAR)
### question: How many award-winning films have the opening film of encounters at the end of the world? ### answer: SELECT COUNT(award_winning_film) FROM table_18220102_1 WHERE opening_film = "Encounters at the End of the World" ### context: CREATE TABLE table_18220102_1 (award_winning_film VARCHAR, opening_film VARCHA...
### question: How many number of screenings have an opening film of the journey of vaan nguyen? ### answer: SELECT COUNT(number_of_screening) FROM table_18220102_1 WHERE opening_film = "The Journey of Vaan Nguyen" ### context: CREATE TABLE table_18220102_1 (number_of_screening VARCHAR, opening_film VARCHAR)
### question: Which opening film has the opening date of august 23? ### answer: SELECT opening_film FROM table_18220102_1 WHERE date__opening_ = "August 23" ### context: CREATE TABLE table_18220102_1 (opening_film VARCHAR, date__opening_ VARCHAR)
### question: Which award-winning film has a closing date of September 4? ### answer: SELECT award_winning_film FROM table_18220102_1 WHERE date__closing_ = "September 4" ### context: CREATE TABLE table_18220102_1 (award_winning_film VARCHAR, date__closing_ VARCHAR)
### question: What series number garnered 20.64 million viewers? ### answer: SELECT series__number FROM table_18217750_1 WHERE us_viewers__millions_ = "20.64" ### context: CREATE TABLE table_18217750_1 (series__number VARCHAR, us_viewers__millions_ VARCHAR)
### question: What position did Pranita Sahu's team get? ### answer: SELECT position FROM table_18278508_2 WHERE co_contestant__yaar_vs_pyaar_ = "Pranita Sahu" ### context: CREATE TABLE table_18278508_2 (position VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)
### question: What date did Jatin Shah and Shalini Chandran perform? ### answer: SELECT date_performed FROM table_18278508_2 WHERE main_contestant = "Jatin Shah" AND co_contestant__yaar_vs_pyaar_ = "Shalini Chandran" ### context: CREATE TABLE table_18278508_2 (date_performed VARCHAR, main_contestant VARCHAR, co_contest...
### question: Who performed with Tina Parekh? ### answer: SELECT main_contestant FROM table_18278508_2 WHERE co_contestant__yaar_vs_pyaar_ = "Tina Parekh" ### context: CREATE TABLE table_18278508_2 (main_contestant VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)
### question: What position did the team with the total score of 41/60 get? ### answer: SELECT position FROM table_18278508_2 WHERE total_score_week = "41/60" ### context: CREATE TABLE table_18278508_2 (position VARCHAR, total_score_week VARCHAR)
### question: Which round 5 Grand Prix had Daijiro Hiura at pole position? ### answer: SELECT grand_prix FROM table_18303274_1 WHERE pole_position = "Daijiro Hiura" AND round = 5 ### context: CREATE TABLE table_18303274_1 (grand_prix VARCHAR, pole_position VARCHAR, round VARCHAR)
### question: What grand prixs did Daijiro Hiura win? ### answer: SELECT grand_prix FROM table_18303274_1 WHERE race_winner = "Daijiro Hiura" ### context: CREATE TABLE table_18303274_1 (grand_prix VARCHAR, race_winner VARCHAR)
### question: Who had the fastest lap in the Dutch TT Grand Prix? ### answer: SELECT fastest_lap FROM table_18303274_1 WHERE grand_prix = "Dutch TT" ### context: CREATE TABLE table_18303274_1 (fastest_lap VARCHAR, grand_prix VARCHAR)
### question: Luis Salom had the fastest lap on which circuits? ### answer: SELECT circuit FROM table_18303274_1 WHERE fastest_lap = "Luis Salom" ### context: CREATE TABLE table_18303274_1 (circuit VARCHAR, fastest_lap VARCHAR)
### question: When 15 is the number overall what is the original air date? ### answer: SELECT original_air_date FROM table_18335117_3 WHERE no_overall = 15 ### context: CREATE TABLE table_18335117_3 (original_air_date VARCHAR, no_overall VARCHAR)
### question: When 1 is the number in series who is the director? ### answer: SELECT director FROM table_18335117_3 WHERE no_in_series = 1 ### context: CREATE TABLE table_18335117_3 (director VARCHAR, no_in_series VARCHAR)
### question: When did the episode first air that had a production code of 102? ### answer: SELECT original_air_date FROM table_18335117_2 WHERE production_code = 102 ### context: CREATE TABLE table_18335117_2 (original_air_date VARCHAR, production_code VARCHAR)
### question: When did the episodes first air that had a production code of 107? ### answer: SELECT original_air_date FROM table_18335117_2 WHERE production_code = 107 ### context: CREATE TABLE table_18335117_2 (original_air_date VARCHAR, production_code VARCHAR)
### question: What is the highest production code of an episode written by Tim Loane? ### answer: SELECT MAX(production_code) FROM table_18335117_2 WHERE writer = "Tim Loane" ### context: CREATE TABLE table_18335117_2 (production_code INTEGER, writer VARCHAR)
### question: How many editions have a most wins value of Franco Marvulli (4)? ### answer: SELECT COUNT(number_of_editions) FROM table_1840433_2 WHERE most_wins_by = "Franco Marvulli (4)" ### context: CREATE TABLE table_1840433_2 (number_of_editions VARCHAR, most_wins_by VARCHAR)
### question: Name the total number in the series written by john banas and directed by pino amenta ### answer: SELECT COUNT(no_in_series) FROM table_18428016_1 WHERE written_by = "John Banas" AND directed_by = "Pino Amenta" ### context: CREATE TABLE table_18428016_1 (no_in_series VARCHAR, written_by VARCHAR, directed_...
### question: What was the little league team from Kentucky when the little league team from Illinois was Rock Falls LL Rock Falls? ### answer: SELECT kentucky FROM table_18461045_1 WHERE illinois = "Rock Falls LL Rock Falls" ### context: CREATE TABLE table_18461045_1 (kentucky VARCHAR, illinois VARCHAR)
### question: What was the little league team from Indiana when the little league team from Michigan was Midland Northeast LL Midland? ### answer: SELECT indiana FROM table_18461045_1 WHERE michigan = "Midland Northeast LL Midland" ### context: CREATE TABLE table_18461045_1 (indiana VARCHAR, michigan VARCHAR)
### question: What was the little league team from Kentucky when the little league team from Indiana and Wisconsin were Brownsburg LL Brownsburg and Merrill LL Merrill? ### answer: SELECT kentucky FROM table_18461045_1 WHERE indiana = "Brownsburg LL Brownsburg" AND wisconsin = "Merrill LL Merrill" ### context: CREATE T...
### question: What was the little league team from Ohio when the little league team from Kentucky was Warren County South LL Bowling Green? ### answer: SELECT ohio FROM table_18461045_1 WHERE kentucky = "Warren County South LL Bowling Green" ### context: CREATE TABLE table_18461045_1 (ohio VARCHAR, kentucky VARCHAR)
### question: What was the little league team from Michigan when the little league team from Indiana was Terre Haute North LL Terre Haute? ### answer: SELECT michigan FROM table_18461045_1 WHERE indiana = "Terre Haute North LL Terre Haute" ### context: CREATE TABLE table_18461045_1 (michigan VARCHAR, indiana VARCHAR)
### question: What was the little league team from Kentucky when the little league team from Michigan was Grosse Pointe Farms-City LL Grosse Pointe Farms? ### answer: SELECT kentucky FROM table_18461045_1 WHERE michigan = "Grosse Pointe Farms-City LL Grosse Pointe Farms" ### context: CREATE TABLE table_18461045_1 (ken...
### question: How many table points are listed for the deficit is +194? ### answer: SELECT COUNT(table_points) FROM table_18505065_1 WHERE difference = "+194" ### context: CREATE TABLE table_18505065_1 (table_points VARCHAR, difference VARCHAR)
### question: How many games had a deficit of 175? ### answer: SELECT COUNT(played) FROM table_18505065_1 WHERE against = 175 ### context: CREATE TABLE table_18505065_1 (played VARCHAR, against VARCHAR)
### question: What is the theme song for Magarikado no Kanojo? ### answer: SELECT theme_song_s_ FROM table_18540104_1 WHERE romaji_title = "Magarikado no Kanojo" ### context: CREATE TABLE table_18540104_1 (theme_song_s_ VARCHAR, romaji_title VARCHAR)
### question: Who is the star of the program on Thursdays 22:00~22:54 2005-04-xx to 2005-06-xx? ### answer: SELECT starring_actors FROM table_18540104_1 WHERE time_frame = "Thursdays 22:00~22:54 2005-04-xx to 2005-06-xx" ### context: CREATE TABLE table_18540104_1 (starring_actors VARCHAR, time_frame VARCHAR)
### question: What is the title with an average rating of 22.4%? ### answer: SELECT romaji_title FROM table_18540104_1 WHERE average_ratings = "22.4%" ### context: CREATE TABLE table_18540104_1 (romaji_title VARCHAR, average_ratings VARCHAR)
### question: What is maximum number of episodes for a show? ### answer: SELECT MAX(episodes) FROM table_18540104_1 ### context: CREATE TABLE table_18540104_1 (episodes INTEGER)
### question: What is the Japanese title with an average rating of 11.6%? ### answer: SELECT japanese_title FROM table_18540104_1 WHERE average_ratings = "11.6%" ### context: CREATE TABLE table_18540104_1 (japanese_title VARCHAR, average_ratings VARCHAR)
### question: Who were the starting actors in the time frame of tuesday 22:00~22:54 8 april 2008 to 17 june 2008? ### answer: SELECT starring_actors FROM table_18539834_2 WHERE time_frame = "Tuesday 22:00~22:54 8 April 2008 to 17 June 2008" ### context: CREATE TABLE table_18539834_2 (starring_actors VARCHAR, time_fram...
### question: What are the japanese title(s) for tv asahi? ### answer: SELECT japanese_title FROM table_18539834_2 WHERE tv_station = "TV Asahi" ### context: CREATE TABLE table_18539834_2 (japanese_title VARCHAR, tv_station VARCHAR)
### question: How many titles had an average rating of 8.9%? ### answer: SELECT COUNT(romaji_title) FROM table_18539834_2 WHERE average_ratings = "8.9%" ### context: CREATE TABLE table_18539834_2 (romaji_title VARCHAR, average_ratings VARCHAR)
### question: What is the average rating for tv asahi? ### answer: SELECT average_ratings FROM table_18539834_2 WHERE tv_station = "TV Asahi" ### context: CREATE TABLE table_18539834_2 (average_ratings VARCHAR, tv_station VARCHAR)
### question: What is the top speed of a 4-speed automatic with production in 2002-2005? ### answer: SELECT top_speed FROM table_1857216_1 WHERE transmission = "4-speed automatic" AND production = "2002-2005" ### context: CREATE TABLE table_1857216_1 (top_speed VARCHAR, transmission VARCHAR, production VARCHAR)
### question: What is the top speed of a 5-speed manual transmission produced in 2006-2009? ### answer: SELECT top_speed FROM table_1857216_1 WHERE production = "2006-2009" AND transmission = "5-speed manual" ### context: CREATE TABLE table_1857216_1 (top_speed VARCHAR, production VARCHAR, transmission VARCHAR)
### question: What is the acceleration 0-100km/h that was produced in 2002-2006? ### answer: SELECT acceleration_0_100km_h__0_62mph_ FROM table_1857216_1 WHERE production = "2002-2006" ### context: CREATE TABLE table_1857216_1 (acceleration_0_100km_h__0_62mph_ VARCHAR, production VARCHAR)
### question: What was the township with a geo ID of 3807116660? ### answer: SELECT township FROM table_18600760_3 WHERE geo_id = 3807116660 ### context: CREATE TABLE table_18600760_3 (township VARCHAR, geo_id VARCHAR)
### question: What was the county with a longitude of -102.302775? ### answer: SELECT county FROM table_18600760_3 WHERE longitude = "-102.302775" ### context: CREATE TABLE table_18600760_3 (county VARCHAR, longitude VARCHAR)
### question: What was the land area in sqmi that has a latitude of 48.763937? ### answer: SELECT land___sqmi__ FROM table_18600760_3 WHERE latitude = "48.763937" ### context: CREATE TABLE table_18600760_3 (land___sqmi__ VARCHAR, latitude VARCHAR)
### question: What was the county with a latitude of 46.770977? ### answer: SELECT county FROM table_18600760_3 WHERE latitude = "46.770977" ### context: CREATE TABLE table_18600760_3 (county VARCHAR, latitude VARCHAR)
### question: What was the latitude of the Clearwater townsship? ### answer: SELECT latitude FROM table_18600760_3 WHERE township = "Clearwater" ### context: CREATE TABLE table_18600760_3 (latitude VARCHAR, township VARCHAR)
### question: What was the longitude of the township with a latitude of 48.075823? ### answer: SELECT longitude FROM table_18600760_3 WHERE latitude = "48.075823" ### context: CREATE TABLE table_18600760_3 (longitude VARCHAR, latitude VARCHAR)
### question: Who is the player with 41 legs lost? ### answer: SELECT player FROM table_18621456_22 WHERE legs_lost = 41 ### context: CREATE TABLE table_18621456_22 (player VARCHAR, legs_lost VARCHAR)
### question: What is the most legs lost of all? ### answer: SELECT MAX(legs_lost) FROM table_18621456_22 ### context: CREATE TABLE table_18621456_22 (legs_lost INTEGER)
### question: If the floor number is 14.200, what is the number for the parallel bars? ### answer: SELECT parallel_bars FROM table_18662026_10 WHERE floor = "14.200" ### context: CREATE TABLE table_18662026_10 (parallel_bars VARCHAR, floor VARCHAR)
### question: If the parallel bars is 16.150, who is the gymnast? ### answer: SELECT gymnast FROM table_18662026_10 WHERE parallel_bars = "16.150" ### context: CREATE TABLE table_18662026_10 (gymnast VARCHAR, parallel_bars VARCHAR)
### question: If the parallel bars is 14.025, what is the total number of gymnasts? ### answer: SELECT COUNT(gymnast) FROM table_18662026_10 WHERE parallel_bars = "14.025" ### context: CREATE TABLE table_18662026_10 (gymnast VARCHAR, parallel_bars VARCHAR)
### question: If the horizontal bar is n/a and the floor is 14.175, what is the number for the parallel bars? ### answer: SELECT parallel_bars FROM table_18662026_10 WHERE floor = "14.175" AND horizontal_bar = "N/A" ### context: CREATE TABLE table_18662026_10 (parallel_bars VARCHAR, floor VARCHAR, horizontal_bar VARCHA...
### question: When 19 is the stage who is the points classification? ### answer: SELECT points_classification FROM table_18733814_2 WHERE stage = 19 ### context: CREATE TABLE table_18733814_2 (points_classification VARCHAR, stage VARCHAR)
### question: When thomas löfkvist is the young rider classification and alessandro petacchi is the points classification who are the general classifications? ### answer: SELECT general_classification FROM table_18733814_2 WHERE points_classification = "Alessandro Petacchi" AND young_rider_classification = "Thomas Lö...
### question: When thomas löfkvist is the general classification who is the winner? ### answer: SELECT winner FROM table_18733814_2 WHERE general_classification = "Thomas Löfkvist" ### context: CREATE TABLE table_18733814_2 (winner VARCHAR, general_classification VARCHAR)
### question: When philippe gilbert is the winner who is the points classification? ### answer: SELECT points_classification FROM table_18733814_2 WHERE winner = "Philippe Gilbert" ### context: CREATE TABLE table_18733814_2 (points_classification VARCHAR, winner VARCHAR)
### question: When danilo di luca is the winner who is the general classification? ### answer: SELECT general_classification FROM table_18733814_2 WHERE winner = "Danilo Di Luca" ### context: CREATE TABLE table_18733814_2 (general_classification VARCHAR, winner VARCHAR)
### question: Name the minimum number of reservoir for gnis query link where numbers lake gnis query link being 60 ### answer: SELECT MIN(_number_s_reservoir_and_gnis_query_link) FROM table_18760137_2 WHERE _number_s_lake_and_gnis_query_link = 60 ### context: CREATE TABLE table_18760137_2 (_number_s_reservoir_and_gnis_...
### question: Name the most numbers dam and gnis query link for borough or census area for fairbanks north star ### answer: SELECT MAX(_number_s_dam_and_gnis_query_link) FROM table_18760137_2 WHERE borough_or_census_area = "Fairbanks North Star" ### context: CREATE TABLE table_18760137_2 (_number_s_dam_and_gnis_query_l...
### question: What is the location for the club with the nickname the bears? ### answer: SELECT location FROM table_18752986_1 WHERE nickname = "Bears" ### context: CREATE TABLE table_18752986_1 (location VARCHAR, nickname VARCHAR)
### question: What is the code nickname where Steve Mayne is the coach? ### answer: SELECT nickname FROM table_18752986_1 WHERE coach = "Steve Mayne" ### context: CREATE TABLE table_18752986_1 (nickname VARCHAR, coach VARCHAR)