text
stringlengths 114
1.06k
|
---|
### question: What is the listed year that has a rank smaller than 8 and moving from Olympiacos? ### answer: SELECT year FROM table_name_64 WHERE rank < 8 AND moving_from = "olympiacos" ### context: CREATE TABLE table_name_64 (year VARCHAR, rank VARCHAR, moving_from VARCHAR) |
### question: Which team plays in Goa, Salcette? ### answer: SELECT home_venue FROM table_name_63 WHERE state = "goa" AND city = "salcette" ### context: CREATE TABLE table_name_63 (home_venue VARCHAR, state VARCHAR, city VARCHAR) |
### question: Where is the home venue of Bengaluru FC? ### answer: SELECT home_venue FROM table_name_95 WHERE team = "bengaluru fc" ### context: CREATE TABLE table_name_95 (home_venue VARCHAR, team VARCHAR) |
### question: What is the state of the team who plays in Mumbai? ### answer: SELECT state FROM table_name_43 WHERE team = "mumbai" ### context: CREATE TABLE table_name_43 (state VARCHAR, team VARCHAR) |
### question: Where is the city of Maharashtra's Pune team? ### answer: SELECT city FROM table_name_31 WHERE state = "maharashtra" AND team = "pune" ### context: CREATE TABLE table_name_31 (city VARCHAR, state VARCHAR, team VARCHAR) |
### question: How much Money is requested by BassToneSlap? ### answer: SELECT money_requested__£_ FROM table_name_10 WHERE company_or_product_name = "basstoneslap" ### context: CREATE TABLE table_name_10 (money_requested__£_ VARCHAR, company_or_product_name VARCHAR) |
### question: Which Investing Dragon has requested £100,000 and is supported by Entrepreneur Kay Russell? ### answer: SELECT investing_dragon_s_ FROM table_name_43 WHERE money_requested__£_ = "100,000" AND entrepreneur_s_ = "kay russell" ### context: CREATE TABLE table_name_43 (investing_dragon_s_ VARCHAR, money_requested__£_ VARCHAR, entrepreneur_s_ VARCHAR) |
### question: What is the name of the Company or Product that is Episode 3 and is suppoted by Investing Dragon Deborah Meaden? ### answer: SELECT company_or_product_name FROM table_name_83 WHERE episode = "episode 3" AND investing_dragon_s_ = "deborah meaden" ### context: CREATE TABLE table_name_83 (company_or_product_name VARCHAR, episode VARCHAR, investing_dragon_s_ VARCHAR) |
### question: Which Episode has requested £150,000? ### answer: SELECT episode FROM table_name_38 WHERE money_requested__£_ = "150,000" ### context: CREATE TABLE table_name_38 (episode VARCHAR, money_requested__£_ VARCHAR) |
### question: What is the counting method for a network-centric basis? ### answer: SELECT counting_method FROM table_name_89 WHERE basis = "network-centric" ### context: CREATE TABLE table_name_89 (counting_method VARCHAR, basis VARCHAR) |
### question: What is the directed/undirected for mfinder, which has a network-centric basis? ### answer: SELECT directed___undirected FROM table_name_83 WHERE name = "mfinder" AND basis = "network-centric" ### context: CREATE TABLE table_name_83 (directed___undirected VARCHAR, name VARCHAR, basis VARCHAR) |
### question: What is the directed/undirected of fpf (mavisto), which has an induced/non-induced of induced? ### answer: SELECT directed___undirected FROM table_name_25 WHERE induced___non_induced = "induced" AND name = "fpf (mavisto)" ### context: CREATE TABLE table_name_25 (directed___undirected VARCHAR, induced___non_induced VARCHAR, name VARCHAR) |
### question: What is the name of the algorithm with a directed/undirected of both and a subgraph-centric basis? ### answer: SELECT name FROM table_name_12 WHERE directed___undirected = "both" AND basis = "subgraph-centric" ### context: CREATE TABLE table_name_12 (name VARCHAR, directed___undirected VARCHAR, basis VARCHAR) |
### question: What is the directed/undirected for mfinder, which has an induced/non-induced of induced and an exact counting method? ### answer: SELECT directed___undirected FROM table_name_13 WHERE induced___non_induced = "induced" AND counting_method = "exact" AND name = "mfinder" ### context: CREATE TABLE table_name_13 (directed___undirected VARCHAR, name VARCHAR, induced___non_induced VARCHAR, counting_method VARCHAR) |
### question: Who is the opponent for the winner outcome on a hard surface on August 27, 2011? ### answer: SELECT opponent FROM table_name_6 WHERE outcome = "winner" AND surface = "hard" AND date = "august 27, 2011" ### context: CREATE TABLE table_name_6 (opponent VARCHAR, date VARCHAR, outcome VARCHAR, surface VARCHAR) |
### question: What was the outcome on August 5, 2007? ### answer: SELECT outcome FROM table_name_59 WHERE date = "august 5, 2007" ### context: CREATE TABLE table_name_59 (outcome VARCHAR, date VARCHAR) |
### question: What was the score on January 16, 2010? ### answer: SELECT score FROM table_name_25 WHERE date = "january 16, 2010" ### context: CREATE TABLE table_name_25 (score VARCHAR, date VARCHAR) |
### question: What country is Paul Runyan from? ### answer: SELECT country FROM table_name_6 WHERE name = "paul runyan" ### context: CREATE TABLE table_name_6 (country VARCHAR, name VARCHAR) |
### question: What is the To par of Willie MacFarlane from the country of Scotland? ### answer: SELECT to_par FROM table_name_17 WHERE country = "scotland" AND name = "willie macfarlane" ### context: CREATE TABLE table_name_17 (to_par VARCHAR, country VARCHAR, name VARCHAR) |
### question: What country has a To par of +1 and the score of 71-76-70=217? ### answer: SELECT country FROM table_name_25 WHERE to_par = "+1" AND score = 71 - 76 - 70 = 217 ### context: CREATE TABLE table_name_25 (country VARCHAR, to_par VARCHAR, score VARCHAR) |
### question: What player scored 143 goals? ### answer: SELECT player FROM table_name_15 WHERE goals = "143" ### context: CREATE TABLE table_name_15 (player VARCHAR, goals VARCHAR) |
### question: In what season was there a club of South Melbourne? ### answer: SELECT season FROM table_name_75 WHERE club = "south melbourne" ### context: CREATE TABLE table_name_75 (season VARCHAR, club VARCHAR) |
### question: What club scored 143 goals? ### answer: SELECT club FROM table_name_71 WHERE goals = "143" ### context: CREATE TABLE table_name_71 (club VARCHAR, goals VARCHAR) |
### question: In what season did Bob Pratt play? ### answer: SELECT season FROM table_name_86 WHERE player = "bob pratt" ### context: CREATE TABLE table_name_86 (season VARCHAR, player VARCHAR) |
### question: How many goals did the club from Hawthorn score in the 1971 season? ### answer: SELECT goals FROM table_name_5 WHERE club = "hawthorn" AND season = "1971" ### context: CREATE TABLE table_name_5 (goals VARCHAR, club VARCHAR, season VARCHAR) |
### question: What source has july 1 as the date? ### answer: SELECT score FROM table_name_80 WHERE date = "july 1" ### context: CREATE TABLE table_name_80 (score VARCHAR, date VARCHAR) |
### question: Which municipality's area is outer circle south and smaller than 368 km in Akershus County with more than 14,398 people? ### answer: SELECT municipality FROM table_name_2 WHERE area = "outer circle south" AND area_km² < 368 AND county = "akershus" AND population > 14 OFFSET 398 ### context: CREATE TABLE table_name_2 (municipality VARCHAR, population VARCHAR, county VARCHAR, area VARCHAR, area_km² VARCHAR) |
### question: What was the location of the game after game 6? ### answer: SELECT location FROM table_name_80 WHERE game > 6 ### context: CREATE TABLE table_name_80 (location VARCHAR, game INTEGER) |
### question: Who is in February where has September is kristine hanson? ### answer: SELECT february FROM table_name_13 WHERE september = "kristine hanson" ### context: CREATE TABLE table_name_13 (february VARCHAR, september VARCHAR) |
### question: Who is in January where April is chris cranston? ### answer: SELECT january FROM table_name_71 WHERE april = "chris cranston" ### context: CREATE TABLE table_name_71 (january VARCHAR, april VARCHAR) |
### question: Who is in July where October is jill de vries? ### answer: SELECT july FROM table_name_7 WHERE october = "jill de vries" ### context: CREATE TABLE table_name_7 (july VARCHAR, october VARCHAR) |
### question: Who is in November where February is willy rey? ### answer: SELECT november FROM table_name_48 WHERE february = "willy rey" ### context: CREATE TABLE table_name_48 (november VARCHAR, february VARCHAR) |
### question: Who is in November where October is jill de vries? ### answer: SELECT november FROM table_name_71 WHERE october = "jill de vries" ### context: CREATE TABLE table_name_71 (november VARCHAR, october VARCHAR) |
### question: Who is in July where February is linda forsythe? ### answer: SELECT july FROM table_name_8 WHERE february = "linda forsythe" ### context: CREATE TABLE table_name_8 (july VARCHAR, february VARCHAR) |
### question: What were the remarks for Dutch Antilles Express? ### answer: SELECT remarks FROM table_name_74 WHERE airline = "dutch antilles express" ### context: CREATE TABLE table_name_74 (remarks VARCHAR, airline VARCHAR) |
### question: What were the remarks for a destination under 19 and rank less than 5? ### answer: SELECT remarks FROM table_name_83 WHERE destination_number < 19 AND rank < 5 ### context: CREATE TABLE table_name_83 (remarks VARCHAR, destination_number VARCHAR, rank VARCHAR) |
### question: Name the date when the attendance is more than 45,817 ### answer: SELECT date FROM table_name_65 WHERE attendance > 45 OFFSET 817 ### context: CREATE TABLE table_name_65 (date VARCHAR, attendance INTEGER) |
### question: Name the score for september 25 ### answer: SELECT score FROM table_name_93 WHERE date = "september 25" ### context: CREATE TABLE table_name_93 (score VARCHAR, date VARCHAR) |
### question: What is the lowest year that has athens, greece as the venue? ### answer: SELECT MIN(year) FROM table_name_83 WHERE venue = "athens, greece" ### context: CREATE TABLE table_name_83 (year INTEGER, venue VARCHAR) |
### question: Which venue has 1st as the result? ### answer: SELECT venue FROM table_name_45 WHERE result = "1st" ### context: CREATE TABLE table_name_45 (venue VARCHAR, result VARCHAR) |
### question: What extra has world championships as the tournament, and 1st as the result? ### answer: SELECT extra FROM table_name_2 WHERE tournament = "world championships" AND result = "1st" ### context: CREATE TABLE table_name_2 (extra VARCHAR, tournament VARCHAR, result VARCHAR) |
### question: For all countries with 7 bronze medals and a total number of medals less than 13, what's the sum of silver medals? ### answer: SELECT SUM(silver) FROM table_name_88 WHERE bronze = 7 AND total < 13 ### context: CREATE TABLE table_name_88 (silver INTEGER, bronze VARCHAR, total VARCHAR) |
### question: For countries with total number of medals less than 5 and more than 2 bronze medals, what's the lowest number of gold medals? ### answer: SELECT MIN(gold) FROM table_name_92 WHERE total < 5 AND bronze > 2 ### context: CREATE TABLE table_name_92 (gold INTEGER, total VARCHAR, bronze VARCHAR) |
### question: Which Class has Laps of 31? ### answer: SELECT class FROM table_name_74 WHERE laps = 31 ### context: CREATE TABLE table_name_74 (class VARCHAR, laps VARCHAR) |
### question: What country team had Thurles Sarsfields? ### answer: SELECT county_team FROM table_name_8 WHERE club_team_s_ = "thurles sarsfields" ### context: CREATE TABLE table_name_8 (county_team VARCHAR, club_team_s_ VARCHAR) |
### question: How many club teams had more than 14 people? ### answer: SELECT club_team_s_ FROM table_name_52 WHERE team_number > 14 ### context: CREATE TABLE table_name_52 (club_team_s_ VARCHAR, team_number INTEGER) |
### question: Who is from Spain with a to par of e? ### answer: SELECT player FROM table_name_11 WHERE to_par = "e" AND country = "spain" ### context: CREATE TABLE table_name_11 (player VARCHAR, to_par VARCHAR, country VARCHAR) |
### question: Where was Steve Stricker from? ### answer: SELECT place FROM table_name_10 WHERE player = "steve stricker" ### context: CREATE TABLE table_name_10 (place VARCHAR, player VARCHAR) |
### question: Which country has 69 score? ### answer: SELECT country FROM table_name_41 WHERE score = 69 ### context: CREATE TABLE table_name_41 (country VARCHAR, score VARCHAR) |
### question: How many laps were there when the start was 12? ### answer: SELECT COUNT(laps) FROM table_name_69 WHERE start = "12" ### context: CREATE TABLE table_name_69 (laps VARCHAR, start VARCHAR) |
### question: What was the qual when the rank was 2? ### answer: SELECT qual FROM table_name_63 WHERE rank = "2" ### context: CREATE TABLE table_name_63 (qual VARCHAR, rank VARCHAR) |
### question: Tell me the call sign which has a frequency Mhz more than 90.1 and ERP W of 1 ### answer: SELECT call_sign FROM table_name_83 WHERE frequency_mhz > 90.1 AND erp_w = 1 ### context: CREATE TABLE table_name_83 (call_sign VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR) |
### question: Name the total number of ERP W when the call sign is w217bf ### answer: SELECT COUNT(erp_w) FROM table_name_8 WHERE call_sign = "w217bf" ### context: CREATE TABLE table_name_8 (erp_w VARCHAR, call_sign VARCHAR) |
### question: Name the total number of frequency Mhz for when it has ERP W of 1 and call sign of w215bj ### answer: SELECT COUNT(frequency_mhz) FROM table_name_22 WHERE erp_w = 1 AND call_sign = "w215bj" ### context: CREATE TABLE table_name_22 (frequency_mhz VARCHAR, erp_w VARCHAR, call_sign VARCHAR) |
### question: Name the average ERP W when it has a city of license of pound, virginia and frequency mhz more than 91.3 ### answer: SELECT AVG(erp_w) FROM table_name_90 WHERE city_of_license = "pound, virginia" AND frequency_mhz > 91.3 ### context: CREATE TABLE table_name_90 (erp_w INTEGER, city_of_license VARCHAR, frequency_mhz VARCHAR) |
### question: What is the Score that has a Result of 2–2 on 04 Dec 2005? ### answer: SELECT score FROM table_name_47 WHERE result = "2–2" AND date = "04 dec 2005" ### context: CREATE TABLE table_name_47 (score VARCHAR, result VARCHAR, date VARCHAR) |
### question: What is the Result on 26 jan 2005? ### answer: SELECT result FROM table_name_38 WHERE date = "26 jan 2005" ### context: CREATE TABLE table_name_38 (result VARCHAR, date VARCHAR) |
### question: What is the Venue on 26 jan 2005 ### answer: SELECT venue FROM table_name_12 WHERE date = "26 jan 2005" ### context: CREATE TABLE table_name_12 (venue VARCHAR, date VARCHAR) |
### question: What is the Competition On 26 jan 2005 ### answer: SELECT competition FROM table_name_43 WHERE date = "26 jan 2005" ### context: CREATE TABLE table_name_43 (competition VARCHAR, date VARCHAR) |
### question: What is the Score of West Asian Games 2005 on 10 dec 2005? ### answer: SELECT score FROM table_name_44 WHERE competition = "west asian games 2005" AND date = "10 dec 2005" ### context: CREATE TABLE table_name_44 (score VARCHAR, competition VARCHAR, date VARCHAR) |
### question: How many matches were drawn by a team with 447 points? ### answer: SELECT drawn FROM table_name_1 WHERE points_for = "447" ### context: CREATE TABLE table_name_1 (drawn VARCHAR, points_for VARCHAR) |
### question: For teams with 22 matches played, a losing bonus of 3, and 45 tries against, what was the number of points against? ### answer: SELECT points_against FROM table_name_10 WHERE played = "22" AND losing_bonus = "3" AND tries_against = "45" ### context: CREATE TABLE table_name_10 (points_against VARCHAR, tries_against VARCHAR, played VARCHAR, losing_bonus VARCHAR) |
### question: For a team with 332 points for, what was the try bonus? ### answer: SELECT try_bonus FROM table_name_16 WHERE points_for = "332" ### context: CREATE TABLE table_name_16 (try_bonus VARCHAR, points_for VARCHAR) |
### question: Which club has a try bonus of 9 and 43 tries against? ### answer: SELECT club FROM table_name_38 WHERE tries_against = "43" AND try_bonus = "9" ### context: CREATE TABLE table_name_38 (club VARCHAR, tries_against VARCHAR, try_bonus VARCHAR) |
### question: How many matches were played by the team that has 473 points for? ### answer: SELECT played FROM table_name_31 WHERE points_for = "473" ### context: CREATE TABLE table_name_31 (played VARCHAR, points_for VARCHAR) |
### question: What is the qual when there are 125 laps? ### answer: SELECT qual FROM table_name_6 WHERE laps = 125 ### context: CREATE TABLE table_name_6 (qual VARCHAR, laps VARCHAR) |
### question: What is the rank when there are more than 107 laps and the qual is 137.825? ### answer: SELECT rank FROM table_name_26 WHERE laps > 107 AND qual = "137.825" ### context: CREATE TABLE table_name_26 (rank VARCHAR, laps VARCHAR, qual VARCHAR) |
### question: What is the rank with more than 40 laps and a 23 finish? ### answer: SELECT rank FROM table_name_64 WHERE laps > 40 AND finish = "23" ### context: CREATE TABLE table_name_64 (rank VARCHAR, laps VARCHAR, finish VARCHAR) |
### question: What is the finish in 1953? ### answer: SELECT finish FROM table_name_75 WHERE year = "1953" ### context: CREATE TABLE table_name_75 (finish VARCHAR, year VARCHAR) |
### question: In what year was the rank 24? ### answer: SELECT year FROM table_name_96 WHERE rank = "24" ### context: CREATE TABLE table_name_96 (year VARCHAR, rank VARCHAR) |
### question: Which To par has $100 in money played by Vic Ghezzi? ### answer: SELECT to_par FROM table_name_88 WHERE money___$__ = 100 AND player = "vic ghezzi" ### context: CREATE TABLE table_name_88 (to_par VARCHAR, money___$__ VARCHAR, player VARCHAR) |
### question: What is the monetary sum with a score of 75-71-75-72=293? ### answer: SELECT SUM(money___) AS $__ FROM table_name_12 WHERE score = 75 - 71 - 75 - 72 = 293 ### context: CREATE TABLE table_name_12 (money___ INTEGER, score VARCHAR) |
### question: Which Wednesday has a Saturday of གཟའ་སྤེན་པ།? ### answer: SELECT wednesday FROM table_name_23 WHERE saturday = "གཟའ་སྤེན་པ།" ### context: CREATE TABLE table_name_23 (wednesday VARCHAR, saturday VARCHAR) |
### question: Which Wednesday has a Sunday of གཟའ་ཉི་མ།? ### answer: SELECT wednesday FROM table_name_16 WHERE sunday = "གཟའ་ཉི་མ།" ### context: CREATE TABLE table_name_16 (wednesday VARCHAR, sunday VARCHAR) |
### question: Which Tuesday has a Saturday of 土曜日 doyōbi? ### answer: SELECT tuesday FROM table_name_94 WHERE saturday = "土曜日 doyōbi" ### context: CREATE TABLE table_name_94 (tuesday VARCHAR, saturday VARCHAR) |
### question: Which Thursday has a Wednesday of 星期三 xingqisen? ### answer: SELECT thursday FROM table_name_51 WHERE wednesday = "星期三 xingqisen" ### context: CREATE TABLE table_name_51 (thursday VARCHAR, wednesday VARCHAR) |
### question: Which Wednesday has a Monday of 月曜日 getsuyōbi? ### answer: SELECT wednesday FROM table_name_46 WHERE monday = "月曜日 getsuyōbi" ### context: CREATE TABLE table_name_46 (wednesday VARCHAR, monday VARCHAR) |
### question: Which Saturday has a Thursday of 木曜日 mokuyōbi ### answer: SELECT saturday FROM table_name_8 WHERE thursday = "木曜日 mokuyōbi" ### context: CREATE TABLE table_name_8 (saturday VARCHAR, thursday VARCHAR) |
### question: What loss was against the angels with a 50-31 record? ### answer: SELECT loss FROM table_name_84 WHERE opponent = "angels" AND record = "50-31" ### context: CREATE TABLE table_name_84 (loss VARCHAR, opponent VARCHAR, record VARCHAR) |
### question: Who is the pilot on September 27, 1972? ### answer: SELECT pilot FROM table_name_42 WHERE date = "september 27, 1972" ### context: CREATE TABLE table_name_42 (pilot VARCHAR, date VARCHAR) |
### question: What is the lowest altitude of the flight with a mach bigger than 0.905 and a duration of 00:06:17? ### answer: SELECT MIN(altitude__ft_) FROM table_name_80 WHERE mach > 0.905 AND duration = "00:06:17" ### context: CREATE TABLE table_name_80 (altitude__ft_ INTEGER, mach VARCHAR, duration VARCHAR) |
### question: Which wicket had a 100 (45) Runs (balls) amount? ### answer: SELECT wicket FROM table_name_43 WHERE runs__balls_ = "100 (45)" ### context: CREATE TABLE table_name_43 (wicket VARCHAR, runs__balls_ VARCHAR) |
### question: Which Wicket was it that had a 104 (69) Runs (balls) amount? ### answer: SELECT wicket FROM table_name_55 WHERE runs__balls_ = "104 (69)" ### context: CREATE TABLE table_name_55 (wicket VARCHAR, runs__balls_ VARCHAR) |
### question: What is the item for Leagues entering, when the value for Clubs is 8 → 4? ### answer: SELECT leagues_entering FROM table_name_69 WHERE clubs = "8 → 4" ### context: CREATE TABLE table_name_69 (leagues_entering VARCHAR, clubs VARCHAR) |
### question: What is the Round when the value for Fixtures is 2? ### answer: SELECT round FROM table_name_31 WHERE fixtures = 2 ### context: CREATE TABLE table_name_31 (round VARCHAR, fixtures VARCHAR) |
### question: What is the value for New entries, when the value for Fixtures is less than 16, and when the value for Clubs is 4 → 2? ### answer: SELECT new_entries FROM table_name_7 WHERE fixtures < 16 AND clubs = "4 → 2" ### context: CREATE TABLE table_name_7 (new_entries VARCHAR, fixtures VARCHAR, clubs VARCHAR) |
### question: What is the value for New entries, when the value for Fixtures is 2? ### answer: SELECT new_entries FROM table_name_71 WHERE fixtures = 2 ### context: CREATE TABLE table_name_71 (new_entries VARCHAR, fixtures VARCHAR) |
### question: Which date has a format's album? ### answer: SELECT date FROM table_name_31 WHERE format_s_ = "album" ### context: CREATE TABLE table_name_31 (date VARCHAR, format_s_ VARCHAR) |
### question: What is the title for year 1991 and a date of March 21? ### answer: SELECT title FROM table_name_87 WHERE year = 1991 AND date = "march 21" ### context: CREATE TABLE table_name_87 (title VARCHAR, year VARCHAR, date VARCHAR) |
### question: What is the average year with an award of platinum? ### answer: SELECT AVG(year) FROM table_name_44 WHERE award_description_s_ = "platinum" ### context: CREATE TABLE table_name_44 (year INTEGER, award_description_s_ VARCHAR) |
### question: What are the results of Format single on March 21? ### answer: SELECT result_s_ FROM table_name_34 WHERE format_s_ = "single" AND date = "march 21" ### context: CREATE TABLE table_name_34 (result_s_ VARCHAR, format_s_ VARCHAR, date VARCHAR) |
### question: What are the award description with Format album? ### answer: SELECT award_description_s_ FROM table_name_84 WHERE format_s_ = "album" ### context: CREATE TABLE table_name_84 (award_description_s_ VARCHAR, format_s_ VARCHAR) |
### question: What is the largest number of goals with less than 101 assists and 172 points? ### answer: SELECT MAX(goals) FROM table_name_97 WHERE assists < 101 AND points < 172 ### context: CREATE TABLE table_name_97 (goals INTEGER, assists VARCHAR, points VARCHAR) |
### question: How many total points does Mike Hyndman have with more than 119 assists? ### answer: SELECT SUM(points) FROM table_name_98 WHERE player = "mike hyndman" AND assists > 119 ### context: CREATE TABLE table_name_98 (points INTEGER, player VARCHAR, assists VARCHAR) |
### question: How many assists does David Tomlinson have? ### answer: SELECT SUM(assists) FROM table_name_71 WHERE player = "david tomlinson" ### context: CREATE TABLE table_name_71 (assists INTEGER, player VARCHAR) |
### question: How many points does Shawn Mceachern with less than 79 goals? ### answer: SELECT SUM(points) FROM table_name_25 WHERE player = "shawn mceachern" AND goals < 79 ### context: CREATE TABLE table_name_25 (points INTEGER, player VARCHAR, goals VARCHAR) |
### question: How many goals does Mike Eruzione have in total? ### answer: SELECT goals FROM table_name_6 WHERE player = "mike eruzione" ### context: CREATE TABLE table_name_6 (goals VARCHAR, player VARCHAR) |
### question: Which rider had fewer than 10 laps for the Aprilia manufacturer, finishing in retirement? ### answer: SELECT rider FROM table_name_22 WHERE laps < 10 AND manufacturer = "aprilia" AND time_retired = "retirement" ### context: CREATE TABLE table_name_22 (rider VARCHAR, time_retired VARCHAR, laps VARCHAR, manufacturer VARCHAR) |
### question: What is the time for a grid greater than 20, fewer than 26 laps, and the Aprilia manufacturer? ### answer: SELECT time_retired FROM table_name_86 WHERE grid > 20 AND laps < 26 AND manufacturer = "aprilia" ### context: CREATE TABLE table_name_86 (time_retired VARCHAR, manufacturer VARCHAR, grid VARCHAR, laps VARCHAR) |
### question: Which rider had more than 23 laps, a manufacturer of Aprilia, and a grid of 14 ### answer: SELECT rider FROM table_name_95 WHERE laps > 23 AND manufacturer = "aprilia" AND grid = 14 ### context: CREATE TABLE table_name_95 (rider VARCHAR, grid VARCHAR, laps VARCHAR, manufacturer VARCHAR) |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.