text
stringlengths
142
882
table: 1-10120207-8 columns: Season, Timeslot ( ET ), Season premiere, Season finale, TV season, Rank, Viewers (millions) Q: What is the season year where the rank is 39? A: SELECT TV season FROM 1-10120207-8 WHERE Rank = '39'
table: 1-10120207-8 columns: Season, Timeslot ( ET ), Season premiere, Season finale, TV season, Rank, Viewers (millions) Q: What is the number of season premieres were 10.17 people watched? A: SELECT COUNT Season premiere FROM 1-10120207-8 WHERE Viewers (millions) = '10.17'
table: 1-10120207-8 columns: Season, Timeslot ( ET ), Season premiere, Season finale, TV season, Rank, Viewers (millions) Q: What is the year of the season that was 12? A: SELECT TV season FROM 1-10120207-8 WHERE Season = 12
table: 1-1012730-1 columns: Year, Starts, Wins, Top 5, Top 10, Poles, Avg. Start, Avg. Finish, Winnings, Position, Team(s) Q: In 2012 what was the average finish? A: SELECT Avg. Finish FROM 1-1012730-1 WHERE Year = 2012
table: 1-1012730-1 columns: Year, Starts, Wins, Top 5, Top 10, Poles, Avg. Start, Avg. Finish, Winnings, Position, Team(s) Q: How many wins happened in 1983? A: SELECT MIN Wins FROM 1-1012730-1 WHERE Year = 1983
table: 1-1012730-1 columns: Year, Starts, Wins, Top 5, Top 10, Poles, Avg. Start, Avg. Finish, Winnings, Position, Team(s) Q: How many top tens had an average start of 29.4? A: SELECT COUNT Top 10 FROM 1-1012730-1 WHERE Avg. Start = '29.4'
table: 1-1012730-1 columns: Year, Starts, Wins, Top 5, Top 10, Poles, Avg. Start, Avg. Finish, Winnings, Position, Team(s) Q: How many poles had an average finish of 19.1? A: SELECT MAX Poles FROM 1-1012730-1 WHERE Avg. Finish = '19.1'
table: 1-1012730-1 columns: Year, Starts, Wins, Top 5, Top 10, Poles, Avg. Start, Avg. Finish, Winnings, Position, Team(s) Q: How many starts did Hendrick motorsports have? A: SELECT MIN Starts FROM 1-1012730-1 WHERE Team(s) = 'Hendrick Motorsports'
table: 1-1013129-10 columns: Pick, Player, Position, Nationality, NHL team, College/junior/club team Q: NHL players are all centre in Florida panthers. A: SELECT Player FROM 1-1013129-10 WHERE Position = 'Centre' AND NHL team = 'Florida Panthers'
table: 1-1013129-10 columns: Pick, Player, Position, Nationality, NHL team, College/junior/club team Q: NHL team player San Jose Sharks is United States nationally. A: SELECT Player FROM 1-1013129-10 WHERE NHL team = 'San Jose Sharks' AND Nationality = 'United States'
table: 1-1013129-10 columns: Pick, Player, Position, Nationality, NHL team, College/junior/club team Q: All players are position mark polak. A: SELECT Position FROM 1-1013129-10 WHERE Player = 'Mark Polak'
table: 1-1013129-10 columns: Pick, Player, Position, Nationality, NHL team, College/junior/club team Q: Position in nhl team centre are all smaller pick than 243.0 A: SELECT NHL team FROM 1-1013129-10 WHERE Position = 'Centre' AND Pick < 243.0
table: 1-1013129-11 columns: Pick, Player, Position, Nationality, NHL team, College/junior/club team Q: What college/junior/club teams do the players from the St. Louis Blues come from? A: SELECT College/junior/club team FROM 1-1013129-11 WHERE NHL team = 'St. Louis Blues'
table: 1-1013129-11 columns: Pick, Player, Position, Nationality, NHL team, College/junior/club team Q: What teams do the players from TPS (Finland) play for? A: SELECT NHL team FROM 1-1013129-11 WHERE College/junior/club team = 'TPS (Finland)'
table: 1-1013129-11 columns: Pick, Player, Position, Nationality, NHL team, College/junior/club team Q: What high school team did Doug Nolan play for? A: SELECT College/junior/club team FROM 1-1013129-11 WHERE Player = 'Doug Nolan'
table: 1-1013129-11 columns: Pick, Player, Position, Nationality, NHL team, College/junior/club team Q: What club team is Per Gustafsson play for? A: SELECT College/junior/club team FROM 1-1013129-11 WHERE Player = 'Per Gustafsson'
table: 1-1013129-11 columns: Pick, Player, Position, Nationality, NHL team, College/junior/club team Q: What is the nationality of Shayne Wright? A: SELECT Nationality FROM 1-1013129-11 WHERE Player = 'Shayne Wright'
table: 1-10128185-2 columns: Song, Mobiles, Northern Ireland, Northern England, Scotland, Southern England, Wales, Total Q: How many votes did Southern England cast whilst Northern Ireland cast 3? A: SELECT Southern England FROM 1-10128185-2 WHERE Northern Ireland = 3
table: 1-10128185-2 columns: Song, Mobiles, Northern Ireland, Northern England, Scotland, Southern England, Wales, Total Q: What was the lowest number of votes Scotland cast? A: SELECT MIN Scotland FROM 1-10128185-2
table: 1-10128185-2 columns: Song, Mobiles, Northern Ireland, Northern England, Scotland, Southern England, Wales, Total Q: What is the total number of votes if Scotland cast 35? A: SELECT COUNT Scotland FROM 1-10128185-2 WHERE Total = 35
table: 1-10128185-2 columns: Song, Mobiles, Northern Ireland, Northern England, Scotland, Southern England, Wales, Total Q: How many votes did Northern Ireland cast if the total was 35? A: SELECT Northern Ireland FROM 1-10128185-2 WHERE Total = 35
table: 1-10128185-2 columns: Song, Mobiles, Northern Ireland, Northern England, Scotland, Southern England, Wales, Total Q: How many votes did Wales cast when Northern England cast 6? A: SELECT MIN Wales FROM 1-10128185-2 WHERE Northern England = 6
table: 1-1012730-2 columns: Year, Starts, Wins, Top 5, Top 10, Poles, Avg. Start, Avg. Finish, Winnings, Position, Team(s) Q: What teams had 9 in the top 5 and 1 wins? A: SELECT Team(s) FROM 1-1012730-2 WHERE Top 5 = 9 AND Wins = 1
table: 1-1013129-1 columns: Pick, Player, Position, Nationality, NHL team, College/junior/club team Q: What teams did the player vadim sharifijanov play for? A: SELECT College/junior/club team FROM 1-1013129-1 WHERE Player = 'Vadim Sharifijanov'
table: 1-1013129-1 columns: Pick, Player, Position, Nationality, NHL team, College/junior/club team Q: What positions do the hartford whalers nhl team have? A: SELECT Position FROM 1-1013129-1 WHERE NHL team = 'Hartford Whalers'
table: 1-1013129-1 columns: Pick, Player, Position, Nationality, NHL team, College/junior/club team Q: What is the smallest pick for the player, brett lindros? A: SELECT MIN Pick FROM 1-1013129-1 WHERE Player = 'Brett Lindros'
table: 1-1013129-1 columns: Pick, Player, Position, Nationality, NHL team, College/junior/club team Q: What positions does the college/junior/club team, molot perm (russia) have? A: SELECT Position FROM 1-1013129-1 WHERE College/junior/club team = 'Molot Perm (Russia)'
table: 1-1013129-1 columns: Pick, Player, Position, Nationality, NHL team, College/junior/club team Q: The nhl team new york islanders is what nationality? A: SELECT Nationality FROM 1-1013129-1 WHERE NHL team = 'New York Islanders'
table: 1-1013168-3 columns: District, Vacator, Reason for change, Successor, Date successor seated Q: What is the name of the vacator for district Louisiana 1st? A: SELECT Vacator FROM 1-1013168-3 WHERE District = 'Louisiana 1st'
table: 1-101336-1 columns: Formula, Notation, T c (K), No. of Cu-O planes in unit cell, Crystal structure Q: What is the notion when the crystal structure is tetragonal and the formula is bi 2 sr 2 cacu 2 o 8 A: SELECT Notation FROM 1-101336-1 WHERE Crystal structure = 'Tetragonal' AND Formula = 'Bi 2 Sr 2 CaCu 2 O 8'
table: 1-101336-1 columns: Formula, Notation, T c (K), No. of Cu-O planes in unit cell, Crystal structure Q: How many times is the formula tl 2 ba 2 cuo 6? A: SELECT No. of Cu-O planes in unit cell FROM 1-101336-1 WHERE Formula = 'Tl 2 Ba 2 CuO 6'
table: 1-101336-1 columns: Formula, Notation, T c (K), No. of Cu-O planes in unit cell, Crystal structure Q: What is the crystal structure for the formula yba 2 cu 3 o 7? A: SELECT Crystal structure FROM 1-101336-1 WHERE Formula = 'YBa 2 Cu 3 O 7'
table: 1-101336-1 columns: Formula, Notation, T c (K), No. of Cu-O planes in unit cell, Crystal structure Q: What is the number for t c (k) when the notation is tl-2212? A: SELECT COUNT T c (K) FROM 1-101336-1 WHERE Notation = 'Tl-2212'
table: 1-10138926-1 columns: #, City, 1981 Census, 1991 Census, 2001 Census, 2010 Est., Region Q: How many 2010 estimations have been done in the city of Cremona? A: SELECT COUNT 2010 Est. FROM 1-10138926-1 WHERE City = 'Cremona'
table: 1-10138926-1 columns: #, City, 1981 Census, 1991 Census, 2001 Census, 2010 Est., Region Q: What's the 2001 census of the region of Abruzzo where the 1871 census is bigger than 51092.0? A: SELECT MIN 2001 Census FROM 1-10138926-1 WHERE Region = 'Abruzzo' AND 1981 Census > 51092.0
table: 1-10138926-1 columns: #, City, 1981 Census, 1991 Census, 2001 Census, 2010 Est., Region Q: What's the 1991 census of the city of Carpi? A: SELECT MAX 1991 Census FROM 1-10138926-1 WHERE City = 'Carpi'
table: 1-10138926-1 columns: #, City, 1981 Census, 1991 Census, 2001 Census, 2010 Est., Region Q: How many 2001 censuses are there on number 13? A: SELECT COUNT 2001 Census FROM 1-10138926-1 WHERE # = 13
table: 1-10138926-1 columns: #, City, 1981 Census, 1991 Census, 2001 Census, 2010 Est., Region Q: What's the 1981 census of Livorno? A: SELECT 1981 Census FROM 1-10138926-1 WHERE City = 'Livorno'
table: 1-1013129-8 columns: Pick, Player, Position, Nationality, NHL team, College/junior/club team Q: Which NHL team has player Mike Loach? A: SELECT NHL team FROM 1-1013129-8 WHERE Player = 'Mike Loach'
table: 1-1013129-8 columns: Pick, Player, Position, Nationality, NHL team, College/junior/club team Q: What is the NHL team that has Peter Strom? A: SELECT NHL team FROM 1-1013129-8 WHERE Player = 'Peter Strom'
table: 1-1013129-8 columns: Pick, Player, Position, Nationality, NHL team, College/junior/club team Q: What team is Keith Mccambridge on? A: SELECT College/junior/club team FROM 1-1013129-8 WHERE Player = 'Keith McCambridge'
table: 1-1013129-8 columns: Pick, Player, Position, Nationality, NHL team, College/junior/club team Q: How many nationalities are the pick 193? A: SELECT COUNT Nationality FROM 1-1013129-8 WHERE Pick = 193
table: 1-1013168-2 columns: State (class), Vacator, Reason for change, Successor, Date of successors formal installation Q: Who was the succesor that was formally installed on November 8, 1978? A: SELECT Successor FROM 1-1013168-2 WHERE Date of successors formal installation = 'November 8, 1978'
table: 1-1014319-1 columns: Week, Dance/song, Horwood, Goodman, Dixon, Tonioli, Total, Result Q: How many songs received a 10 from Goodman and were rated by Tonioli? A: SELECT COUNT Tonioli FROM 1-1014319-1 WHERE Goodman = '10'
table: 1-1014319-1 columns: Week, Dance/song, Horwood, Goodman, Dixon, Tonioli, Total, Result Q: What score did Goodman give to all songs with safe results, which received a 7 from Horwood and have a total score of 31? A: SELECT Goodman FROM 1-1014319-1 WHERE Total = '31' AND Horwood = '7' AND Result = 'Safe'
table: 1-1014319-1 columns: Week, Dance/song, Horwood, Goodman, Dixon, Tonioli, Total, Result Q: What score did Dixon give to the song "samba / young hearts run free", which was in second place? A: SELECT Dixon FROM 1-1014319-1 WHERE Dance/song = 'Samba / Young Hearts Run Free' AND Result = 'Second place'
table: 1-1014319-1 columns: Week, Dance/song, Horwood, Goodman, Dixon, Tonioli, Total, Result Q: How many scores did Goodman give to "samba / young hearts run free", which was in second place? A: SELECT COUNT Goodman FROM 1-1014319-1 WHERE Result = 'Second place' AND Dance/song = 'Samba / Young Hearts Run Free'
table: 1-1015421-1 columns: Class, Operator, No. Built, Year Built, Cars per Set, Unit nos. Q: What year was number 7 built? A: SELECT Year Built FROM 1-1015421-1 WHERE No. Built = 7
table: 1-1015914-24 columns: Case/Suffix, we two, you and I, you two, them two (the two), who-two Q: What is we two when the case/suffix is loc.? A: SELECT we two FROM 1-1015914-24 WHERE Case/Suffix = 'loc.'
table: 1-1015914-24 columns: Case/Suffix, we two, you and I, you two, them two (the two), who-two Q: What is them two (the two) when we two is ngalbelpa? A: SELECT them two (the two) FROM 1-1015914-24 WHERE we two = 'ngalbelpa'
table: 1-1015914-24 columns: Case/Suffix, we two, you and I, you two, them two (the two), who-two Q: What is them two (the two) when you and i is ngœbalngu? A: SELECT them two (the two) FROM 1-1015914-24 WHERE you and I = 'ngœbalngu'
table: 1-1015914-24 columns: Case/Suffix, we two, you and I, you two, them two (the two), who-two Q: What is who-two where you and i is ngœban? A: SELECT who-two FROM 1-1015914-24 WHERE you and I = 'ngœban'
table: 1-1015914-24 columns: Case/Suffix, we two, you and I, you two, them two (the two), who-two Q: What is we two where you two is ngipen? A: SELECT we two FROM 1-1015914-24 WHERE you two = 'ngipen'
table: 1-1015914-24 columns: Case/Suffix, we two, you and I, you two, them two (the two), who-two Q: What is who-two when you two is ngipelngu? A: SELECT who-two FROM 1-1015914-24 WHERE you two = 'ngipelngu'
table: 1-10160447-1 columns: Position, Driver, Points, Winnings, Series Q: what's the points with driver  mark martin A: SELECT Points FROM 1-10160447-1 WHERE Driver = 'Mark Martin'
table: 1-10160447-1 columns: Position, Driver, Points, Winnings, Series Q: what's the points with driver  rusty wallace A: SELECT Points FROM 1-10160447-1 WHERE Driver = 'Rusty Wallace'
table: 1-10160447-1 columns: Position, Driver, Points, Winnings, Series Q: what's the total number of position with driver  robby gordon A: SELECT COUNT Position FROM 1-10160447-1 WHERE Driver = 'Robby Gordon'
table: 1-10160447-1 columns: Position, Driver, Points, Winnings, Series Q: what's the maximum position with winnings  $50,000 A: SELECT MAX Position FROM 1-10160447-1 WHERE Winnings = '$50,000'
table: 1-10236830-6 columns: Nomination, Actors Name, Film Name, Director, Country Q: What actor was nominted for an award in the film Anastasiya Slutskaya? A: SELECT Actors Name FROM 1-10236830-6 WHERE Film Name = 'Anastasiya Slutskaya'
table: 1-10236830-6 columns: Nomination, Actors Name, Film Name, Director, Country Q: What was the film Falling up nominated for? A: SELECT Nomination FROM 1-10236830-6 WHERE Film Name = 'Falling Up'
table: 1-10236830-6 columns: Nomination, Actors Name, Film Name, Director, Country Q: What is the name of the actress that was nominated for best actress in a leading role in the film Chopin: Desire for love? A: SELECT Actors Name FROM 1-10236830-6 WHERE Film Name = 'Chopin: Desire for Love' AND Nomination = 'Best Actress in a Leading Role'
table: 1-10236830-6 columns: Nomination, Actors Name, Film Name, Director, Country Q: What is the name of the actress that was nominated for best actress in a leading role in the film Chopin: Desire for love? A: SELECT Actors Name FROM 1-10236830-6 WHERE Film Name = 'Chopin: Desire for Love' AND Nomination = 'Best Actress in a Leading Role'
table: 1-10236830-6 columns: Nomination, Actors Name, Film Name, Director, Country Q: Which films does the actor Alla Sergiyko star in? A: SELECT Film Name FROM 1-10236830-6 WHERE Actors Name = 'Alla Sergiyko'
table: 1-10236830-6 columns: Nomination, Actors Name, Film Name, Director, Country Q: Which nominations was the film 27 Stolen Kisses nominated for? A: SELECT Nomination FROM 1-10236830-6 WHERE Film Name = '27 Stolen Kisses'
table: 1-10236830-4 columns: Nomination, Actors Name, Film Name, Director, Country Q: Which actor from Serbia was nominated for best actor in a supporting role? A: SELECT Actors Name FROM 1-10236830-4 WHERE Nomination = 'Best Actor in a Supporting Role' AND Country = 'Serbia'
table: 1-10236830-4 columns: Nomination, Actors Name, Film Name, Director, Country Q: Vsevolod Shilovskiy is from what country? A: SELECT Country FROM 1-10236830-4 WHERE Actors Name = 'Vsevolod Shilovskiy'
table: 1-10236830-4 columns: Nomination, Actors Name, Film Name, Director, Country Q: Which nominations are connected to the film Totalitarian Romance? A: SELECT Nomination FROM 1-10236830-4 WHERE Film Name = 'Totalitarian Romance'
table: 1-10236830-4 columns: Nomination, Actors Name, Film Name, Director, Country Q: Srdjan Dragojevic worked on a film which earned what nomination? A: SELECT Nomination FROM 1-10236830-4 WHERE Director = 'Srdjan Dragojevic'
table: 1-10236830-4 columns: Nomination, Actors Name, Film Name, Director, Country Q: Which actors are from Ukraine? A: SELECT Actors Name FROM 1-10236830-4 WHERE Country = 'Ukraine'
table: 1-10236830-1 columns: Nomination, Actors Name, Film Name, Director, Country Q: What was the film that vadim ilyenko directed? A: SELECT Film Name FROM 1-10236830-1 WHERE Director = 'Vadim Ilyenko'
table: 1-10236830-1 columns: Nomination, Actors Name, Film Name, Director, Country Q: What was the actors name that vadim ilyenko directed? A: SELECT Actors Name FROM 1-10236830-1 WHERE Director = 'Vadim Ilyenko'
table: 1-10236830-1 columns: Nomination, Actors Name, Film Name, Director, Country Q: What was the actors name for fuchzhou and nomination was best non-professional actor? A: SELECT Actors Name FROM 1-10236830-1 WHERE Film Name = 'Fuchzhou' AND Nomination = 'Best Non-Professional Actor'
table: 1-10236830-1 columns: Nomination, Actors Name, Film Name, Director, Country Q: What film did michaylo ilyenko make with best actor in a supporting role? A: SELECT Film Name FROM 1-10236830-1 WHERE Director = 'Michaylo Ilyenko' AND Nomination = 'Best Actor in a Supporting Role'
table: 1-10236830-1 columns: Nomination, Actors Name, Film Name, Director, Country Q: What was the actor's name for best debut? A: SELECT Actors Name FROM 1-10236830-1 WHERE Nomination = 'Best Debut'
table: 1-10236830-1 columns: Nomination, Actors Name, Film Name, Director, Country Q: What was the number of nominations for natalia raskokoha? A: SELECT COUNT Nomination FROM 1-10236830-1 WHERE Actors Name = 'Natalia Raskokoha'
table: 1-10240125-1 columns: Season, Division, League Apps, League Goals, FA Cup Apps, FA Cup Goals, Total Apps, Total Goals Q: What is the highest value of Total Goals? A: SELECT MAX Total Goals FROM 1-10240125-1
table: 1-10240125-1 columns: Season, Division, League Apps, League Goals, FA Cup Apps, FA Cup Goals, Total Apps, Total Goals Q: When FA Cup Apps is 9 what is the smallest number of FA Cup Goals? A: SELECT MIN FA Cup Goals FROM 1-10240125-1 WHERE FA Cup Apps = 9
table: 1-10240125-1 columns: Season, Division, League Apps, League Goals, FA Cup Apps, FA Cup Goals, Total Apps, Total Goals Q: What is the smallest number of Total Goals? A: SELECT MIN Total Goals FROM 1-10240125-1
table: 1-10264179-2 columns: Round, Circuit, Date, Pole Position, Fastest Lap, Winning Driver, Winning Team Q: What circuit was the race where Hideki Mutoh had the fastest lap? A: SELECT Circuit FROM 1-10264179-2 WHERE Fastest Lap = 'Hideki Mutoh'
table: 1-10269427-3 columns: Episode #, Production code, Title, Directed by, Written by, Airdate Q: what is the minimum production code with title "foreign exchange problem / turn about" A: SELECT MIN Production code FROM 1-10269427-3 WHERE Title = '"Foreign Exchange Problem / Turn About"'
table: 1-10269427-3 columns: Episode #, Production code, Title, Directed by, Written by, Airdate Q: what is the episode # for title "the yindianapolis 500 / personality problem" A: SELECT Episode # FROM 1-10269427-3 WHERE Title = '"The Yindianapolis 500 / Personality Problem"'
table: 1-10269427-3 columns: Episode #, Production code, Title, Directed by, Written by, Airdate Q: what is the episode # for production code 227 A: SELECT Episode # FROM 1-10269427-3 WHERE Production code = 227
table: 1-10269427-3 columns: Episode #, Production code, Title, Directed by, Written by, Airdate Q: who directed the movie written by is sib ventress / aydrea ten bosch A: SELECT Directed by FROM 1-10269427-3 WHERE Written by = 'Sib Ventress / Aydrea ten Bosch'
table: 1-10269427-3 columns: Episode #, Production code, Title, Directed by, Written by, Airdate Q: what is the production code with title "skirting the issue / moon over my yinnie" A: SELECT Production code FROM 1-10269427-3 WHERE Title = '"Skirting the Issue / Moon Over my Yinnie"'
table: 1-10240125-2 columns: Season, Division, League Apps, League Goals, FA Cup Apps, FA Cup Goals, Total Apps, Total Goals Q: Whatis the number of total goals maximum? A: SELECT MAX Total Goals FROM 1-10240125-2
table: 1-10262329-1 columns: Assembly Type, Adhesive Type, Time(Sec), Temp (°C), Pressure Q: HOW MANY TEMPERATURE INTERVALS ARE POSSIBLE TO USE WITH ACRYL? A: SELECT COUNT Temp (°C) FROM 1-10262329-1 WHERE Adhesive Type = 'Acryl'
table: 1-1028356-3 columns: Outcome, Year, Championship, Surface, Partner, Opponents, Score Q: How many matches where played with Jim Pugh? A: SELECT COUNT Opponents FROM 1-1028356-3 WHERE Partner = 'Jim Pugh'
table: 1-1028356-3 columns: Outcome, Year, Championship, Surface, Partner, Opponents, Score Q: What is the score with partner Jim Pugh? A: SELECT Score FROM 1-1028356-3 WHERE Partner = 'Jim Pugh'
table: 1-1028356-3 columns: Outcome, Year, Championship, Surface, Partner, Opponents, Score Q: How many matched scored 3–6, 7–6(5), 6–3? A: SELECT COUNT Surface FROM 1-1028356-3 WHERE Score = '3–6, 7–6(5), 6–3'
table: 1-1028356-3 columns: Outcome, Year, Championship, Surface, Partner, Opponents, Score Q: What is the score of the match with partner Jim Pugh? A: SELECT Score FROM 1-1028356-3 WHERE Partner = 'Jim Pugh'
table: 1-1028356-3 columns: Outcome, Year, Championship, Surface, Partner, Opponents, Score Q: What year was the championship in Wimbledon (2)? A: SELECT Year FROM 1-1028356-3 WHERE Championship = 'Wimbledon (2)'
table: 1-1028356-3 columns: Outcome, Year, Championship, Surface, Partner, Opponents, Score Q: What is the score of the match with opponents Gretchen Magers Kelly Jones? A: SELECT Score FROM 1-1028356-3 WHERE Opponents = 'Gretchen Magers Kelly Jones'
table: 1-10284385-1 columns: Begin Date, End Date, Representative, Date of birth, House term, State served, Party, Age (years, days) Q: How many birthdays does Earl Hanley Beshlin have? A: SELECT COUNT Date of birth FROM 1-10284385-1 WHERE Representative = 'Earl Hanley Beshlin'
table: 1-10284385-1 columns: Begin Date, End Date, Representative, Date of birth, House term, State served, Party, Age (years, days) Q: Which politican party has a birthday of November 10, 1880 A: SELECT Party FROM 1-10284385-1 WHERE Date of birth = 'November 10, 1880'
table: 1-10284385-1 columns: Begin Date, End Date, Representative, Date of birth, House term, State served, Party, Age (years, days) Q: Which representative has a birthday of January 31, 1866? A: SELECT Representative FROM 1-10284385-1 WHERE Date of birth = 'January 31, 1866'
table: 1-10295819-1 columns: Player, Current singles ranking, Current doubles ranking, First year played, Ties played, Total W–L, Singles W–L, Doubles W–L Q: What is the Singles W-L for the players named Laurynas Grigelis? A: SELECT Singles W–L FROM 1-10295819-1 WHERE Player = 'Laurynas Grigelis'
table: 1-10295819-1 columns: Player, Current singles ranking, Current doubles ranking, First year played, Ties played, Total W–L, Singles W–L, Doubles W–L Q: What is the Current singles ranking for the player named Mantas Bugailiškis? A: SELECT Current singles ranking FROM 1-10295819-1 WHERE Player = 'Mantas Bugailiškis'
table: 1-10312547-1 columns: Character, 1954 Broadway, 1955 broadcast, 1960 broadcast, 1979 Broadway, 1990 Broadway, 1991 Broadway, 1998 Broadway, 1999 Broadway Q: How many playerd Mrs. Darling in the 1999 Broadway? A: SELECT COUNT 1999 Broadway FROM 1-10312547-1 WHERE Character = 'Mrs. Darling'
table: 1-10312547-1 columns: Character, 1954 Broadway, 1955 broadcast, 1960 broadcast, 1979 Broadway, 1990 Broadway, 1991 Broadway, 1998 Broadway, 1999 Broadway Q: Who played Peter Pan in the 1990 Broadway? A: SELECT 1990 Broadway FROM 1-10312547-1 WHERE Character = 'Peter Pan'
table: 1-10312547-1 columns: Character, 1954 Broadway, 1955 broadcast, 1960 broadcast, 1979 Broadway, 1990 Broadway, 1991 Broadway, 1998 Broadway, 1999 Broadway Q: Who played in the 1991 Broadway before Barbara McCulloh played the part in the 1999 Broadway? A: SELECT 1991 Broadway FROM 1-10312547-1 WHERE 1999 Broadway = 'Barbara McCulloh'