combined_text
stringlengths
106
1.05k
###question:What is the 2006 census population when the area is 159?###answer:SELECT COUNT(census_2006_population) FROM table_28891101_3 WHERE area__km_2__ = 159###context:CREATE TABLE table_28891101_3 (census_2006_population VARCHAR, area__km_2__ VARCHAR)
###question:What is the area when the Iga name is Ahoada East?###answer:SELECT MAX(area__km_2__) FROM table_28891101_3 WHERE lga_name = "Ahoada East"###context:CREATE TABLE table_28891101_3 (area__km_2__ INTEGER, lga_name VARCHAR)
###question:What NHL team picked richard borgo?###answer:SELECT nhl_team FROM table_2897457_2 WHERE player = "Richard Borgo"###context:CREATE TABLE table_2897457_2 (nhl_team VARCHAR, player VARCHAR)
###question:What is the nationality of the draft pick player who plays centre position and is going to Calgary Flames?###answer:SELECT nationality FROM table_2897457_2 WHERE position = "Centre" AND nhl_team = "Calgary Flames"###context:CREATE TABLE table_2897457_2 (nationality VARCHAR, position VARCHAR, nhl_team VARCHA...
###question:What player came from Cornell University (NCAA)?###answer:SELECT player FROM table_2897457_2 WHERE college_junior_club_team = "Cornell University (NCAA)"###context:CREATE TABLE table_2897457_2 (player VARCHAR, college_junior_club_team VARCHAR)
###question:How many draft picks is player byron dafoe?###answer:SELECT COUNT(pick__number) FROM table_2897457_2 WHERE player = "Byron Dafoe"###context:CREATE TABLE table_2897457_2 (pick__number VARCHAR, player VARCHAR)
###question:What is the nationality of the player picked to go to Washington Capitals?###answer:SELECT nationality FROM table_2897457_2 WHERE nhl_team = "Washington Capitals"###context:CREATE TABLE table_2897457_2 (nationality VARCHAR, nhl_team VARCHAR)
###question:What player attended avon old farms (ushs-ct)?###answer:SELECT player FROM table_2897457_5 WHERE college_junior_club_team = "Avon Old Farms (USHS-CT)"###context:CREATE TABLE table_2897457_5 (player VARCHAR, college_junior_club_team VARCHAR)
###question:What pick number was marc deschamps?###answer:SELECT pick__number FROM table_2897457_5 WHERE player = "Marc Deschamps"###context:CREATE TABLE table_2897457_5 (pick__number VARCHAR, player VARCHAR)
###question:What nationality is keith carney?###answer:SELECT nationality FROM table_2897457_5 WHERE player = "Keith Carney"###context:CREATE TABLE table_2897457_5 (nationality VARCHAR, player VARCHAR)
###question:What position did the #94 pick play?###answer:SELECT position FROM table_2897457_5 WHERE pick__number = 94###context:CREATE TABLE table_2897457_5 (position VARCHAR, pick__number VARCHAR)
###question:Which episode number saw 1.312 million U.S. Wviewers?###answer:SELECT no FROM table_29085880_1 WHERE us_viewers__million_ = "1.312"###context:CREATE TABLE table_29085880_1 (no VARCHAR, us_viewers__million_ VARCHAR)
###question:What is the title of the episode directed by Rich Correll and written by Dennis Rinsler?###answer:SELECT title FROM table_29102100_1 WHERE directed_by = "Rich Correll" AND written_by = "Dennis Rinsler"###context:CREATE TABLE table_29102100_1 (title VARCHAR, directed_by VARCHAR, written_by VARCHAR)
###question:What number episode in the season had a production code of 334?###answer:SELECT MAX(season__number) FROM table_29102100_1 WHERE prod_code = 334###context:CREATE TABLE table_29102100_1 (season__number INTEGER, prod_code VARCHAR)
###question:What was the production code of the episode directed by Rondell Sheridan? ###answer:SELECT MAX(prod_code) FROM table_29102100_1 WHERE directed_by = "Rondell Sheridan"###context:CREATE TABLE table_29102100_1 (prod_code INTEGER, directed_by VARCHAR)
###question:in how many dates the opponen in the final was rushmi chakravarthi###answer:SELECT COUNT(date) FROM table_29127804_3 WHERE opponent_in_the_final = "Rushmi Chakravarthi"###context:CREATE TABLE table_29127804_3 (date VARCHAR, opponent_in_the_final VARCHAR)
###question:what is the name of the tournament where outcome is runner-up###answer:SELECT tournament FROM table_29127804_3 WHERE outcome = "Runner-up"###context:CREATE TABLE table_29127804_3 (tournament VARCHAR, outcome VARCHAR)
###question:what is the material of the surface in the dehradun , uttarakhand, india location###answer:SELECT surface FROM table_29127804_3 WHERE location = "Dehradun , Uttarakhand, India"###context:CREATE TABLE table_29127804_3 (surface VARCHAR, location VARCHAR)
###question:what is the material of the surface in noida , uttar pradesh, india###answer:SELECT surface FROM table_29127804_3 WHERE location = "Noida , Uttar Pradesh, India"###context:CREATE TABLE table_29127804_3 (surface VARCHAR, location VARCHAR)
###question:what is the date of the game played in the bangalore , karnataka, india location###answer:SELECT date FROM table_29127804_3 WHERE location = "Bangalore , Karnataka, India"###context:CREATE TABLE table_29127804_3 (date VARCHAR, location VARCHAR)
###question:What is the destination when the train number is 16526?###answer:SELECT destination FROM table_29202276_2 WHERE train_number = 16526###context:CREATE TABLE table_29202276_2 (destination VARCHAR, train_number VARCHAR)
###question:What is the origin when the destination is Mumbai?###answer:SELECT origin FROM table_29202276_2 WHERE destination = "Mumbai"###context:CREATE TABLE table_29202276_2 (origin VARCHAR, destination VARCHAR)
###question:What is the route/via when the destination is listed as Madurai?###answer:SELECT route_via FROM table_29202276_2 WHERE destination = "Madurai"###context:CREATE TABLE table_29202276_2 (route_via VARCHAR, destination VARCHAR)
###question:What is the route/via when the train name is Parasuram Express?###answer:SELECT route_via FROM table_29202276_2 WHERE train_name = "Parasuram Express"###context:CREATE TABLE table_29202276_2 (route_via VARCHAR, train_name VARCHAR)
###question:What is the train number when the time is 10:38?###answer:SELECT MAX(train_number) FROM table_29202276_2 WHERE time = "10:38"###context:CREATE TABLE table_29202276_2 (train_number INTEGER, time VARCHAR)
###question:What is the Thurs 2 June time for the rider with a Fri 3 June time of 17' 36.58 128.554mph?###answer:SELECT thurs_2_june FROM table_29218221_1 WHERE fri_3_june = "17' 36.58 128.554mph"###context:CREATE TABLE table_29218221_1 (thurs_2_june VARCHAR, fri_3_june VARCHAR)
###question:What is the Mon 30 May time for the rider whose Fri 3 June time was 17' 13.46 131.431mph?###answer:SELECT mon_30_may FROM table_29218221_1 WHERE fri_3_june = "17' 13.46 131.431mph"###context:CREATE TABLE table_29218221_1 (mon_30_may VARCHAR, fri_3_june VARCHAR)
###question:What is the Fri 3 June time for the rider whose Tues 31 May time was 19' 18.80 117.215mph?###answer:SELECT fri_3_june FROM table_29218221_1 WHERE tues_31_may = "19' 18.80 117.215mph"###context:CREATE TABLE table_29218221_1 (fri_3_june VARCHAR, tues_31_may VARCHAR)
###question:What is the Fri 3 June time for the rider with a Weds 1 June time of 18' 22.66 123.182mph?###answer:SELECT fri_3_june FROM table_29218221_2 WHERE wed_1_june = "18' 22.66 123.182mph"###context:CREATE TABLE table_29218221_2 (fri_3_june VARCHAR, wed_1_june VARCHAR)
###question:What is the rank of the rider whose Tues 31 May time was 19' 02.34 118.903mph?###answer:SELECT rank FROM table_29218221_2 WHERE tues_31_may = "19' 02.34 118.903mph"###context:CREATE TABLE table_29218221_2 (rank VARCHAR, tues_31_may VARCHAR)
###question:What is the number of riders that had a Tues 31 May time of 18' 55.91 124.236mph?###answer:SELECT COUNT(rider) FROM table_29218221_2 WHERE tues_31_may = "18' 55.91 124.236mph"###context:CREATE TABLE table_29218221_2 (rider VARCHAR, tues_31_may VARCHAR)
###question:Who was the rider with a Fri 3 June time of 18' 19.68 123.516mph?###answer:SELECT rider FROM table_29218221_2 WHERE fri_3_june = "18' 19.68 123.516mph"###context:CREATE TABLE table_29218221_2 (rider VARCHAR, fri_3_june VARCHAR)
###question:how many matches did the player that played 23 matches win###answer:SELECT MIN(matches_won) FROM table_29302711_12 WHERE matches_played = 23###context:CREATE TABLE table_29302711_12 (matches_won INTEGER, matches_played VARCHAR)
###question:how many countries had 21 points###answer:SELECT COUNT(country) FROM table_29302711_12 WHERE points = 21###context:CREATE TABLE table_29302711_12 (country VARCHAR, points VARCHAR)
###question:how much prize money (in USD) did bob lutz win###answer:SELECT MAX(prize_money__usd_) FROM table_29302711_12 WHERE name = "Bob Lutz"###context:CREATE TABLE table_29302711_12 (prize_money__usd_ INTEGER, name VARCHAR)
###question:how many matches did colin dibley win###answer:SELECT matches_won FROM table_29302711_12 WHERE name = "Colin Dibley"###context:CREATE TABLE table_29302711_12 (matches_won VARCHAR, name VARCHAR)
###question:What team hired Renato Gaúcho?###answer:SELECT team FROM table_29414946_3 WHERE replaced_by = "Renato Gaúcho"###context:CREATE TABLE table_29414946_3 (team VARCHAR, replaced_by VARCHAR)
###question:How many times did Silas leave as a team manager?###answer:SELECT COUNT(manner_of_departure) FROM table_29414946_3 WHERE outgoing_manager = "Silas"###context:CREATE TABLE table_29414946_3 (manner_of_departure VARCHAR, outgoing_manager VARCHAR)
###question:Why did Geninho leave as manager?###answer:SELECT manner_of_departure FROM table_29414946_3 WHERE outgoing_manager = "Geninho"###context:CREATE TABLE table_29414946_3 (manner_of_departure VARCHAR, outgoing_manager VARCHAR)
###question:Who was the new Santos manager?###answer:SELECT replaced_by FROM table_29414946_3 WHERE team = "Santos"###context:CREATE TABLE table_29414946_3 (replaced_by VARCHAR, team VARCHAR)
###question:Who was replaced as manager on June 20?###answer:SELECT outgoing_manager FROM table_29414946_3 WHERE date_of_appointment = "June 20"###context:CREATE TABLE table_29414946_3 (outgoing_manager VARCHAR, date_of_appointment VARCHAR)
###question:Who is the s color commentator when the pregame host is jon sciambi?###answer:SELECT s_color_commentator FROM table_2941848_10 WHERE pregame_hosts = "Jon Sciambi"###context:CREATE TABLE table_2941848_10 (s_color_commentator VARCHAR, pregame_hosts VARCHAR)
###question:Who is the pregame host when the pregame analysts is Dave Campbell and the year is 2001?###answer:SELECT pregame_hosts FROM table_2941848_10 WHERE pregame_analysts = "Dave Campbell" AND year = 2001###context:CREATE TABLE table_2941848_10 (pregame_hosts VARCHAR, pregame_analysts VARCHAR, year VARCHAR)
###question:How many networks are listed when the year is 2008?###answer:SELECT COUNT(network) FROM table_2941848_10 WHERE year = 2008###context:CREATE TABLE table_2941848_10 (network VARCHAR, year VARCHAR)
###question:What is the original air date of the episode with production code is 319?###answer:SELECT original_air_date FROM table_29436059_1 WHERE production_code = 319###context:CREATE TABLE table_29436059_1 (original_air_date VARCHAR, production_code VARCHAR)
###question:What is the title of episode 10?###answer:SELECT title FROM table_29436059_1 WHERE no_in_season = 10###context:CREATE TABLE table_29436059_1 (title VARCHAR, no_in_season VARCHAR)
###question:What was the position of the player with 57 goals?###answer:SELECT position FROM table_29483890_1 WHERE goals = 57###context:CREATE TABLE table_29483890_1 (position VARCHAR, goals VARCHAR)
###question:What is the title of book number 7?###answer:SELECT title FROM table_2950964_1 WHERE _number = "7"###context:CREATE TABLE table_2950964_1 (title VARCHAR, _number VARCHAR)
###question:What is the title of book number 8?###answer:SELECT title FROM table_2950964_1 WHERE _number = "8"###context:CREATE TABLE table_2950964_1 (title VARCHAR, _number VARCHAR)
###question:What is the publication date of the book that is narrated by Michael Maloney?###answer:SELECT published FROM table_2950964_1 WHERE audiobook_narrator = "Michael Maloney"###context:CREATE TABLE table_2950964_1 (published VARCHAR, audiobook_narrator VARCHAR)
###question:What is the title of ISBN 1-84990-243-7?###answer:SELECT title FROM table_2950964_1 WHERE isbn = "isbn 1-84990-243-7"###context:CREATE TABLE table_2950964_1 (title VARCHAR, isbn VARCHAR)
###question:Who are the featuring companions of number 3?###answer:SELECT featuring_companion FROM table_2950964_1 WHERE _number = "3"###context:CREATE TABLE table_2950964_1 (featuring_companion VARCHAR, _number VARCHAR)
###question:What was the time of the games that took place at the cassell coliseum • blacksburg, va?###answer:SELECT time FROM table_29535057_4 WHERE location = "Cassell Coliseum • Blacksburg, VA"###context:CREATE TABLE table_29535057_4 (time VARCHAR, location VARCHAR)
###question:How many challenge leaders were there of the games won by virginia (87-79)?###answer:SELECT COUNT(challenge_leader) FROM table_29535057_4 WHERE winner = "Virginia (87-79)"###context:CREATE TABLE table_29535057_4 (challenge_leader VARCHAR, winner VARCHAR)
###question:Who were the challenge leaders of the games won by boston college (88-76)?###answer:SELECT challenge_leader FROM table_29535057_4 WHERE winner = "Boston College (88-76)"###context:CREATE TABLE table_29535057_4 (challenge_leader VARCHAR, winner VARCHAR)
###question:Where did the games that had Wake Forest as Acc Team take place?###answer:SELECT location FROM table_29535057_4 WHERE acc_team = "Wake Forest"###context:CREATE TABLE table_29535057_4 (location VARCHAR, acc_team VARCHAR)
###question:Where did the games that had Wisconsin as big ten team take place?###answer:SELECT location FROM table_29535057_4 WHERE big_ten_team = "Wisconsin"###context:CREATE TABLE table_29535057_4 (location VARCHAR, big_ten_team VARCHAR)
###question:Who had the most assists and how many did they have on January 5?###answer:SELECT high_assists FROM table_29556461_7 WHERE date = "January 5"###context:CREATE TABLE table_29556461_7 (high_assists VARCHAR, date VARCHAR)
###question:What team was Temple playing on January 19?###answer:SELECT team FROM table_29556461_7 WHERE date = "January 19"###context:CREATE TABLE table_29556461_7 (team VARCHAR, date VARCHAR)
###question:How many different combinations of team colors are there in all the schools in Maroa, Illinois?###answer:SELECT COUNT(colors) FROM table_29612224_1 WHERE location = "Maroa, Illinois"###context:CREATE TABLE table_29612224_1 (colors VARCHAR, location VARCHAR)
###question:What's the website of the school in Macon, Illinois?###answer:SELECT school_website FROM table_29612224_1 WHERE location = "Macon, Illinois"###context:CREATE TABLE table_29612224_1 (school_website VARCHAR, location VARCHAR)
###question:What are the team colors from Tolono, Illinois?###answer:SELECT colors FROM table_29612224_1 WHERE location = "Tolono, Illinois"###context:CREATE TABLE table_29612224_1 (colors VARCHAR, location VARCHAR)
###question:What's the name of the city or town of the school that operates the http://www.mfschools.org/high/ website?###answer:SELECT institution FROM table_29612224_1 WHERE school_website = "http://www.mfschools.org/high/"###context:CREATE TABLE table_29612224_1 (institution VARCHAR, school_website VARCHAR)
###question:Who had the fastest lap(s) when stefan wilson had the pole?###answer:SELECT fastest_lap FROM table_29690363_3 WHERE pole_position = "Stefan Wilson"###context:CREATE TABLE table_29690363_3 (fastest_lap VARCHAR, pole_position VARCHAR)
###question:Who had the fastest lap(s) when josef newgarden led the most laps at edmonton?###answer:SELECT fastest_lap FROM table_29690363_3 WHERE most_laps_led = "Josef Newgarden" AND race = "Edmonton"###context:CREATE TABLE table_29690363_3 (fastest_lap VARCHAR, most_laps_led VARCHAR, race VARCHAR)
###question:Who had the pole(s) when esteban guerrieri led the most laps round 8a and josef newgarden had the fastest lap?###answer:SELECT pole_position FROM table_29690363_3 WHERE most_laps_led = "Esteban Guerrieri" AND fastest_lap = "Josef Newgarden" AND rd = "8A"###context:CREATE TABLE table_29690363_3 (pole_positio...
###question:Who led the most laps when brandon wagner had the fastest lap?###answer:SELECT most_laps_led FROM table_29690363_3 WHERE fastest_lap = "Brandon Wagner"###context:CREATE TABLE table_29690363_3 (most_laps_led VARCHAR, fastest_lap VARCHAR)
###question:What race did josef newgarden have the fastest lap and lead the most laps?###answer:SELECT race FROM table_29690363_3 WHERE fastest_lap = "Josef Newgarden" AND most_laps_led = "Josef Newgarden"###context:CREATE TABLE table_29690363_3 (race VARCHAR, fastest_lap VARCHAR, most_laps_led VARCHAR)
###question:What is the lowest overall amount of shutouts?###answer:SELECT MIN(shutouts) FROM table_29743928_4###context:CREATE TABLE table_29743928_4 (shutouts INTEGER)
###question:When chase harrison category:articles with hcards is the name what is the year?###answer:SELECT years FROM table_29743928_4 WHERE name = "Chase Harrison Category:Articles with hCards"###context:CREATE TABLE table_29743928_4 (years VARCHAR, name VARCHAR)
###question:When chris konopka category:articles with hcards is the name what is the year?###answer:SELECT years FROM table_29743928_4 WHERE name = "Chris Konopka Category:Articles with hCards"###context:CREATE TABLE table_29743928_4 (years VARCHAR, name VARCHAR)
###question:When 2010 is the year what is the game?###answer:SELECT games FROM table_29743928_4 WHERE years = "2010"###context:CREATE TABLE table_29743928_4 (games VARCHAR, years VARCHAR)
###question:Which song was chosen during the audition week?###answer:SELECT song_choice FROM table_29756040_1 WHERE week__number = "Audition"###context:CREATE TABLE table_29756040_1 (song_choice VARCHAR, week__number VARCHAR)
###question:What are all the order #s from the week "top 6"?###answer:SELECT order__number FROM table_29756040_1 WHERE week__number = "Top 6"###context:CREATE TABLE table_29756040_1 (order__number VARCHAR, week__number VARCHAR)
###question:Which artists have order # 1?###answer:SELECT original_artist FROM table_29756040_1 WHERE order__number = "1"###context:CREATE TABLE table_29756040_1 (original_artist VARCHAR, order__number VARCHAR)
###question:Which artists have order number 6?###answer:SELECT original_artist FROM table_29756040_1 WHERE order__number = "6"###context:CREATE TABLE table_29756040_1 (original_artist VARCHAR, order__number VARCHAR)
###question:what is the name of the episode directed by james bobin###answer:SELECT title FROM table_29803475_3 WHERE directed_by = "James Bobin"###context:CREATE TABLE table_29803475_3 (title VARCHAR, directed_by VARCHAR)
###question:who directed the episode that have 0.25 million u.s viewers###answer:SELECT directed_by FROM table_29803475_3 WHERE us_viewers__million_ = "0.25"###context:CREATE TABLE table_29803475_3 (directed_by VARCHAR, us_viewers__million_ VARCHAR)
###question:what is the official rating 16-39 for the episode with a 16-39 share of 22,77%?###answer:SELECT official_rating_16_39 FROM table_29804176_23 WHERE share_16_39 = "22,77%"###context:CREATE TABLE table_29804176_23 (official_rating_16_39 VARCHAR, share_16_39 VARCHAR)
###question:What university was Kevan George affiliated with?###answer:SELECT affiliation FROM table_29836557_2 WHERE player = "Kevan George"###context:CREATE TABLE table_29836557_2 (affiliation VARCHAR, player VARCHAR)
###question:What pick number did Real Salt Lake get?###answer:SELECT MIN(pick__number) FROM table_29836557_2 WHERE mls_team = "Real Salt Lake"###context:CREATE TABLE table_29836557_2 (pick__number INTEGER, mls_team VARCHAR)
###question:What pick number is Kevan George?###answer:SELECT pick__number FROM table_29836557_2 WHERE player = "Kevan George"###context:CREATE TABLE table_29836557_2 (pick__number VARCHAR, player VARCHAR)
###question:Who was pick number 34?###answer:SELECT player FROM table_29836557_2 WHERE pick__number = 34###context:CREATE TABLE table_29836557_2 (player VARCHAR, pick__number VARCHAR)
###question:What MLS team picked Babayele Sodade?###answer:SELECT mls_team FROM table_29836557_2 WHERE player = "Babayele Sodade"###context:CREATE TABLE table_29836557_2 (mls_team VARCHAR, player VARCHAR)
###question:What is the international use of the 1 единица flag?###answer:SELECT international_use FROM table_29997112_3 WHERE flag_name = "1 единица"###context:CREATE TABLE table_29997112_3 (international_use VARCHAR, flag_name VARCHAR)
###question:What is the name of the flag that means decimal digit 2?###answer:SELECT flag_name FROM table_29997112_3 WHERE meaning = "Decimal Digit 2"###context:CREATE TABLE table_29997112_3 (flag_name VARCHAR, meaning VARCHAR)
###question:How many different descriptions are there for the flag that means decimal digit 2?###answer:SELECT COUNT(description) FROM table_29997112_3 WHERE meaning = "Decimal Digit 2"###context:CREATE TABLE table_29997112_3 (description VARCHAR, meaning VARCHAR)
###question:What are the meanings of the flag whose name transliterates to dvojka?###answer:SELECT meaning FROM table_29997112_3 WHERE transliteration = "dvojka"###context:CREATE TABLE table_29997112_3 (meaning VARCHAR, transliteration VARCHAR)
###question:What are the meanings of the flag whose name transliterates to semërka?###answer:SELECT meaning FROM table_29997112_3 WHERE transliteration = "semërka"###context:CREATE TABLE table_29997112_3 (meaning VARCHAR, transliteration VARCHAR)
###question:How many 3rd runner up values does Turkey have?###answer:SELECT COUNT(3 AS rd_runner_up) FROM table_30007801_1 WHERE country_territory = "Turkey"###context:CREATE TABLE table_30007801_1 (country_territory VARCHAR)
###question:What is the smallest 1st runner up value?###answer:SELECT MIN(1 AS st_runner_up) FROM table_30007801_1###context:CREATE TABLE table_30007801_1 (Id VARCHAR)
###question:What is the number of 1st runner up values for Jamaica?###answer:SELECT COUNT(1 AS st_runner_up) FROM table_30007801_1 WHERE country_territory = "Jamaica"###context:CREATE TABLE table_30007801_1 (country_territory VARCHAR)
###question:What is the US air date when the director is ken girotti?###answer:SELECT us_air_date FROM table_30012404_4 WHERE directed_by = "Ken Girotti"###context:CREATE TABLE table_30012404_4 (us_air_date VARCHAR, directed_by VARCHAR)
###question:What is the canadian air date when the US air date is 24 august 2012?###answer:SELECT canadian_air_date FROM table_30012404_4 WHERE us_air_date = "24 August 2012"###context:CREATE TABLE table_30012404_4 (canadian_air_date VARCHAR, us_air_date VARCHAR)
###question:What is the series # when the US air date is 20 July 2012?###answer:SELECT MIN(series__number) FROM table_30012404_4 WHERE us_air_date = "20 July 2012"###context:CREATE TABLE table_30012404_4 (series__number INTEGER, us_air_date VARCHAR)
###question:How many games had they won or lost in a row on May 9?###answer:SELECT streak FROM table_30047613_13 WHERE date = "May 9"###context:CREATE TABLE table_30047613_13 (streak VARCHAR, date VARCHAR)
###question:What is every entry for Tuesday August 23 when Thursday August 25 is 24' 31.87 92.282mph?###answer:SELECT tues_23_aug FROM table_30058355_3 WHERE thurs_25_aug = "24' 31.87 92.282mph"###context:CREATE TABLE table_30058355_3 (tues_23_aug VARCHAR, thurs_25_aug VARCHAR)
###question:What is every value on Thursday August 25 for rank 3?###answer:SELECT thurs_25_aug FROM table_30058355_3 WHERE rank = 3###context:CREATE TABLE table_30058355_3 (thurs_25_aug VARCHAR, rank VARCHAR)
###question:What is every entry on Monday August 22 when the entry for Wednesday August 24 is 22' 50.05 99.141mph?###answer:SELECT mon_22_aug FROM table_30058355_3 WHERE wed_24_aug = "22' 50.05 99.141mph"###context:CREATE TABLE table_30058355_3 (mon_22_aug VARCHAR, wed_24_aug VARCHAR)
###question:What is every entry for Friday August 26 if the entry for Monday August 22 is 32' 25.72 69.809mph?###answer:SELECT fri_26_aug FROM table_30058355_3 WHERE mon_22_aug = "32' 25.72 69.809mph"###context:CREATE TABLE table_30058355_3 (fri_26_aug VARCHAR, mon_22_aug VARCHAR)