combined_text stringlengths 106 1.05k |
|---|
###question:What Album has a Year that's larger than 2001?###answer:SELECT album FROM table_name_39 WHERE year > 2001###context:CREATE TABLE table_name_39 (album VARCHAR, year INTEGER) |
###question:What is the lowest position for bruce taylor?###answer:SELECT MIN(position) FROM table_name_6 WHERE pilot = "bruce taylor"###context:CREATE TABLE table_name_6 (position INTEGER, pilot VARCHAR) |
###question:Which pilot has a position above 5 and a speed of 118.8km/h?###answer:SELECT pilot FROM table_name_98 WHERE position > 5 AND speed = "118.8km/h"###context:CREATE TABLE table_name_98 (pilot VARCHAR, position VARCHAR, speed VARCHAR) |
###question:What is Erwin Sommer's average position?###answer:SELECT AVG(position) FROM table_name_18 WHERE pilot = "erwin sommer"###context:CREATE TABLE table_name_18 (position INTEGER, pilot VARCHAR) |
###question:What is the highest rank of the day with a gross of $38,916 and more than 6 screens?###answer:SELECT MAX(rank) FROM table_name_27 WHERE gross = "$38,916" AND screens > 6###context:CREATE TABLE table_name_27 (rank INTEGER, gross VARCHAR, screens VARCHAR) |
###question:What is the gross in the United Kingdom?###answer:SELECT gross FROM table_name_33 WHERE territory = "united kingdom"###context:CREATE TABLE table_name_33 (gross VARCHAR, territory VARCHAR) |
###question:What is the territory with 17 screens?###answer:SELECT territory FROM table_name_91 WHERE screens = 17###context:CREATE TABLE table_name_91 (territory VARCHAR, screens VARCHAR) |
###question:What is the lowest number of Golds that has Participants smaller than 14, and Rank of 1, and Total larger than 1?###answer:SELECT MIN(gold) FROM table_name_1 WHERE participants < 14 AND rank = 1 AND total > 1###context:CREATE TABLE table_name_1 (gold INTEGER, total VARCHAR, participants VARCHAR, rank VARCHA... |
###question:On what date was the record 39–54?###answer:SELECT date FROM table_name_69 WHERE record = "39–54"###context:CREATE TABLE table_name_69 (date VARCHAR, record VARCHAR) |
###question:What was the record on July 1?###answer:SELECT record FROM table_name_58 WHERE date = "july 1"###context:CREATE TABLE table_name_58 (record VARCHAR, date VARCHAR) |
###question:How many total matches with less than 1 win and a position higher than 8?###answer:SELECT SUM(matches) FROM table_name_13 WHERE wins < 1 AND pos > 8###context:CREATE TABLE table_name_13 (matches INTEGER, wins VARCHAR, pos VARCHAR) |
###question:Which Liberal leader has Seats won smaller than 100, and Seats in House of 215, and a % of popular vote of 43.1%?###answer:SELECT liberal_leader FROM table_name_86 WHERE seats_won < 100 AND seats_in_house = 215 AND _percentage_of_popular_vote = "43.1%"###context:CREATE TABLE table_name_86 (liberal_leader VA... |
###question:Which Popular vote has a Liberal leader of king, and Seats won larger than 116, and a Year of 1921?###answer:SELECT AVG(popular_vote) FROM table_name_32 WHERE liberal_leader = "king" AND seats_won > 116 AND year = "1921"###context:CREATE TABLE table_name_32 (popular_vote INTEGER, year VARCHAR, liberal_leade... |
###question:How many Liberal candidates have a Liberal leader of pearson, and a % of popular vote of 40.2%, and Seats won smaller than 131?###answer:SELECT COUNT(liberal_candidates) FROM table_name_94 WHERE liberal_leader = "pearson" AND _percentage_of_popular_vote = "40.2%" AND seats_won < 131###context:CREATE TABLE t... |
###question:What is the score during the 2006-2007 year?###answer:SELECT score FROM table_name_81 WHERE year = "2006-2007"###context:CREATE TABLE table_name_81 (score VARCHAR, year VARCHAR) |
###question:Who were the winners in 2010-2011?###answer:SELECT winners FROM table_name_4 WHERE year = "2010-2011"###context:CREATE TABLE table_name_4 (winners VARCHAR, year VARCHAR) |
###question:What is the score of the match with UTC as the runner-up and Saint-Gaudens Bears as the winners?###answer:SELECT score FROM table_name_77 WHERE runner_up = "utc" AND winners = "saint-gaudens bears"###context:CREATE TABLE table_name_77 (score VARCHAR, runner_up VARCHAR, winners VARCHAR) |
###question:Which year had UTC as the runner-up and Saint-Gaudens Bears as the winners?###answer:SELECT year FROM table_name_3 WHERE runner_up = "utc" AND winners = "saint-gaudens bears"###context:CREATE TABLE table_name_3 (year VARCHAR, runner_up VARCHAR, winners VARCHAR) |
###question:What is the venue of the match with a score of 33-22?###answer:SELECT venue FROM table_name_45 WHERE score = "33-22"###context:CREATE TABLE table_name_45 (venue VARCHAR, score VARCHAR) |
###question:Who had the highest assists during the game on February 22?###answer:SELECT high_assists FROM table_name_28 WHERE date = "february 22"###context:CREATE TABLE table_name_28 (high_assists VARCHAR, date VARCHAR) |
###question:What team did the Heat play against at the TD Waterhouse Centre?###answer:SELECT team FROM table_name_55 WHERE location_attendance = "td waterhouse centre"###context:CREATE TABLE table_name_55 (team VARCHAR, location_attendance VARCHAR) |
###question:What date was the game against Toronto which had a game number higher than 53?###answer:SELECT date FROM table_name_68 WHERE game > 53 AND team = "toronto"###context:CREATE TABLE table_name_68 (date VARCHAR, game VARCHAR, team VARCHAR) |
###question:What is the date of the that was played with the Baltimore Colts at home?###answer:SELECT date FROM table_name_94 WHERE home_team = "baltimore colts"###context:CREATE TABLE table_name_94 (date VARCHAR, home_team VARCHAR) |
###question:How long did the game go that was played with the Houston Oilers at home?###answer:SELECT length_of_game FROM table_name_31 WHERE home_team = "houston oilers"###context:CREATE TABLE table_name_31 (length_of_game VARCHAR, home_team VARCHAR) |
###question:What was the date of the game that lasted 75:43?###answer:SELECT date FROM table_name_93 WHERE length_of_game = "75:43"###context:CREATE TABLE table_name_93 (date VARCHAR, length_of_game VARCHAR) |
###question:Who is the away team for the game played on December 24, 1977?###answer:SELECT away_team FROM table_name_78 WHERE date = "december 24, 1977"###context:CREATE TABLE table_name_78 (away_team VARCHAR, date VARCHAR) |
###question:What was the length of the game where the Baltimore Colts were at home?###answer:SELECT length_of_game FROM table_name_95 WHERE home_team = "baltimore colts"###context:CREATE TABLE table_name_95 (length_of_game VARCHAR, home_team VARCHAR) |
###question:What's the number of laps for 16 grids?###answer:SELECT SUM(laps) FROM table_name_36 WHERE grid = 16###context:CREATE TABLE table_name_36 (laps INTEGER, grid VARCHAR) |
###question:Who was the rider for laps less than 23 with grid greater than 21 that had a time of +1 lap?###answer:SELECT rider FROM table_name_71 WHERE laps < 23 AND grid > 21 AND time_retired = "+1 lap"###context:CREATE TABLE table_name_71 (rider VARCHAR, time_retired VARCHAR, laps VARCHAR, grid VARCHAR) |
###question:What's the total grid for someone with a time/retire of +44.831###answer:SELECT COUNT(grid) FROM table_name_26 WHERE time_retired = "+44.831"###context:CREATE TABLE table_name_26 (grid VARCHAR, time_retired VARCHAR) |
###question:What's the smallest grid for Time/Retired of +22.687?###answer:SELECT MIN(grid) FROM table_name_52 WHERE time_retired = "+22.687"###context:CREATE TABLE table_name_52 (grid INTEGER, time_retired VARCHAR) |
###question:What is the recoupa sudaamericana 1996 result of team flamengo, which did not qualify for the copa conmebol 1996?###answer:SELECT recopa_sudamericana_1996 FROM table_name_10 WHERE copa_conmebol_1996 = "did not qualify" AND team = "flamengo"###context:CREATE TABLE table_name_10 (recopa_sudamericana_1996 VARC... |
###question:What is the copa libertadores 1996 result of the team with a copa conmebol 1996 result of quarterfinals?###answer:SELECT copa_libertadores_1996 FROM table_name_84 WHERE copa_conmebol_1996 = "quarterfinals"###context:CREATE TABLE table_name_84 (copa_libertadores_1996 VARCHAR, copa_conmebol_1996 VARCHAR) |
###question:What is the copa libertadores 1996 of team corinthians?###answer:SELECT copa_libertadores_1996 FROM table_name_32 WHERE team = "corinthians"###context:CREATE TABLE table_name_32 (copa_libertadores_1996 VARCHAR, team VARCHAR) |
###question:What is the copa conmebol 1996 result of the team with a recopa sudamericana 1996 result of champions?###answer:SELECT copa_conmebol_1996 FROM table_name_49 WHERE recopa_sudamericana_1996 = "champions"###context:CREATE TABLE table_name_49 (copa_conmebol_1996 VARCHAR, recopa_sudamericana_1996 VARCHAR) |
###question:What is the recoupa sudamericana 1996 of the team with a copa libertadores 1996 result of the round of 16?###answer:SELECT recopa_sudamericana_1996 FROM table_name_64 WHERE copa_libertadores_1996 = "round of 16"###context:CREATE TABLE table_name_64 (recopa_sudamericana_1996 VARCHAR, copa_libertadores_1996 V... |
###question:What is the recoupa sudamericana 1996 result of team corinthians?###answer:SELECT recopa_sudamericana_1996 FROM table_name_7 WHERE team = "corinthians"###context:CREATE TABLE table_name_7 (recopa_sudamericana_1996 VARCHAR, team VARCHAR) |
###question:What season has 195 runs as a margin?###answer:SELECT season FROM table_name_90 WHERE margin = "195 runs"###context:CREATE TABLE table_name_90 (season VARCHAR, margin VARCHAR) |
###question:What season has 2 as a rank?###answer:SELECT season FROM table_name_18 WHERE rank = "2"###context:CREATE TABLE table_name_18 (season VARCHAR, rank VARCHAR) |
###question:What venue has 2 as the rank?###answer:SELECT venue FROM table_name_75 WHERE rank = "2"###context:CREATE TABLE table_name_75 (venue VARCHAR, rank VARCHAR) |
###question:What opponent has 2011/12 as the season?###answer:SELECT opponent FROM table_name_79 WHERE season = "2011/12"###context:CREATE TABLE table_name_79 (opponent VARCHAR, season VARCHAR) |
###question:What is the length of the version from 2003?###answer:SELECT length FROM table_name_3 WHERE year = 2003###context:CREATE TABLE table_name_3 (length VARCHAR, year VARCHAR) |
###question:Who remixed the version with a length of 4:22?###answer:SELECT remixed_by FROM table_name_67 WHERE length = "4:22"###context:CREATE TABLE table_name_67 (remixed_by VARCHAR, length VARCHAR) |
###question:What is the length of the UK remix version?###answer:SELECT length FROM table_name_68 WHERE version = "uk remix"###context:CREATE TABLE table_name_68 (length VARCHAR, version VARCHAR) |
###question:What year was the version with a remixes album?###answer:SELECT year FROM table_name_76 WHERE album = "remixes"###context:CREATE TABLE table_name_76 (year VARCHAR, album VARCHAR) |
###question:How many losses did the team, Sturt, have when they had more than 0 wins?###answer:SELECT COUNT(losses) FROM table_name_85 WHERE team = "sturt" AND wins > 0###context:CREATE TABLE table_name_85 (losses VARCHAR, team VARCHAR, wins VARCHAR) |
###question:What is the average number of draws for the team that had more than 0 wins?###answer:SELECT AVG(draws) FROM table_name_13 WHERE wins > 0###context:CREATE TABLE table_name_13 (draws INTEGER, wins INTEGER) |
###question:What is the least amount of losses for the team that had more than 0 draws during the seasons earlier than 1926?###answer:SELECT MIN(losses) FROM table_name_13 WHERE draws > 0 AND season < 1926###context:CREATE TABLE table_name_13 (losses INTEGER, draws VARCHAR, season VARCHAR) |
###question:What is the highest number of wins for the team, Central District, who had less than 0 draws and took place during a season before 1995?###answer:SELECT MAX(wins) FROM table_name_63 WHERE season < 1995 AND team = "central district" AND draws < 0###context:CREATE TABLE table_name_63 (wins INTEGER, draws VARC... |
###question:What is the average number of wins before the season in 1906 where there were 0 draws?###answer:SELECT AVG(wins) FROM table_name_72 WHERE season < 1906 AND draws < 0###context:CREATE TABLE table_name_72 (wins INTEGER, season VARCHAR, draws VARCHAR) |
###question:Who is the Opposing Pitcher when Team is phillies, Location is pittsburgh, and Inning is 8th?###answer:SELECT opposing_pitcher FROM table_name_37 WHERE team = "phillies" AND location = "pittsburgh" AND inning = "8th"###context:CREATE TABLE table_name_37 (opposing_pitcher VARCHAR, inning VARCHAR, team VARCHA... |
###question:What is the lowest Game where Inning is 6th, and the Opposing Pitcher is cliff curtis?###answer:SELECT MIN(game) FROM table_name_14 WHERE inning = "6th" AND opposing_pitcher = "cliff curtis"###context:CREATE TABLE table_name_14 (game INTEGER, inning VARCHAR, opposing_pitcher VARCHAR) |
###question:What is was Date that where Triple was smaller than 26, and Game was 25?###answer:SELECT date FROM table_name_84 WHERE triple < 26 AND game = 25###context:CREATE TABLE table_name_84 (date VARCHAR, triple VARCHAR, game VARCHAR) |
###question:Which Gold is the lowest one that has a Bronze of 14, and a Total larger than 42?###answer:SELECT MIN(gold) FROM table_name_47 WHERE bronze = 14 AND total > 42###context:CREATE TABLE table_name_47 (gold INTEGER, bronze VARCHAR, total VARCHAR) |
###question:Which Bronze is the lowest one that has a Nation of total, and a Gold smaller than 14?###answer:SELECT MIN(bronze) FROM table_name_38 WHERE nation = "total" AND gold < 14###context:CREATE TABLE table_name_38 (bronze INTEGER, nation VARCHAR, gold VARCHAR) |
###question:How much Total has a Nation of kazakhstan (kaz), and a Gold larger than 0?###answer:SELECT COUNT(total) FROM table_name_16 WHERE nation = "kazakhstan (kaz)" AND gold > 0###context:CREATE TABLE table_name_16 (total VARCHAR, nation VARCHAR, gold VARCHAR) |
###question:Which Total is the highest one that has a Rank of 1, and a Gold larger than 11?###answer:SELECT MAX(total) FROM table_name_24 WHERE rank = "1" AND gold > 11###context:CREATE TABLE table_name_24 (total INTEGER, rank VARCHAR, gold VARCHAR) |
###question:Who finished 3rd in Oslo?###answer:SELECT third FROM table_name_74 WHERE venue = "oslo"###context:CREATE TABLE table_name_74 (third VARCHAR, venue VARCHAR) |
###question:On November 22, what were the results of the friendly type game?###answer:SELECT results¹ FROM table_name_99 WHERE type_of_game = "friendly" AND date = "november 22"###context:CREATE TABLE table_name_99 (results¹ VARCHAR, type_of_game VARCHAR, date VARCHAR) |
###question:On October 8, what city was the game played?###answer:SELECT city FROM table_name_82 WHERE date = "october 8"###context:CREATE TABLE table_name_82 (city VARCHAR, date VARCHAR) |
###question:On June 29, who was the opponent?###answer:SELECT opponent FROM table_name_96 WHERE date = "june 29"###context:CREATE TABLE table_name_96 (opponent VARCHAR, date VARCHAR) |
###question:What date had an opponent of Sweden and a friendly type game?###answer:SELECT date FROM table_name_44 WHERE type_of_game = "friendly" AND opponent = "sweden"###context:CREATE TABLE table_name_44 (date VARCHAR, type_of_game VARCHAR, opponent VARCHAR) |
###question:What were the results on September 7?###answer:SELECT results¹ FROM table_name_31 WHERE date = "september 7"###context:CREATE TABLE table_name_31 (results¹ VARCHAR, date VARCHAR) |
###question:What is the Winning team on january 28, 2006?###answer:SELECT winning_team FROM table_name_35 WHERE date = "january 28, 2006"###context:CREATE TABLE table_name_35 (winning_team VARCHAR, date VARCHAR) |
###question:Which Series has a Winning team of iowa state and a Sport of w basketball?###answer:SELECT series FROM table_name_54 WHERE winning_team = "iowa state" AND sport = "w basketball"###context:CREATE TABLE table_name_54 (series VARCHAR, winning_team VARCHAR, sport VARCHAR) |
###question:Which Series has a Site of ames on september 10, 2005?###answer:SELECT series FROM table_name_90 WHERE site = "ames" AND date = "september 10, 2005"###context:CREATE TABLE table_name_90 (series VARCHAR, site VARCHAR, date VARCHAR) |
###question:Which Series has a Site of ames and a Sport of w gymnastics?###answer:SELECT series FROM table_name_13 WHERE site = "ames" AND sport = "w gymnastics"###context:CREATE TABLE table_name_13 (series VARCHAR, site VARCHAR, sport VARCHAR) |
###question:WHich port is on march 17, 2006 and has a Winning team of iowa state?###answer:SELECT sport FROM table_name_70 WHERE date = "march 17, 2006" AND winning_team = "iowa state"###context:CREATE TABLE table_name_70 (sport VARCHAR, date VARCHAR, winning_team VARCHAR) |
###question:Which Site has a Date of march 17, 2006 and an iowa state Winning team?###answer:SELECT site FROM table_name_40 WHERE date = "march 17, 2006" AND winning_team = "iowa state"###context:CREATE TABLE table_name_40 (site VARCHAR, date VARCHAR, winning_team VARCHAR) |
###question:Who was the opponent of the game before week 11 on October 31, 1976?###answer:SELECT opponent FROM table_name_97 WHERE week < 11 AND date = "october 31, 1976"###context:CREATE TABLE table_name_97 (opponent VARCHAR, week VARCHAR, date VARCHAR) |
###question:What is the highest attendance of the game on week 9?###answer:SELECT MAX(attendance) FROM table_name_68 WHERE week = 9###context:CREATE TABLE table_name_68 (attendance INTEGER, week VARCHAR) |
###question:When is the last episode air date for season 3?###answer:SELECT last_air_date FROM table_name_2 WHERE season = 3###context:CREATE TABLE table_name_2 (last_air_date VARCHAR, season VARCHAR) |
###question:Which season had its last episode air on March 11, 2001?###answer:SELECT season FROM table_name_43 WHERE last_air_date = "march 11, 2001"###context:CREATE TABLE table_name_43 (season VARCHAR, last_air_date VARCHAR) |
###question:What games have more than 1 draw?###answer:SELECT AVG(games) FROM table_name_22 WHERE drawn > 1###context:CREATE TABLE table_name_22 (games INTEGER, drawn INTEGER) |
###question:What game is the lowest with 1 draw and less than 7 points?###answer:SELECT MIN(games) FROM table_name_43 WHERE drawn = 1 AND points < 7###context:CREATE TABLE table_name_43 (games INTEGER, drawn VARCHAR, points VARCHAR) |
###question:Manager of art griggs had what lowest year?###answer:SELECT MIN(year) FROM table_name_86 WHERE manager = "art griggs"###context:CREATE TABLE table_name_86 (year INTEGER, manager VARCHAR) |
###question:Manager of spencer abbott, and a Year of 1919 involves what playoffs?###answer:SELECT playoffs FROM table_name_78 WHERE manager = "spencer abbott" AND year = 1919###context:CREATE TABLE table_name_78 (playoffs VARCHAR, manager VARCHAR, year VARCHAR) |
###question:Manager of marty berghammer / nick allen is what year?###answer:SELECT year FROM table_name_91 WHERE manager = "marty berghammer / nick allen"###context:CREATE TABLE table_name_91 (year VARCHAR, manager VARCHAR) |
###question:Manager of lyman lamb / marty berghammer is in what league?###answer:SELECT league FROM table_name_59 WHERE manager = "lyman lamb / marty berghammer"###context:CREATE TABLE table_name_59 (league VARCHAR, manager VARCHAR) |
###question:Manager of marty berghammer, and a Finish of 1st involved what lowest year?###answer:SELECT MIN(year) FROM table_name_59 WHERE manager = "marty berghammer" AND finish = "1st"###context:CREATE TABLE table_name_59 (year INTEGER, manager VARCHAR, finish VARCHAR) |
###question:Playoffs of league champs, and a Record of 77-63 is in what league?###answer:SELECT league FROM table_name_63 WHERE playoffs = "league champs" AND record = "77-63"###context:CREATE TABLE table_name_63 (league VARCHAR, playoffs VARCHAR, record VARCHAR) |
###question:Name the 2005 with 2007 of sf###answer:SELECT 2005 FROM table_name_16 WHERE 2007 = "sf"###context:CREATE TABLE table_name_16 (Id VARCHAR) |
###question:Name the 2006 with 2008 of 1r and 2004 of 1r###answer:SELECT 2006 FROM table_name_22 WHERE 2008 = "1r" AND 2004 = "1r"###context:CREATE TABLE table_name_22 (Id VARCHAR) |
###question:Name the 2011 with 2002 of 1r and 2009 of a###answer:SELECT 2011 FROM table_name_9 WHERE 2002 = "1r" AND 2009 = "a"###context:CREATE TABLE table_name_9 (Id VARCHAR) |
###question:Name the 1999 with 2011 of 2r###answer:SELECT 1999 FROM table_name_3 WHERE 2011 = "2r"###context:CREATE TABLE table_name_3 (Id VARCHAR) |
###question:Name the 2008 with 1998 of a and 2002 of 1r with 2004 of 2r###answer:SELECT 2008 FROM table_name_88 WHERE 1998 = "a" AND 2002 = "1r" AND 2004 = "2r"###context:CREATE TABLE table_name_88 (Id VARCHAR) |
###question:Name the 2001 with 2007 of sf###answer:SELECT 2001 FROM table_name_2 WHERE 2007 = "sf"###context:CREATE TABLE table_name_2 (Id VARCHAR) |
###question:Which school year was the Class AAA dalhart and the class AAAAA edinburg?###answer:SELECT school_year FROM table_name_73 WHERE class_aAA = dalhart AND class_aAAAA = edinburg###context:CREATE TABLE table_name_73 (school_year VARCHAR, class_aAA VARCHAR, dalhart VARCHAR, class_aAAAA VARCHAR, edinburg VARCHAR) |
###question:For what Class A is the school year 1987-88?###answer:SELECT class_a FROM table_name_24 WHERE school_year = "1987-88"###context:CREATE TABLE table_name_24 (class_a VARCHAR, school_year VARCHAR) |
###question:What is the Class AAAAA when the Class AAA is Gonzales?###answer:SELECT class_aAAA FROM table_name_28 WHERE class_aAA = gonzales###context:CREATE TABLE table_name_28 (class_aAAA VARCHAR, class_aAA VARCHAR, gonzales VARCHAR) |
###question:Which team scored less than 35 points?###answer:SELECT team FROM table_name_78 WHERE points < 35###context:CREATE TABLE table_name_78 (team VARCHAR, points INTEGER) |
###question:Which Position has a Team of criciúma, and a Drawn larger than 8?###answer:SELECT AVG(position) FROM table_name_80 WHERE team = "criciúma" AND drawn > 8###context:CREATE TABLE table_name_80 (position INTEGER, team VARCHAR, drawn VARCHAR) |
###question:Which Drawn has Points smaller than 46, and a Position smaller than 20, and a Lost smaller than 19, and an Against of 56?###answer:SELECT drawn FROM table_name_7 WHERE points < 46 AND position < 20 AND lost < 19 AND against = 56###context:CREATE TABLE table_name_7 (drawn VARCHAR, against VARCHAR, lost VARCH... |
###question:Which Played has a Lost larger than 14, and a Drawn of 10, and Points larger than 46?###answer:SELECT AVG(played) FROM table_name_97 WHERE lost > 14 AND drawn = 10 AND points > 46###context:CREATE TABLE table_name_97 (played INTEGER, points VARCHAR, lost VARCHAR, drawn VARCHAR) |
###question:What score has devin brown (24) as the leading scorer?###answer:SELECT score FROM table_name_36 WHERE leading_scorer = "devin brown (24)"###context:CREATE TABLE table_name_36 (score VARCHAR, leading_scorer VARCHAR) |
###question:Which height, in meters, has 36 floors?###answer:SELECT height_ft___m__ FROM table_name_93 WHERE floors = 36###context:CREATE TABLE table_name_93 (height_ft___m__ VARCHAR, floors VARCHAR) |
###question:Which Floors is the highest one that has a Name of one indiana square?###answer:SELECT MAX(floors) FROM table_name_84 WHERE name = "one indiana square"###context:CREATE TABLE table_name_84 (floors INTEGER, name VARCHAR) |
###question:How tall is the Street address of 07.0 200 east washington street?###answer:SELECT height_ft___m__ FROM table_name_10 WHERE street_address = "07.0 200 east washington street"###context:CREATE TABLE table_name_10 (height_ft___m__ VARCHAR, street_address VARCHAR) |
###question:What was the date of the game where the indians record was 37-44?###answer:SELECT date FROM table_name_95 WHERE record = "37-44"###context:CREATE TABLE table_name_95 (date VARCHAR, record VARCHAR) |
###question:What city is Garfield County Museum located in?###answer:SELECT town_city FROM table_name_39 WHERE name = "garfield county museum"###context:CREATE TABLE table_name_39 (town_city VARCHAR, name VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.