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