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