Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
53,800
<question>: What is the Population of the Town with a Census Ranking of 1,379 of 5,008 and an Area km 2 smaller than 8.35? <context>: CREATE TABLE table_name_70 (population INTEGER, area_km_2 VARCHAR, status VARCHAR, census_ranking VARCHAR)
SELECT MAX(population) FROM table_name_70 WHERE status = "town" AND census_ranking = "1,379 of 5,008" AND area_km_2 < 8.35
53,801
<question>: What is the Official Name of the Community with an Area km 2 of 16.13? <context>: CREATE TABLE table_name_50 (official_name VARCHAR, area_km_2 VARCHAR)
SELECT official_name FROM table_name_50 WHERE area_km_2 = 16.13
53,802
<question>: What is Country, when To Par is "–2", and when Player is "Tsuneyuki Nakajima"? <context>: CREATE TABLE table_name_48 (country VARCHAR, to_par VARCHAR, player VARCHAR)
SELECT country FROM table_name_48 WHERE to_par = "–2" AND player = "tsuneyuki nakajima"
53,803
<question>: What is Country, when Score is "72-65=137"? <context>: CREATE TABLE table_name_40 (country VARCHAR, score VARCHAR)
SELECT country FROM table_name_40 WHERE score = 72 - 65 = 137
53,804
<question>: What is Country, when Place is "T3", and when Player is "Jim Thorpe"? <context>: CREATE TABLE table_name_44 (country VARCHAR, place VARCHAR, player VARCHAR)
SELECT country FROM table_name_44 WHERE place = "t3" AND player = "jim thorpe"
53,805
<question>: Who was the team for game 34? <context>: CREATE TABLE table_name_79 (team VARCHAR, game VARCHAR)
SELECT team FROM table_name_79 WHERE game = 34
53,806
<question>: How many goals for had a drawn more than 12 for the Goole Town team, as well as more than 60 goals against? <context>: CREATE TABLE table_name_45 (goals_for INTEGER, goals_against VARCHAR, drawn VARCHAR, team VARCHAR)
SELECT SUM(goals_for) FROM table_name_45 WHERE drawn > 12 AND team = "goole town" AND goals_against > 60
53,807
<question>: What are the average goals for with a drawn higher than 7 and goals against less than 86, as well as more than 11 losses and more than 42 games played? <context>: CREATE TABLE table_name_19 (goals_for INTEGER, played VARCHAR, lost VARCHAR, drawn VARCHAR, goals_against VARCHAR)
SELECT AVG(goals_for) FROM table_name_19 WHERE drawn > 7 AND goals_against < 86 AND lost > 11 AND played > 42
53,808
<question>: What is the highest lost with a drawn more than 11, a position lower than 17 and more than 61 goals? <context>: CREATE TABLE table_name_75 (lost INTEGER, goals_for VARCHAR, drawn VARCHAR, position VARCHAR)
SELECT MAX(lost) FROM table_name_75 WHERE drawn > 11 AND position < 17 AND goals_for > 61
53,809
<question>: Who held the title of Ruler? <context>: CREATE TABLE table_name_31 (name VARCHAR, title VARCHAR)
SELECT name FROM table_name_31 WHERE title = "ruler"
53,810
<question>: What type of state did the ruler have a title? <context>: CREATE TABLE table_name_54 (type VARCHAR, title VARCHAR)
SELECT type FROM table_name_54 WHERE title = "ruler"
53,811
<question>: In what state did Jing have the title of Marquis? <context>: CREATE TABLE table_name_2 (state VARCHAR, title VARCHAR, name VARCHAR)
SELECT state FROM table_name_2 WHERE title = "marquis" AND name = "jing"
53,812
<question>: What was Gongbo's title? <context>: CREATE TABLE table_name_37 (title VARCHAR, name VARCHAR)
SELECT title FROM table_name_37 WHERE name = "gongbo"
53,813
<question>: What is the name of Yi's state? <context>: CREATE TABLE table_name_49 (state VARCHAR, name VARCHAR)
SELECT state FROM table_name_49 WHERE name = "yi"
53,814
<question>: What is the Devices per channel where the Name is sata revision 3.0? <context>: CREATE TABLE table_name_19 (devices_per_channel VARCHAR, name VARCHAR)
SELECT devices_per_channel FROM table_name_19 WHERE name = "sata revision 3.0"
53,815
<question>: What is the Raw bandwidth (Mbit/s) for the SAS 300? <context>: CREATE TABLE table_name_8 (raw_bandwidth__mbit_s_ VARCHAR, name VARCHAR)
SELECT raw_bandwidth__mbit_s_ FROM table_name_8 WHERE name = "sas 300"
53,816
<question>: Name the Away team score which has an Away team of st kilda, and a Crowd of 8157? <context>: CREATE TABLE table_name_3 (away_team VARCHAR, crowd VARCHAR)
SELECT away_team AS score FROM table_name_3 WHERE away_team = "st kilda" AND crowd = 8157
53,817
<question>: Name the Away team which have a Ground of colonial stadium on friday, 2 march? <context>: CREATE TABLE table_name_83 (away_team VARCHAR, ground VARCHAR, date VARCHAR)
SELECT away_team FROM table_name_83 WHERE ground = "colonial stadium" AND date = "friday, 2 march"
53,818
<question>: Which team has 71 Points and F/Laps of 4? <context>: CREATE TABLE table_name_85 (team VARCHAR, points VARCHAR, f_laps VARCHAR)
SELECT team FROM table_name_85 WHERE points = "71" AND f_laps = "4"
53,819
<question>: What Poles do Team jva have? <context>: CREATE TABLE table_name_2 (poles VARCHAR, team VARCHAR)
SELECT poles FROM table_name_2 WHERE team = "team jva"
53,820
<question>: If the Season is later than 2008 and Races is 11, what ate the Points? <context>: CREATE TABLE table_name_64 (points VARCHAR, races VARCHAR, season VARCHAR)
SELECT points FROM table_name_64 WHERE races = "11" AND season > 2008
53,821
<question>: What Position is Team Sahara Force india f1 team with 46 Points? <context>: CREATE TABLE table_name_38 (position VARCHAR, team VARCHAR, points VARCHAR)
SELECT position FROM table_name_38 WHERE team = "sahara force india f1 team" AND points = "46"
53,822
<question>: Which Poles have a position of 4th? <context>: CREATE TABLE table_name_63 (poles VARCHAR, position VARCHAR)
SELECT poles FROM table_name_63 WHERE position = "4th"
53,823
<question>: Which F/Laps have 27 Points? <context>: CREATE TABLE table_name_77 (f_laps VARCHAR, points VARCHAR)
SELECT f_laps FROM table_name_77 WHERE points = "27"
53,824
<question>: What country has the SBA Towers Tower Hayneville? <context>: CREATE TABLE table_name_71 (country VARCHAR, name VARCHAR)
SELECT country FROM table_name_71 WHERE name = "sba towers tower hayneville"
53,825
<question>: What type of structure is there at the American Tower Christmas? <context>: CREATE TABLE table_name_17 (structure_type VARCHAR, name VARCHAR)
SELECT structure_type FROM table_name_17 WHERE name = "american tower christmas"
53,826
<question>: What's the name of the structure at Egypt, Arkansas? <context>: CREATE TABLE table_name_53 (name VARCHAR, town VARCHAR)
SELECT name FROM table_name_53 WHERE town = "egypt, arkansas"
53,827
<question>: What country was the woman from who was born 1976-07-23 and became a grandmaster in 1991? <context>: CREATE TABLE table_name_83 (country VARCHAR, date VARCHAR, birth_date VARCHAR)
SELECT country FROM table_name_83 WHERE date = 1991 AND birth_date = "1976-07-23"
53,828
<question>: Name the Points which has a Team of sportivo luqueño, and Wins larger than 1? <context>: CREATE TABLE table_name_41 (points INTEGER, team VARCHAR, wins VARCHAR)
SELECT MIN(points) FROM table_name_41 WHERE team = "sportivo luqueño" AND wins > 1
53,829
<question>: Name the Wins which has Points smaller than 10, Losses smaller than 3, and a Scored of 11? <context>: CREATE TABLE table_name_80 (wins INTEGER, scored VARCHAR, points VARCHAR, losses VARCHAR)
SELECT MIN(wins) FROM table_name_80 WHERE points < 10 AND losses < 3 AND scored = 11
53,830
<question>: Please name the highest Conceded which has a Played smaller than 5? <context>: CREATE TABLE table_name_4 (conceded INTEGER, played INTEGER)
SELECT MAX(conceded) FROM table_name_4 WHERE played < 5
53,831
<question>: Please name the Losses that has a Played smaller than 5? <context>: CREATE TABLE table_name_57 (losses INTEGER, played INTEGER)
SELECT MAX(losses) FROM table_name_57 WHERE played < 5
53,832
<question>: Name the Scored which has a Position larger than 6? <context>: CREATE TABLE table_name_28 (scored VARCHAR, position INTEGER)
SELECT COUNT(scored) FROM table_name_28 WHERE position > 6
53,833
<question>: What is the earliest week with an opponent of cincinnati bengals? <context>: CREATE TABLE table_name_15 (week INTEGER, opponent VARCHAR)
SELECT MIN(week) FROM table_name_15 WHERE opponent = "cincinnati bengals"
53,834
<question>: What is the sum for the week with the date october 30, 1994? <context>: CREATE TABLE table_name_55 (week INTEGER, date VARCHAR)
SELECT SUM(week) FROM table_name_55 WHERE date = "october 30, 1994"
53,835
<question>: What is the date for a week before 9, and a opponent of dallas cowboys? <context>: CREATE TABLE table_name_18 (date VARCHAR, week VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_18 WHERE week < 9 AND opponent = "dallas cowboys"
53,836
<question>: What is the biggest week with an opponent of washington redskins? <context>: CREATE TABLE table_name_18 (week INTEGER, opponent VARCHAR)
SELECT MAX(week) FROM table_name_18 WHERE opponent = "washington redskins"
53,837
<question>: What was the attendance for a week larger than 3, and an opponent of philadelphia eagles? <context>: CREATE TABLE table_name_58 (attendance VARCHAR, week VARCHAR, opponent VARCHAR)
SELECT attendance FROM table_name_58 WHERE week > 3 AND opponent = "philadelphia eagles"
53,838
<question>: What is the result of the match with Jeff Monson as opponent? <context>: CREATE TABLE table_name_96 (res VARCHAR, opponent VARCHAR)
SELECT res FROM table_name_96 WHERE opponent = "jeff monson"
53,839
<question>: How many rounds was the match against Jason Fairn? <context>: CREATE TABLE table_name_78 (round VARCHAR, opponent VARCHAR)
SELECT round FROM table_name_78 WHERE opponent = "jason fairn"
53,840
<question>: What is the method of the match where there was a loss to Carlos Newton in round 1? <context>: CREATE TABLE table_name_61 (method VARCHAR, opponent VARCHAR, round VARCHAR, res VARCHAR)
SELECT method FROM table_name_61 WHERE round = "1" AND res = "loss" AND opponent = "carlos newton"
53,841
<question>: Who had the most points in games over 59? <context>: CREATE TABLE table_name_12 (high_points VARCHAR, game INTEGER)
SELECT high_points FROM table_name_12 WHERE game > 59
53,842
<question>: What was the score for the game against San Antonio? <context>: CREATE TABLE table_name_97 (score VARCHAR, team VARCHAR)
SELECT score FROM table_name_97 WHERE team = "san antonio"
53,843
<question>: Who had the most assists in the game against Indiana? <context>: CREATE TABLE table_name_57 (high_assists VARCHAR, team VARCHAR)
SELECT high_assists FROM table_name_57 WHERE team = "indiana"
53,844
<question>: What is the UK Railway with an ObjectNumber of 1975-7023? <context>: CREATE TABLE table_name_16 (railway VARCHAR, objectnumber VARCHAR)
SELECT railway FROM table_name_16 WHERE objectnumber = "1975-7023"
53,845
<question>: Who was the manager that was positioned 11th in table and resigned in departure? <context>: CREATE TABLE table_name_30 (replaced_by VARCHAR, position_in_table VARCHAR, manner_of_departure VARCHAR)
SELECT replaced_by FROM table_name_30 WHERE position_in_table = "11th" AND manner_of_departure = "resigned"
53,846
<question>: what is the least tournaments played when the year is 1998? <context>: CREATE TABLE table_name_62 (tournaments_played INTEGER, year VARCHAR)
SELECT MIN(tournaments_played) FROM table_name_62 WHERE year = 1998
53,847
<question>: what is the year when tournaments played is less than 2, cuts made is 1 and earnings ($) is less than 10,547? <context>: CREATE TABLE table_name_89 (year INTEGER, earnings___$__ VARCHAR, tournaments_played VARCHAR, cuts_made VARCHAR)
SELECT SUM(year) FROM table_name_89 WHERE tournaments_played < 2 AND cuts_made = 1 AND earnings___$__ < 10 OFFSET 547
53,848
<question>: what is the best finish when money list rank is n/a, earnings ($) is more than 0 and cuts made is more than 1? <context>: CREATE TABLE table_name_41 (best_finish VARCHAR, cuts_made VARCHAR, money_list_rank VARCHAR, earnings___$__ VARCHAR)
SELECT best_finish FROM table_name_41 WHERE money_list_rank = "n/a" AND earnings___$__ > 0 AND cuts_made > 1
53,849
<question>: how many times is the money list rank 221 and cuts more than 2? <context>: CREATE TABLE table_name_97 (tournaments_played VARCHAR, money_list_rank VARCHAR, cuts_made VARCHAR)
SELECT COUNT(tournaments_played) FROM table_name_97 WHERE money_list_rank = "221" AND cuts_made > 2
53,850
<question>: what is the earliest year with the best finish t-65? <context>: CREATE TABLE table_name_82 (year INTEGER, best_finish VARCHAR)
SELECT MIN(year) FROM table_name_82 WHERE best_finish = "t-65"
53,851
<question>: what is the average tournaments played when cuts made is 14? <context>: CREATE TABLE table_name_63 (tournaments_played INTEGER, cuts_made VARCHAR)
SELECT AVG(tournaments_played) FROM table_name_63 WHERE cuts_made = 14
53,852
<question>: What is the earliest date of taking office for district 22? <context>: CREATE TABLE table_name_2 (took_office INTEGER, district VARCHAR)
SELECT MIN(took_office) FROM table_name_2 WHERE district = 22
53,853
<question>: What district has a democratic leader from Roby? <context>: CREATE TABLE table_name_37 (district INTEGER, party VARCHAR, home_town VARCHAR)
SELECT SUM(district) FROM table_name_37 WHERE party = "democratic" AND home_town = "roby"
53,854
<question>: What is the district where Steve Carriker is the Democratic Senator and he took office later than 1988? <context>: CREATE TABLE table_name_72 (district INTEGER, took_office VARCHAR, party VARCHAR, senator VARCHAR)
SELECT MAX(district) FROM table_name_72 WHERE party = "democratic" AND senator = "steve carriker" AND took_office > 1988
53,855
<question>: How many series originally aired before 1999 with more than 7 episodes and a DVD Region 1 release date of 16 april 2013? <context>: CREATE TABLE table_name_24 (series_number VARCHAR, dvd_region_1_release_date VARCHAR, original_air_date VARCHAR, number_of_episodes VARCHAR)
SELECT COUNT(series_number) FROM table_name_24 WHERE original_air_date < 1999 AND number_of_episodes > 7 AND dvd_region_1_release_date = "16 april 2013"
53,856
<question>: What's the latest original air date with more than 10 episodes and a DVD Region 2 release date of 23 april 2012? <context>: CREATE TABLE table_name_17 (original_air_date INTEGER, dvd_region_2_release_date VARCHAR, number_of_episodes VARCHAR)
SELECT MAX(original_air_date) FROM table_name_17 WHERE dvd_region_2_release_date = "23 april 2012" AND number_of_episodes > 10
53,857
<question>: What was the original air date of series number 10? <context>: CREATE TABLE table_name_20 (original_air_date INTEGER, series_number VARCHAR)
SELECT AVG(original_air_date) FROM table_name_20 WHERE series_number = 10
53,858
<question>: What's the sum of the number of episodes that originally aired after 1991 with a series number smaller than 21 and a DVD Region 2 release date of 26 march 2012? <context>: CREATE TABLE table_name_99 (number_of_episodes INTEGER, dvd_region_2_release_date VARCHAR, original_air_date VARCHAR, series_number VARCHAR)
SELECT SUM(number_of_episodes) FROM table_name_99 WHERE original_air_date > 1991 AND series_number < 21 AND dvd_region_2_release_date = "26 march 2012"
53,859
<question>: What's the lowest series number that originally aired before 2009 with more than 7 episodes and had a DVD Region 2 release date of 26 july 2004? <context>: CREATE TABLE table_name_69 (series_number INTEGER, number_of_episodes VARCHAR, original_air_date VARCHAR, dvd_region_2_release_date VARCHAR)
SELECT MIN(series_number) FROM table_name_69 WHERE original_air_date < 2009 AND dvd_region_2_release_date = "26 july 2004" AND number_of_episodes > 7
53,860
<question>: What is the total of bronze that has more silvers than 2? <context>: CREATE TABLE table_name_15 (bronze VARCHAR, silver INTEGER)
SELECT COUNT(bronze) FROM table_name_15 WHERE silver > 2
53,861
<question>: What is the total of Golds with more bronzes than 1 and totaled larger than 4? <context>: CREATE TABLE table_name_64 (gold VARCHAR, bronze VARCHAR, total VARCHAR)
SELECT COUNT(gold) FROM table_name_64 WHERE bronze > 1 AND total > 4
53,862
<question>: What is the least total that had more Bronzes than 1 and more silvers than 2? <context>: CREATE TABLE table_name_82 (total INTEGER, bronze VARCHAR, silver VARCHAR)
SELECT MIN(total) FROM table_name_82 WHERE bronze > 1 AND silver > 2
53,863
<question>: What is the least total that has fewer golds than 2, a higher rank than 4 and fewer bronzes than 1? <context>: CREATE TABLE table_name_81 (total INTEGER, bronze VARCHAR, gold VARCHAR, rank VARCHAR)
SELECT MIN(total) FROM table_name_81 WHERE gold < 2 AND rank = 4 AND bronze < 1
53,864
<question>: What is the lest amount of bronzes that ranked 2 and has less silvers than 0? <context>: CREATE TABLE table_name_79 (bronze INTEGER, rank VARCHAR, silver VARCHAR)
SELECT MIN(bronze) FROM table_name_79 WHERE rank = 2 AND silver < 0
53,865
<question>: How many Total(s) are there, when the number of Bronze is greater than 13, when the Rank is 8, and when the number of Silver is less than 11? <context>: CREATE TABLE table_name_48 (total VARCHAR, silver VARCHAR, bronze VARCHAR, rank VARCHAR)
SELECT COUNT(total) FROM table_name_48 WHERE bronze > 13 AND rank = "8" AND silver < 11
53,866
<question>: What is the Nation, when the number of Bronze is less than 17, and when the number of Gold is less than 16? <context>: CREATE TABLE table_name_26 (nation VARCHAR, bronze VARCHAR, gold VARCHAR)
SELECT nation FROM table_name_26 WHERE bronze < 17 AND gold < 16
53,867
<question>: What is the highest number of Silver, when the Nation is Japan (JPN), and when the Total is greater than 37? <context>: CREATE TABLE table_name_50 (silver INTEGER, nation VARCHAR, total VARCHAR)
SELECT MAX(silver) FROM table_name_50 WHERE nation = "japan (jpn)" AND total > 37
53,868
<question>: What is the lowest number of Gold, when the number of Bronze is less than 36, when the Rank is 2, and when Silver is less than 37? <context>: CREATE TABLE table_name_97 (gold INTEGER, silver VARCHAR, bronze VARCHAR, rank VARCHAR)
SELECT MIN(gold) FROM table_name_97 WHERE bronze < 36 AND rank = "2" AND silver < 37
53,869
<question>: What is Res., when Event is "FT 6 - Full Throttle 6"? <context>: CREATE TABLE table_name_83 (res VARCHAR, event VARCHAR)
SELECT res FROM table_name_83 WHERE event = "ft 6 - full throttle 6"
53,870
<question>: What is Opponent, when Event is "ISCF - Southeast Championships"? <context>: CREATE TABLE table_name_17 (opponent VARCHAR, event VARCHAR)
SELECT opponent FROM table_name_17 WHERE event = "iscf - southeast championships"
53,871
<question>: What is Event, when Record is "3-0"? <context>: CREATE TABLE table_name_13 (event VARCHAR, record VARCHAR)
SELECT event FROM table_name_13 WHERE record = "3-0"
53,872
<question>: What is the date of the game against Chelsea when the league position is 14th? <context>: CREATE TABLE table_name_42 (date VARCHAR, opponents VARCHAR, league_position VARCHAR)
SELECT date FROM table_name_42 WHERE opponents = "chelsea" AND league_position = "14th"
53,873
<question>: Which method had a time of 0:46? <context>: CREATE TABLE table_name_85 (method VARCHAR, time VARCHAR)
SELECT method FROM table_name_85 WHERE time = "0:46"
53,874
<question>: In the fight against Brandon Bledsoe, how many rounds did the fight last? <context>: CREATE TABLE table_name_91 (round VARCHAR, opponent VARCHAR)
SELECT round FROM table_name_91 WHERE opponent = "brandon bledsoe"
53,875
<question>: What methos did Keith Wisniewski use in the ufc fight night: teixeira vs. bader? <context>: CREATE TABLE table_name_99 (method VARCHAR, event VARCHAR)
SELECT method FROM table_name_99 WHERE event = "ufc fight night: teixeira vs. bader"
53,876
<question>: What was the maximum speed of the car with 1.556 cc capacity? <context>: CREATE TABLE table_name_45 (vmax VARCHAR, capacity VARCHAR)
SELECT vmax FROM table_name_45 WHERE capacity = "1.556 cc"
53,877
<question>: What was the maximum speed for straight-4, 1.466 cc Type r 150? <context>: CREATE TABLE table_name_60 (vmax VARCHAR, type VARCHAR, cylinder VARCHAR, capacity VARCHAR)
SELECT vmax FROM table_name_60 WHERE cylinder = "straight-4" AND capacity = "1.466 cc" AND type = "r 150"
53,878
<question>: What was the maximum speed for the P4-1 (24/36 ps)? <context>: CREATE TABLE table_name_78 (vmax VARCHAR, type VARCHAR)
SELECT vmax FROM table_name_78 WHERE type = "p4-1 (24/36 ps)"
53,879
<question>: What country is Jack Nicklaus from? <context>: CREATE TABLE table_name_17 (country VARCHAR, player VARCHAR)
SELECT country FROM table_name_17 WHERE player = "jack nicklaus"
53,880
<question>: What was the To par for bill britton when he placed t7? <context>: CREATE TABLE table_name_37 (to_par VARCHAR, place VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_37 WHERE place = "t7" AND player = "bill britton"
53,881
<question>: What was the To par of Jack Nicklaus? <context>: CREATE TABLE table_name_71 (to_par VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_71 WHERE player = "jack nicklaus"
53,882
<question>: What country was the golfer from who had a money amount of 45,000? <context>: CREATE TABLE table_name_39 (country VARCHAR, money___$__ VARCHAR)
SELECT country FROM table_name_39 WHERE money___$__ = "45,000"
53,883
<question>: What was the To par for United States golfer fred couples? <context>: CREATE TABLE table_name_17 (to_par VARCHAR, country VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_17 WHERE country = "united states" AND player = "fred couples"
53,884
<question>: what is the fate when the nationality is french and the ship is pierre lott? <context>: CREATE TABLE table_name_97 (fate VARCHAR, nationality VARCHAR, ship VARCHAR)
SELECT fate FROM table_name_97 WHERE nationality = "french" AND ship = "pierre lott"
53,885
<question>: what is the ship with the date of 28.1.1915? <context>: CREATE TABLE table_name_87 (ship VARCHAR, date VARCHAR)
SELECT ship FROM table_name_87 WHERE date = "28.1.1915"
53,886
<question>: what is the nationality when the ship is willerby? <context>: CREATE TABLE table_name_64 (nationality VARCHAR, ship VARCHAR)
SELECT nationality FROM table_name_64 WHERE ship = "willerby"
53,887
<question>: what is the least tonnage grt when the nationality is british and the ship is kidalton? <context>: CREATE TABLE table_name_84 (tonnage_grt INTEGER, nationality VARCHAR, ship VARCHAR)
SELECT MIN(tonnage_grt) FROM table_name_84 WHERE nationality = "british" AND ship = "kidalton"
53,888
<question>: Can you tell me the Season that has the Team 2 of hanoi acb? <context>: CREATE TABLE table_name_99 (season VARCHAR, team_2 VARCHAR)
SELECT season FROM table_name_99 WHERE team_2 = "hanoi acb"
53,889
<question>: Can you tell me the Team 2 that has the Venue of binh duong stadium, vietnam? <context>: CREATE TABLE table_name_27 (team_2 VARCHAR, venue VARCHAR)
SELECT team_2 FROM table_name_27 WHERE venue = "binh duong stadium, vietnam"
53,890
<question>: Can you tell me the total number of Season that has the Team 2 of chonburi, and the Score of 0:1? <context>: CREATE TABLE table_name_27 (season VARCHAR, team_2 VARCHAR, score VARCHAR)
SELECT COUNT(season) FROM table_name_27 WHERE team_2 = "chonburi" AND score = "0:1"
53,891
<question>: Which Score has a Place of t6, and a Player of raymond floyd? <context>: CREATE TABLE table_name_43 (score VARCHAR, place VARCHAR, player VARCHAR)
SELECT score FROM table_name_43 WHERE place = "t6" AND player = "raymond floyd"
53,892
<question>: How much To par has a Place of t1, and a Score of 70-70-71-71=282? <context>: CREATE TABLE table_name_47 (to_par VARCHAR, place VARCHAR, score VARCHAR)
SELECT COUNT(to_par) FROM table_name_47 WHERE place = "t1" AND score = 70 - 70 - 71 - 71 = 282
53,893
<question>: What is tony lema's to par? <context>: CREATE TABLE table_name_56 (to_par INTEGER, player VARCHAR)
SELECT SUM(to_par) FROM table_name_56 WHERE player = "tony lema"
53,894
<question>: What was gary player's score? <context>: CREATE TABLE table_name_25 (score VARCHAR, player VARCHAR)
SELECT score FROM table_name_25 WHERE player = "gary player"
53,895
<question>: What was the total number for the PIW Class' The Adventures Of... and had a score bigger than 94.6? <context>: CREATE TABLE table_name_56 (year VARCHAR, score VARCHAR, class VARCHAR, program_title VARCHAR)
SELECT COUNT(year) FROM table_name_56 WHERE class = "piw" AND program_title = "the adventures of..." AND score > 94.6
53,896
<question>: What class had a score of 95.1? <context>: CREATE TABLE table_name_33 (class VARCHAR, score VARCHAR)
SELECT class FROM table_name_33 WHERE score = 95.1
53,897
<question>: What is the lowest score for a year before 2008 and had 3rd place? <context>: CREATE TABLE table_name_89 (score INTEGER, year VARCHAR, placement VARCHAR)
SELECT MIN(score) FROM table_name_89 WHERE year < 2008 AND placement = "3rd"
53,898
<question>: What was the latest year placement for Taboo with a score smaller than 96.125? <context>: CREATE TABLE table_name_50 (year INTEGER, program_title VARCHAR, score VARCHAR)
SELECT MAX(year) FROM table_name_50 WHERE program_title = "taboo" AND score < 96.125
53,899
<question>: What is the winning score before 1959, with runner-up Jackie Pung? <context>: CREATE TABLE table_name_87 (winning_score VARCHAR, year VARCHAR, runner_s__up VARCHAR)
SELECT winning_score FROM table_name_87 WHERE year < 1959 AND runner_s__up = "jackie pung"