text
stringlengths 114
1.06k
|
---|
### question: What was the lowest attendance for games played on december 23? ### answer: SELECT MIN(attendance) FROM table_23308178_6 WHERE date = "December 23" ### context: CREATE TABLE table_23308178_6 (attendance INTEGER, date VARCHAR)
|
### question: How many dates were played at the wachovia center? ### answer: SELECT COUNT(date) FROM table_23308178_6 WHERE location = "Wachovia Center" ### context: CREATE TABLE table_23308178_6 (date VARCHAR, location VARCHAR)
|
### question: How many games did they have a record of 39-12-6? ### answer: SELECT COUNT(game) FROM table_23308178_8 WHERE record = "39-12-6" ### context: CREATE TABLE table_23308178_8 (game VARCHAR, record VARCHAR)
|
### question: What is the largest number of points they had? ### answer: SELECT MAX(points) FROM table_23308178_8 ### context: CREATE TABLE table_23308178_8 (points INTEGER)
|
### question: How many games did they play with 88 points? ### answer: SELECT COUNT(record) FROM table_23308178_8 WHERE points = 88 ### context: CREATE TABLE table_23308178_8 (record VARCHAR, points VARCHAR)
|
### question: How many games did they play on february 5? ### answer: SELECT opponent FROM table_23308178_8 WHERE date = "February 5" ### context: CREATE TABLE table_23308178_8 (opponent VARCHAR, date VARCHAR)
|
### question: Who is every co-artist with name of role as Ah-Zhong 阿忠? ### answer: SELECT co_artists FROM table_23379776_5 WHERE name_of_role = "Ah-Zhong 阿忠" ### context: CREATE TABLE table_23379776_5 (co_artists VARCHAR, name_of_role VARCHAR)
|
### question: What is every nature of role with year as 2009? ### answer: SELECT nature_of_role FROM table_23379776_5 WHERE year = 2009 ### context: CREATE TABLE table_23379776_5 (nature_of_role VARCHAR, year VARCHAR)
|
### question: How many locations for name of role as Xiao Gui 小鬼? ### answer: SELECT COUNT(location) FROM table_23379776_5 WHERE name_of_role = "Xiao Gui 小鬼" ### context: CREATE TABLE table_23379776_5 (location VARCHAR, name_of_role VARCHAR)
|
### question: On what date did episode 2 air? ### answer: SELECT original_air_date FROM table_2343740_1 WHERE episode_number = 2 ### context: CREATE TABLE table_2343740_1 (original_air_date VARCHAR, episode_number VARCHAR)
|
### question: What was the title of the episode that aired February 9, 1979? ### answer: SELECT title FROM table_2343740_1 WHERE original_air_date = "February 9, 1979" ### context: CREATE TABLE table_2343740_1 (title VARCHAR, original_air_date VARCHAR)
|
### question: What is the number of the episode seen by 1.370 million people in the US? ### answer: SELECT MAX(_number) FROM table_2345558_1 WHERE us_viewers__millions_ = "1.370" ### context: CREATE TABLE table_2345558_1 (_number INTEGER, us_viewers__millions_ VARCHAR)
|
### question: What's the number of the episode directed by Whitney Ransick? ### answer: SELECT _number FROM table_2345558_1 WHERE director = "Whitney Ransick" ### context: CREATE TABLE table_2345558_1 (_number VARCHAR, director VARCHAR)
|
### question: Who directed the episode written by Jason Yoshimura? ### answer: SELECT director FROM table_2345558_1 WHERE writer_s_ = "Jason Yoshimura" ### context: CREATE TABLE table_2345558_1 (director VARCHAR, writer_s_ VARCHAR)
|
### question: When roy richardson 476cc aermacchi is the rider what is the time for saturday august 9th? ### answer: SELECT sat_29_aug FROM table_23465864_3 WHERE rider = "Roy Richardson 476cc Aermacchi" ### context: CREATE TABLE table_23465864_3 (sat_29_aug VARCHAR, rider VARCHAR)
|
### question: When 6 is the rank what is the time for Tuesday August 25th? ### answer: SELECT tues_25_aug FROM table_23465864_3 WHERE rank = 6 ### context: CREATE TABLE table_23465864_3 (tues_25_aug VARCHAR, rank VARCHAR)
|
### question: When 3 is the rank what is the time for Saturday August 29th? ### answer: SELECT sat_29_aug FROM table_23465864_3 WHERE rank = 3 ### context: CREATE TABLE table_23465864_3 (sat_29_aug VARCHAR, rank VARCHAR)
|
### question: When 22' 37.06 100.090mph is the time for Monday August 24th how many times are there for Friday August 28th? ### answer: SELECT COUNT(fri_28_aug) FROM table_23465864_3 WHERE mon_24_aug = "22' 37.06 100.090mph" ### context: CREATE TABLE table_23465864_3 (fri_28_aug VARCHAR, mon_24_aug VARCHAR)
|
### question: What is every rider on Monday August 24 at 21' 12.02 106.781mph? ### answer: SELECT rider FROM table_23465864_5 WHERE mon_24_aug = "21' 12.02 106.781mph" ### context: CREATE TABLE table_23465864_5 (rider VARCHAR, mon_24_aug VARCHAR)
|
### question: What is every value on Tuesday August 25 if August Friday 28 is 23' 54.54 94.684mph? ### answer: SELECT tues_25_aug FROM table_23465864_5 WHERE fri_28_aug = "23' 54.54 94.684mph" ### context: CREATE TABLE table_23465864_5 (tues_25_aug VARCHAR, fri_28_aug VARCHAR)
|
### question: What is every rider on Tuesday August 25 at 20' 32.11 110.241mph? ### answer: SELECT rider FROM table_23465864_5 WHERE tues_25_aug = "20' 32.11 110.241mph" ### context: CREATE TABLE table_23465864_5 (rider VARCHAR, tues_25_aug VARCHAR)
|
### question: What is every value for Monday August 24 if Friday August 28 is 23' 22.25 96.864mph? ### answer: SELECT mon_24_aug FROM table_23465864_5 WHERE fri_28_aug = "23' 22.25 96.864mph" ### context: CREATE TABLE table_23465864_5 (mon_24_aug VARCHAR, fri_28_aug VARCHAR)
|
### question: What is the value of Monday August 24 if the rider is Benny Smith 600cc Yamaha? ### answer: SELECT mon_24_aug FROM table_23465864_5 WHERE rider = "Benny Smith 600cc Yamaha" ### context: CREATE TABLE table_23465864_5 (mon_24_aug VARCHAR, rider VARCHAR)
|
### question: What is the value for Monday August 24 if Friday August 28 is 26' 04.60 86.814mph? ### answer: SELECT mon_24_aug FROM table_23465864_5 WHERE fri_28_aug = "26' 04.60 86.814mph" ### context: CREATE TABLE table_23465864_5 (mon_24_aug VARCHAR, fri_28_aug VARCHAR)
|
### question: Who directed 414? ### answer: SELECT directed_by FROM table_23483182_1 WHERE production_code = 414 ### context: CREATE TABLE table_23483182_1 (directed_by VARCHAR, production_code VARCHAR)
|
### question: What is the series number of the episode that aired March 25, 2010? ### answer: SELECT MIN(no_in_series) FROM table_23483182_1 WHERE original_air_date = "March 25, 2010" ### context: CREATE TABLE table_23483182_1 (no_in_series INTEGER, original_air_date VARCHAR)
|
### question: Who wrote the episode that aired February 4, 2010? ### answer: SELECT written_by FROM table_23483182_1 WHERE original_air_date = "February 4, 2010" ### context: CREATE TABLE table_23483182_1 (written_by VARCHAR, original_air_date VARCHAR)
|
### question: What was the air date where there were 5.72 million viewers? ### answer: SELECT original_air_date FROM table_23483182_1 WHERE us_viewers__million_ = "5.72" ### context: CREATE TABLE table_23483182_1 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)
|
### question: What number was there 6.01 million u.s. drivers? ### answer: SELECT no_in_season FROM table_23483182_1 WHERE us_viewers__million_ = "6.01" ### context: CREATE TABLE table_23483182_1 (no_in_season VARCHAR, us_viewers__million_ VARCHAR)
|
### question: What date did they play the Florida Panthers? ### answer: SELECT date FROM table_23486853_3 WHERE opponent = "Florida Panthers" ### context: CREATE TABLE table_23486853_3 (date VARCHAR, opponent VARCHAR)
|
### question: What was the score for the Atlanta Thrashers? ### answer: SELECT score FROM table_23486853_3 WHERE opponent = "Atlanta Thrashers" ### context: CREATE TABLE table_23486853_3 (score VARCHAR, opponent VARCHAR)
|
### question: What was the score for game 4? ### answer: SELECT score FROM table_23486853_3 WHERE game = 4 ### context: CREATE TABLE table_23486853_3 (score VARCHAR, game VARCHAR)
|
### question: How many titles have an original air date of November 17, 1998? ### answer: SELECT COUNT(title) FROM table_234886_2 WHERE original_air_date = "November 17, 1998" ### context: CREATE TABLE table_234886_2 (title VARCHAR, original_air_date VARCHAR)
|
### question: How many season numbers are there for the episode seen by 13.54 million people in the US? ### answer: SELECT COUNT(no_in_season) FROM table_23528223_2 WHERE us_viewers__millions_ = "13.54" ### context: CREATE TABLE table_23528223_2 (no_in_season VARCHAR, us_viewers__millions_ VARCHAR)
|
### question: What's the series number of the episode directed by Skipp Sudduth? ### answer: SELECT no_in_series FROM table_23528223_2 WHERE directed_by = "Skipp Sudduth" ### context: CREATE TABLE table_23528223_2 (no_in_series VARCHAR, directed_by VARCHAR)
|
### question: Who wrote the episode seen by 10.64 million people in the US? ### answer: SELECT written_by FROM table_23528223_2 WHERE us_viewers__millions_ = "10.64" ### context: CREATE TABLE table_23528223_2 (written_by VARCHAR, us_viewers__millions_ VARCHAR)
|
### question: Name the scores for david baddiel and maureen lipman ### answer: SELECT COUNT(scores) FROM table_23575917_2 WHERE davids_team = "David Baddiel and Maureen Lipman" ### context: CREATE TABLE table_23575917_2 (scores VARCHAR, davids_team VARCHAR)
|
### question: Name the scores for michael buerk and russell howard ### answer: SELECT scores FROM table_23575917_2 WHERE lees_team = "Michael Buerk and Russell Howard" ### context: CREATE TABLE table_23575917_2 (scores VARCHAR, lees_team VARCHAR)
|
### question: Name the davids team for 8 august 2008 ### answer: SELECT davids_team FROM table_23575917_2 WHERE first_broadcast = "8 August 2008" ### context: CREATE TABLE table_23575917_2 (davids_team VARCHAR, first_broadcast VARCHAR)
|
### question: What is the episode number that was first broadcast on 3 September 2010? ### answer: SELECT episode FROM table_23575917_4 WHERE first_broadcast = "3 September 2010" ### context: CREATE TABLE table_23575917_4 (episode VARCHAR, first_broadcast VARCHAR)
|
### question: Who is the Lees Team for episode 4x04? ### answer: SELECT lees_team FROM table_23575917_4 WHERE episode = "4x04" ### context: CREATE TABLE table_23575917_4 (lees_team VARCHAR, episode VARCHAR)
|
### question: Who is on the David's Team for the episode with the Lees Team of Jack Dee and Peter Serafinowicz ### answer: SELECT davids_team FROM table_23575917_4 WHERE lees_team = "Jack Dee and Peter Serafinowicz" ### context: CREATE TABLE table_23575917_4 (davids_team VARCHAR, lees_team VARCHAR)
|
### question: How many David's team for the Lees Team of Deborah Meaden and Mark Watson? ### answer: SELECT COUNT(davids_team) FROM table_23575917_4 WHERE lees_team = "Deborah Meaden and Mark Watson" ### context: CREATE TABLE table_23575917_4 (davids_team VARCHAR, lees_team VARCHAR)
|
### question: If the episode is 6x03, what is the first broadcast total number? ### answer: SELECT COUNT(first_broadcast) FROM table_23575917_7 WHERE episode = "6x03" ### context: CREATE TABLE table_23575917_7 (first_broadcast VARCHAR, episode VARCHAR)
|
### question: If the lees team is Clare Balding and Miranda Hart, what is the first broadcast total number? ### answer: SELECT COUNT(first_broadcast) FROM table_23575917_7 WHERE lees_team = "Clare Balding and Miranda Hart" ### context: CREATE TABLE table_23575917_7 (first_broadcast VARCHAR, lees_team VARCHAR)
|
### question: If the lees team is Clare Balding and Miranda Hart, what was the score? ### answer: SELECT scores FROM table_23575917_7 WHERE lees_team = "Clare Balding and Miranda Hart" ### context: CREATE TABLE table_23575917_7 (scores VARCHAR, lees_team VARCHAR)
|
### question: What is the position of the song that was eliminated on 11 november? ### answer: SELECT MAX(position) FROM table_23585197_3 WHERE date_eliminated = "11 November" ### context: CREATE TABLE table_23585197_3 (position INTEGER, date_eliminated VARCHAR)
|
### question: Which artist sang the song that ingela hemming wrote? ### answer: SELECT artist FROM table_23585197_3 WHERE songwriter_s_ = "Ingela Hemming" ### context: CREATE TABLE table_23585197_3 (artist VARCHAR, songwriter_s_ VARCHAR)
|
### question: What is the position of the song that adam sandahl wrote? ### answer: SELECT position FROM table_23585197_3 WHERE songwriter_s_ = "Adam Sandahl" ### context: CREATE TABLE table_23585197_3 (position VARCHAR, songwriter_s_ VARCHAR)
|
### question: What is the position of the song thar genjor mcnell performed? ### answer: SELECT position FROM table_23585197_3 WHERE artist = "Genjor McNell" ### context: CREATE TABLE table_23585197_3 (position VARCHAR, artist VARCHAR)
|
### question: What week has an attendance of 10402 ### answer: SELECT MIN(week) FROM table_23624542_4 WHERE attendance = 10402 ### context: CREATE TABLE table_23624542_4 (week INTEGER, attendance VARCHAR)
|
### question: What is the record on Sept 22? ### answer: SELECT record FROM table_23624542_4 WHERE date = "Sept 22" ### context: CREATE TABLE table_23624542_4 (record VARCHAR, date VARCHAR)
|
### question: If artist 1 is Wolfgang Gartner, what is the release date? ### answer: SELECT release_date FROM table_23649244_2 WHERE artist_1 = "Wolfgang Gartner" ### context: CREATE TABLE table_23649244_2 (release_date VARCHAR, artist_1 VARCHAR)
|
### question: What is song 1 title is the artist is Danny Byrd? ### answer: SELECT song_1_title FROM table_23649244_2 WHERE artist_1 = "Danny Byrd" ### context: CREATE TABLE table_23649244_2 (song_1_title VARCHAR, artist_1 VARCHAR)
|
### question: What is the mix pack when the artist 2 is Eminem? ### answer: SELECT mix_pack FROM table_23649244_2 WHERE artist_2 = "Eminem" ### context: CREATE TABLE table_23649244_2 (mix_pack VARCHAR, artist_2 VARCHAR)
|
### question: What is every value for Serbs if value for Hungarians is 9.26%? ### answer: SELECT serbs FROM table_2374338_2 WHERE hungarians = "9.26%" ### context: CREATE TABLE table_2374338_2 (serbs VARCHAR, hungarians VARCHAR)
|
### question: What is the largest value of population? ### answer: SELECT MAX(population) FROM table_2374338_2 ### context: CREATE TABLE table_2374338_2 (population INTEGER)
|
### question: How many values for Germans occurs when value for Slovaks is 0.11%? ### answer: SELECT COUNT(germans) FROM table_2374338_2 WHERE slovaks = "0.11%" ### context: CREATE TABLE table_2374338_2 (germans VARCHAR, slovaks VARCHAR)
|
### question: What is the smallest value of population if the value for Serbs is 73.53%? ### answer: SELECT MIN(population) FROM table_2374338_2 WHERE serbs = "73.53%" ### context: CREATE TABLE table_2374338_2 (population INTEGER, serbs VARCHAR)
|
### question: What is every value for Croats if the value of Roma is 3.1%? ### answer: SELECT croats FROM table_2374338_2 WHERE roma = "3.1%" ### context: CREATE TABLE table_2374338_2 (croats VARCHAR, roma VARCHAR)
|
### question: What is every value for Croats when value for Romanians is 16.65%? ### answer: SELECT croats FROM table_2374338_2 WHERE romanians = "16.65%" ### context: CREATE TABLE table_2374338_2 (croats VARCHAR, romanians VARCHAR)
|
### question: How many years of nasl years did the accolades read "captained england to victory at the 1966 world cup"? ### answer: SELECT COUNT(nasl_years) FROM table_237757_9 WHERE accolades__pre_nasl_ = "Captained England to victory at the 1966 World Cup" ### context: CREATE TABLE table_237757_9 (nasl_years VARCHAR, accolades__pre_nasl_ VARCHAR)
|
### question: What nasl club won several titles with leeds united? ### answer: SELECT nasl_club_s_ FROM table_237757_9 WHERE accolades__pre_nasl_ = "Won several titles with Leeds United" ### context: CREATE TABLE table_237757_9 (nasl_club_s_ VARCHAR, accolades__pre_nasl_ VARCHAR)
|
### question: What years did Bobby Moore play? ### answer: SELECT nasl_years FROM table_237757_9 WHERE player = "Bobby Moore" ### context: CREATE TABLE table_237757_9 (nasl_years VARCHAR, player VARCHAR)
|
### question: What position is Philadelphia Fury? ### answer: SELECT position FROM table_237757_9 WHERE nasl_club_s_ = "Philadelphia Fury" ### context: CREATE TABLE table_237757_9 (position VARCHAR, nasl_club_s_ VARCHAR)
|
### question: How many years did Peter Lorimer play? ### answer: SELECT COUNT(nasl_years) FROM table_237757_9 WHERE player = "Peter Lorimer" ### context: CREATE TABLE table_237757_9 (nasl_years VARCHAR, player VARCHAR)
|
### question: What was the entry for highest when average is 10295? ### answer: SELECT highest FROM table_237757_10 WHERE average = 10295 ### context: CREATE TABLE table_237757_10 (highest VARCHAR, average VARCHAR)
|
### question: How many entries for highest when the low team was baltimore rays? ### answer: SELECT COUNT(highest) FROM table_237757_10 WHERE low_team = "Baltimore Rays" ### context: CREATE TABLE table_237757_10 (highest VARCHAR, low_team VARCHAR)
|
### question: What was the season when the low team is chicago sting? ### answer: SELECT season FROM table_237757_10 WHERE low_team = "Chicago Sting" ### context: CREATE TABLE table_237757_10 (season VARCHAR, low_team VARCHAR)
|
### question: What's the Stock Exchange Plaza's rank? ### answer: SELECT rank FROM table_23759976_1 WHERE building_[a_] = "Stock Exchange Plaza" ### context: CREATE TABLE table_23759976_1 (rank VARCHAR, building_ VARCHAR, a_ VARCHAR)
|
### question: How tall is the building with 36 floors? ### answer: SELECT height__m_ FROM table_23759976_1 WHERE floors = 36 ### context: CREATE TABLE table_23759976_1 (height__m_ VARCHAR, floors VARCHAR)
|
### question: How many different numbers of floors are there for the Chongqing Poly Tower? ### answer: SELECT COUNT(floors) FROM table_23759976_1 WHERE building_[a_] = "Chongqing Poly Tower" ### context: CREATE TABLE table_23759976_1 (floors VARCHAR, building_ VARCHAR, a_ VARCHAR)
|
### question: How many different ranks does the Cathay Pacific Plaza 2 have? ### answer: SELECT COUNT(rank) FROM table_23759976_1 WHERE building_[a_] = "Cathay Pacific Plaza 2" ### context: CREATE TABLE table_23759976_1 (rank VARCHAR, building_ VARCHAR, a_ VARCHAR)
|
### question: What is the production code directed by Matt Shakman? ### answer: SELECT production_code FROM table_23799417_1 WHERE directed_by = "Matt Shakman" ### context: CREATE TABLE table_23799417_1 (production_code VARCHAR, directed_by VARCHAR)
|
### question: How many series had a production code of 202? ### answer: SELECT COUNT(no_in_series) FROM table_23799417_1 WHERE production_code = 202 ### context: CREATE TABLE table_23799417_1 (no_in_series VARCHAR, production_code VARCHAR)
|
### question: What was the bleeding time during the prolonged partial thromboplastin time in which the prothrombin time is unaffected? ### answer: SELECT bleeding_time FROM table_238124_1 WHERE partial_thromboplastin_time = "Prolonged" AND prothrombin_time = "Unaffected" ### context: CREATE TABLE table_238124_1 (bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR, prothrombin_time VARCHAR)
|
### question: What is the bleeding time for glanzmann's thrombasthenia? ### answer: SELECT bleeding_time FROM table_238124_1 WHERE condition = "Glanzmann's thrombasthenia" ### context: CREATE TABLE table_238124_1 (bleeding_time VARCHAR, condition VARCHAR)
|
### question: What is the platelet count for congenital afibrinogenemia? ### answer: SELECT platelet_count FROM table_238124_1 WHERE condition = "Congenital afibrinogenemia" ### context: CREATE TABLE table_238124_1 (platelet_count VARCHAR, condition VARCHAR)
|
### question: What is the prothrombin time of von willebrand disease? ### answer: SELECT COUNT(prothrombin_time) FROM table_238124_1 WHERE condition = "Von Willebrand disease" ### context: CREATE TABLE table_238124_1 (prothrombin_time VARCHAR, condition VARCHAR)
|
### question: When the bleeding time is unaffected and prothrombin time is prolonged, what are the platelet counts? ### answer: SELECT platelet_count FROM table_238124_1 WHERE bleeding_time = "Unaffected" AND prothrombin_time = "Prolonged" ### context: CREATE TABLE table_238124_1 (platelet_count VARCHAR, bleeding_time VARCHAR, prothrombin_time VARCHAR)
|
### question: Name the last match for argentina - estadio josé maría minella ### answer: SELECT last_match FROM table_23819979_3 WHERE final_place = "Argentina - Estadio José María Minella" ### context: CREATE TABLE table_23819979_3 (last_match VARCHAR, final_place VARCHAR)
|
### question: Name the final position for copa libertadores ### answer: SELECT final_position FROM table_23819979_3 WHERE competition = "Copa Libertadores" ### context: CREATE TABLE table_23819979_3 (final_position VARCHAR, competition VARCHAR)
|
### question: Name the final place for july 25, 2009 ### answer: SELECT final_place FROM table_23819979_3 WHERE last_match = "July 25, 2009" ### context: CREATE TABLE table_23819979_3 (final_place VARCHAR, last_match VARCHAR)
|
### question: What is the epa rated combined fuel economy for the Nissan Leaf? ### answer: SELECT epa_rated_combined_fuel_economy FROM table_23840623_4 WHERE vehicle = "Nissan Leaf" ### context: CREATE TABLE table_23840623_4 (epa_rated_combined_fuel_economy VARCHAR, vehicle VARCHAR)
|
### question: What is the operating mode of the Coda? ### answer: SELECT operating_mode FROM table_23840623_4 WHERE vehicle = "Coda" ### context: CREATE TABLE table_23840623_4 (operating_mode VARCHAR, vehicle VARCHAR)
|
### question: What is the dirty electric grid rocky mountains (denver) for the vehicle with the clean electric grid california (san francisco) of 160 g/mi (99 g/km)? ### answer: SELECT dirty_electric_grid_rocky_mountains__denver_ FROM table_23840623_4 WHERE clean_electric_grid_california__san_francisco_ = "160 g/mi (99 g/km)" ### context: CREATE TABLE table_23840623_4 (dirty_electric_grid_rocky_mountains__denver_ VARCHAR, clean_electric_grid_california__san_francisco_ VARCHAR)
|
### question: How many dirty electric grid rocky mountains (denver) vehicles have an epa rated combined fuel economy of 102 mpg-e (33kw-hrs/100mi)? ### answer: SELECT COUNT(dirty_electric_grid_rocky_mountains__denver_) FROM table_23840623_4 WHERE epa_rated_combined_fuel_economy = "102 mpg-e (33kW-hrs/100mi)" ### context: CREATE TABLE table_23840623_4 (dirty_electric_grid_rocky_mountains__denver_ VARCHAR, epa_rated_combined_fuel_economy VARCHAR)
|
### question: What is the epa rated combined fuel economy for the all-electric vehicle with dirty electric grid rocky mountains (denver) of 330 g/mi (205 g/km)? ### answer: SELECT epa_rated_combined_fuel_economy FROM table_23840623_4 WHERE operating_mode = "All-electric" AND dirty_electric_grid_rocky_mountains__denver_ = "330 g/mi (205 g/km)" ### context: CREATE TABLE table_23840623_4 (epa_rated_combined_fuel_economy VARCHAR, operating_mode VARCHAR, dirty_electric_grid_rocky_mountains__denver_ VARCHAR)
|
### question: How many clean electric grid california (san francisco) figures are given for the Nissan Leaf? ### answer: SELECT COUNT(clean_electric_grid_california__san_francisco_) FROM table_23840623_4 WHERE vehicle = "Nissan Leaf" ### context: CREATE TABLE table_23840623_4 (clean_electric_grid_california__san_francisco_ VARCHAR, vehicle VARCHAR)
|
### question: Which aperture were built or used between 1987-2001? ### answer: SELECT aper_in FROM table_23851574_2 WHERE built_used = "1987-2001" ### context: CREATE TABLE table_23851574_2 (aper_in VARCHAR, built_used VARCHAR)
|
### question: How many nationalities/sponsors for mirror/type schmidt uv? ### answer: SELECT COUNT(nationality_sponsors) FROM table_23851574_2 WHERE mirror_type = "Schmidt UV" ### context: CREATE TABLE table_23851574_2 (nationality_sponsors VARCHAR, mirror_type VARCHAR)
|
### question: Which telescopes were sponsored by or originated in Belgium? ### answer: SELECT name FROM table_23851574_2 WHERE nationality_sponsors = "Belgium" ### context: CREATE TABLE table_23851574_2 (name VARCHAR, nationality_sponsors VARCHAR)
|
### question: What team finished in 4th place in 2007? ### answer: SELECT 4 AS th_place FROM table_2388763_1 WHERE year = 2007 ### context: CREATE TABLE table_2388763_1 (year VARCHAR)
|
### question: If the opponent is the Stampeders, what is the record? ### answer: SELECT record FROM table_23916539_3 WHERE opponent = "Stampeders" ### context: CREATE TABLE table_23916539_3 (record VARCHAR, opponent VARCHAR)
|
### question: What is the record if the location is Clarke Stadium? ### answer: SELECT record FROM table_23916539_3 WHERE location = "Clarke Stadium" ### context: CREATE TABLE table_23916539_3 (record VARCHAR, location VARCHAR)
|
### question: How many companies had an april 2013 cumulative ranking of 3? ### answer: SELECT COUNT(market_cap_march_15__mil_usd__) FROM table_23950611_2 WHERE april_2013_cum_rank = 3 ### context: CREATE TABLE table_23950611_2 (market_cap_march_15__mil_usd__ VARCHAR, april_2013_cum_rank VARCHAR)
|
### question: What was the Forbers rank (all companies) in 2012 for cenovus energy? ### answer: SELECT rank__all__2012 FROM table_23950611_2 WHERE name = "Cenovus Energy" ### context: CREATE TABLE table_23950611_2 (rank__all__2012 VARCHAR, name VARCHAR)
|
### question: How many assets in billions US$, for the company that ranked 1532 overall in 2013? ### answer: SELECT assets__bil_usd__ FROM table_23950611_2 WHERE rank__all__2013 = 1532 ### context: CREATE TABLE table_23950611_2 (assets__bil_usd__ VARCHAR, rank__all__2013 VARCHAR)
|
### question: How many companies named cenovus energy? ### answer: SELECT COUNT(rank__all__2013) FROM table_23950611_2 WHERE name = "Cenovus Energy" ### context: CREATE TABLE table_23950611_2 (rank__all__2013 VARCHAR, name VARCHAR)
|
### question: What was the French title of the story published in 1968? ### answer: SELECT french_title FROM table_23963073_1 WHERE date_of_publication = 1968 ### context: CREATE TABLE table_23963073_1 (french_title VARCHAR, date_of_publication VARCHAR)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.