text
stringlengths
114
1.06k
### question: Where was home with a record of 7–5–2? ### answer: SELECT home FROM table_name_77 WHERE record = "7–5–2" ### context: CREATE TABLE table_name_77 (home VARCHAR, record VARCHAR)
### question: On what date was the record 8–6–3? ### answer: SELECT date FROM table_name_14 WHERE record = "8–6–3" ### context: CREATE TABLE table_name_14 (date VARCHAR, record VARCHAR)
### question: What was the score when Pittsburgh was the visitor? ### answer: SELECT score FROM table_name_42 WHERE visitor = "pittsburgh" ### context: CREATE TABLE table_name_42 (score VARCHAR, visitor VARCHAR)
### question: On what date were the NY Rangers home? ### answer: SELECT date FROM table_name_98 WHERE home = "ny rangers" ### context: CREATE TABLE table_name_98 (date VARCHAR, home VARCHAR)
### question: Which visitor had a record of 7–5–3? ### answer: SELECT visitor FROM table_name_49 WHERE record = "7–5–3" ### context: CREATE TABLE table_name_49 (visitor VARCHAR, record VARCHAR)
### question: Who was home when Detroit was visiting with a score of 4 – 1? ### answer: SELECT home FROM table_name_89 WHERE visitor = "detroit" AND score = "4 – 1" ### context: CREATE TABLE table_name_89 (home VARCHAR, visitor VARCHAR, score VARCHAR)
### question: What is the earliest date with Great Expectations label with LP format? ### answer: SELECT MIN(date) FROM table_name_92 WHERE label = "great expectations" AND format = "lp" ### context: CREATE TABLE table_name_92 (date INTEGER, label VARCHAR, format VARCHAR)
### question: What format was used for Mobil 1? ### answer: SELECT format FROM table_name_21 WHERE catalog = "mobil 1" ### context: CREATE TABLE table_name_21 (format VARCHAR, catalog VARCHAR)
### question: what team won the friendly match ### answer: SELECT result FROM table_name_98 WHERE competition = "friendly match" ### context: CREATE TABLE table_name_98 (result VARCHAR, competition VARCHAR)
### question: Which Runner-up has a Last win smaller than 1998, and Wins of 1, and a Rank larger than 13? ### answer: SELECT COUNT(runner_up) FROM table_name_71 WHERE last_win < 1998 AND wins = 1 AND rank > 13 ### context: CREATE TABLE table_name_71 (runner_up VARCHAR, rank VARCHAR, last_win VARCHAR, wins VARCHAR)
### question: How many Last wins have a Club of mansfield town, and Wins smaller than 1? ### answer: SELECT COUNT(last_win) FROM table_name_42 WHERE club = "mansfield town" AND wins < 1 ### context: CREATE TABLE table_name_42 (last_win VARCHAR, club VARCHAR, wins VARCHAR)
### question: Which Driver has a Date of 16th september 1951, and a Race of dns? ### answer: SELECT driver FROM table_name_8 WHERE date = "16th september 1951" AND race = "dns" ### context: CREATE TABLE table_name_8 (driver VARCHAR, date VARCHAR, race VARCHAR)
### question: At which race did reg parnell win the goodwood trophy? ### answer: SELECT race FROM table_name_47 WHERE event = "goodwood trophy" AND driver = "reg parnell" ### context: CREATE TABLE table_name_47 (race VARCHAR, event VARCHAR, driver VARCHAR)
### question: Which Race has a Date of 31st may 1953, and an Event of grand prix de l'albigeois final? ### answer: SELECT race FROM table_name_20 WHERE date = "31st may 1953" AND event = "grand prix de l'albigeois final" ### context: CREATE TABLE table_name_20 (race VARCHAR, date VARCHAR, event VARCHAR)
### question: What's the average total cargo in metric tonnes that has an 11.8% Change? ### answer: SELECT AVG(total_cargo__metric_tonnes_) FROM table_name_97 WHERE _percentage_change = "11.8%" ### context: CREATE TABLE table_name_97 (total_cargo__metric_tonnes_ INTEGER, _percentage_change VARCHAR)
### question: What is the highest rank of Tokyo International Airport? ### answer: SELECT MAX(rank) FROM table_name_72 WHERE airport = "tokyo international airport" ### context: CREATE TABLE table_name_72 (rank INTEGER, airport VARCHAR)
### question: Where the games are smaller than 5 and the points are 6, what is the average lost? ### answer: SELECT AVG(lost) FROM table_name_92 WHERE points = 6 AND games < 5 ### context: CREATE TABLE table_name_92 (lost INTEGER, points VARCHAR, games VARCHAR)
### question: with build 5/69-6/69 what's the order? ### answer: SELECT SUM(order) FROM table_name_89 WHERE built = "5/69-6/69" ### context: CREATE TABLE table_name_89 (order INTEGER, built VARCHAR)
### question: Which Outcome has a Score of 6–2, 6–2? ### answer: SELECT outcome FROM table_name_20 WHERE score = "6–2, 6–2" ### context: CREATE TABLE table_name_20 (outcome VARCHAR, score VARCHAR)
### question: Which Date has an Outcome of winner, and a Score of 7–5, 6–4? ### answer: SELECT date FROM table_name_69 WHERE outcome = "winner" AND score = "7–5, 6–4" ### context: CREATE TABLE table_name_69 (date VARCHAR, outcome VARCHAR, score VARCHAR)
### question: Which Tournament has an Outcome of winner, and a Surface of clay, and a Score of 6–4, 6–1? ### answer: SELECT tournament FROM table_name_23 WHERE outcome = "winner" AND surface = "clay" AND score = "6–4, 6–1" ### context: CREATE TABLE table_name_23 (tournament VARCHAR, score VARCHAR, outcome VARCHAR, surf...
### question: What was the outcome in mari andersson's tournament? ### answer: SELECT outcome FROM table_name_41 WHERE opponent = "mari andersson" ### context: CREATE TABLE table_name_41 (outcome VARCHAR, opponent VARCHAR)
### question: What's the loss of the game with the opponent of the Nationals with a score of 7-1? ### answer: SELECT loss FROM table_name_69 WHERE opponent = "nationals" AND score = "7-1" ### context: CREATE TABLE table_name_69 (loss VARCHAR, opponent VARCHAR, score VARCHAR)
### question: Which opponent has a record of 70-52? ### answer: SELECT opponent FROM table_name_77 WHERE record = "70-52" ### context: CREATE TABLE table_name_77 (opponent VARCHAR, record VARCHAR)
### question: What is the attendance of the game that has the opponent of The Nationals with a record of 68-51? ### answer: SELECT SUM(attendance) FROM table_name_42 WHERE opponent = "nationals" AND record = "68-51" ### context: CREATE TABLE table_name_42 (attendance INTEGER, opponent VARCHAR, record VARCHAR)
### question: What's the attendance of the game with a score of 5-4? ### answer: SELECT attendance FROM table_name_52 WHERE score = "5-4" ### context: CREATE TABLE table_name_52 (attendance VARCHAR, score VARCHAR)
### question: Who's the opponent of the game with the record 64-51? ### answer: SELECT opponent FROM table_name_60 WHERE record = "64-51" ### context: CREATE TABLE table_name_60 (opponent VARCHAR, record VARCHAR)
### question: Who were the opponents in games before number 54? ### answer: SELECT opponent FROM table_name_41 WHERE game < 54 ### context: CREATE TABLE table_name_41 (opponent VARCHAR, game INTEGER)
### question: what was the score of bert yancey ### answer: SELECT score FROM table_name_83 WHERE player = "bert yancey" ### context: CREATE TABLE table_name_83 (score VARCHAR, player VARCHAR)
### question: What is the Length/Fuel of the bus with a Quantity of 30? ### answer: SELECT length_fuel FROM table_name_22 WHERE quantity = 30 ### context: CREATE TABLE table_name_22 (length_fuel VARCHAR, quantity VARCHAR)
### question: What is the Length/Fuel of the bus built between 2000-2003 with a high Floor Styling? ### answer: SELECT length_fuel FROM table_name_91 WHERE floor_styling = "high" AND year_built = "2000-2003" ### context: CREATE TABLE table_name_91 (length_fuel VARCHAR, floor_styling VARCHAR, year_built VARCHAR)
### question: In what Venue was the game with a Friendly Competition and 1 Goal played? ### answer: SELECT venue FROM table_name_29 WHERE competition = "friendly" AND goal = 1 ### context: CREATE TABLE table_name_29 (venue VARCHAR, competition VARCHAR, goal VARCHAR)
### question: What is the amount of money that a +5 to par with a score of 76-69-70-70=285? ### answer: SELECT COUNT(money___) AS $__ FROM table_name_28 WHERE to_par = "+5" AND score = 76 - 69 - 70 - 70 = 285 ### context: CREATE TABLE table_name_28 (money___ VARCHAR, to_par VARCHAR, score VARCHAR)
### question: What is the name of the player with a 71-69-71-69=280 score? ### answer: SELECT player FROM table_name_79 WHERE score = 71 - 69 - 71 - 69 = 280 ### context: CREATE TABLE table_name_79 (player VARCHAR, score VARCHAR)
### question: Which average Game # has a Home of san jose, and Points smaller than 71? ### answer: SELECT AVG(game__number) FROM table_name_95 WHERE home = "san jose" AND points < 71 ### context: CREATE TABLE table_name_95 (game__number INTEGER, home VARCHAR, points VARCHAR)
### question: Which Home has a Game # of 59? ### answer: SELECT home FROM table_name_27 WHERE game__number = 59 ### context: CREATE TABLE table_name_27 (home VARCHAR, game__number VARCHAR)
### question: Which Visitor has a Game # larger than 62, and a Date of february 25? ### answer: SELECT visitor FROM table_name_99 WHERE game__number > 62 AND date = "february 25" ### context: CREATE TABLE table_name_99 (visitor VARCHAR, game__number VARCHAR, date VARCHAR)
### question: with delivery date of 2001 2001 what is the owns? ### answer: SELECT owns FROM table_name_93 WHERE delivery_date = "2001 2001" ### context: CREATE TABLE table_name_93 (owns VARCHAR, delivery_date VARCHAR)
### question: with delivery date of 2001 2001 what is gross tonnage? ### answer: SELECT AVG(gross_tonnage) FROM table_name_35 WHERE delivery_date = "2001 2001" ### context: CREATE TABLE table_name_35 (gross_tonnage INTEGER, delivery_date VARCHAR)
### question: with delivery date 1997 1997 what is the owns? ### answer: SELECT owns FROM table_name_65 WHERE delivery_date = "1997 1997" ### context: CREATE TABLE table_name_65 (owns VARCHAR, delivery_date VARCHAR)
### question: Which conference does the school from Gainesville, Florida, play in? ### answer: SELECT present_conference FROM table_name_5 WHERE location = "gainesville, florida" ### context: CREATE TABLE table_name_5 (present_conference VARCHAR, location VARCHAR)
### question: What is the number of enrollments for teams named the Buccaneers founded before 1911? ### answer: SELECT COUNT(enrollment) FROM table_name_23 WHERE nickname = "buccaneers" AND founded < 1911 ### context: CREATE TABLE table_name_23 (enrollment VARCHAR, nickname VARCHAR, founded VARCHAR)
### question: What is the highest chart number for the song Yardbirds aka Roger the Engineer? ### answer: SELECT MAX(chart_no) FROM table_name_17 WHERE title = "yardbirds aka roger the engineer" ### context: CREATE TABLE table_name_17 (chart_no INTEGER, title VARCHAR)
### question: What is the average chart number for 11/1965? ### answer: SELECT AVG(chart_no) FROM table_name_97 WHERE date = "11/1965" ### context: CREATE TABLE table_name_97 (chart_no INTEGER, date VARCHAR)
### question: What is origin country for a title that charted at 52? ### answer: SELECT origin FROM table_name_84 WHERE chart_no = 52 ### context: CREATE TABLE table_name_84 (origin VARCHAR, chart_no VARCHAR)
### question: What is the Record of the Game after 40 with New York Rangers as Opponent? ### answer: SELECT record FROM table_name_5 WHERE game > 40 AND opponent = "new york rangers" ### context: CREATE TABLE table_name_5 (record VARCHAR, game VARCHAR, opponent VARCHAR)
### question: When did Adam Thompson play in the final? ### answer: SELECT date FROM table_name_47 WHERE opponent_in_the_final = "adam thompson" ### context: CREATE TABLE table_name_47 (date VARCHAR, opponent_in_the_final VARCHAR)
### question: When was the Lagos tournament? ### answer: SELECT date FROM table_name_84 WHERE tournament = "lagos" ### context: CREATE TABLE table_name_84 (date VARCHAR, tournament VARCHAR)
### question: What was the score against the phillies on may 24? ### answer: SELECT score FROM table_name_28 WHERE opponent = "phillies" AND date = "may 24" ### context: CREATE TABLE table_name_28 (score VARCHAR, opponent VARCHAR, date VARCHAR)
### question: Opponent of new england patriots had what attendance? ### answer: SELECT attendance FROM table_name_13 WHERE opponent = "new england patriots" ### context: CREATE TABLE table_name_13 (attendance VARCHAR, opponent VARCHAR)
### question: Attendance of 55,340 had what opponent? ### answer: SELECT opponent FROM table_name_58 WHERE attendance = "55,340" ### context: CREATE TABLE table_name_58 (opponent VARCHAR, attendance VARCHAR)
### question: Week smaller than 4, and a Game Site of rca dome, and a Opponent of new england patriots involves what date? ### answer: SELECT date FROM table_name_12 WHERE week < 4 AND game_site = "rca dome" AND opponent = "new england patriots" ### context: CREATE TABLE table_name_12 (date VARCHAR, opponent VARCHAR, w...
### question: Record of 0–8 had what result? ### answer: SELECT result FROM table_name_33 WHERE record = "0–8" ### context: CREATE TABLE table_name_33 (result VARCHAR, record VARCHAR)
### question: Record of 0–8 had what lowest week? ### answer: SELECT MIN(week) FROM table_name_25 WHERE record = "0–8" ### context: CREATE TABLE table_name_25 (week INTEGER, record VARCHAR)
### question: What was the score when the visitor was pittsburgh? ### answer: SELECT score FROM table_name_51 WHERE visitor = "pittsburgh" ### context: CREATE TABLE table_name_51 (score VARCHAR, visitor VARCHAR)
### question: What was the decision on November 26? ### answer: SELECT decision FROM table_name_18 WHERE date = "november 26" ### context: CREATE TABLE table_name_18 (decision VARCHAR, date VARCHAR)
### question: What is the USN 2013 ranking with a BW 2013 ranking less than 1000, a Forbes 2011 ranking larger than 17, and a CNN 2011 ranking less than 13? ### answer: SELECT SUM(usn_2013) FROM table_name_63 WHERE bw_2013 < 1000 AND forbes_2011 > 17 AND cnn_2011 < 13 ### context: CREATE TABLE table_name_63 (usn_2013 I...
### question: What is the average AE 2011 ranking with a Forbes 2011 ranking of 24 and a FT 2011 ranking less than 44? ### answer: SELECT AVG(ae_2011) FROM table_name_21 WHERE forbes_2011 = 24 AND ft_2011 < 44 ### context: CREATE TABLE table_name_21 (ae_2011 INTEGER, forbes_2011 VARCHAR, ft_2011 VARCHAR)
### question: Who did they play at lincoln financial field at 8:30 (ET) after week 14? ### answer: SELECT opponent FROM table_name_88 WHERE week > 14 AND game_site = "lincoln financial field" AND time__et_ = "8:30" ### context: CREATE TABLE table_name_88 (opponent VARCHAR, time__et_ VARCHAR, week VARCHAR, game_site VAR...
### question: What is the average rank for nations with fewer than 0 gold medals? ### answer: SELECT AVG(rank) FROM table_name_86 WHERE gold < 0 ### context: CREATE TABLE table_name_86 (rank INTEGER, gold INTEGER)
### question: What is the total number of bronze medals with more than 1 medal total and fewer than 1 silver medal? ### answer: SELECT COUNT(bronze) FROM table_name_8 WHERE total > 1 AND silver < 1 ### context: CREATE TABLE table_name_8 (bronze VARCHAR, total VARCHAR, silver VARCHAR)
### question: What is the highest rank of a nation with fewer than 0 silver medals? ### answer: SELECT MAX(rank) FROM table_name_43 WHERE silver < 0 ### context: CREATE TABLE table_name_43 (rank INTEGER, silver INTEGER)
### question: Which Bats have a First of josh, and Throws of r, and a Surname of cakebread? ### answer: SELECT bats FROM table_name_90 WHERE first = "josh" AND throws = "r" AND surname = "cakebread" ### context: CREATE TABLE table_name_90 (bats VARCHAR, surname VARCHAR, first VARCHAR, throws VARCHAR)
### question: Which DOB has Throws of r, and a Position of c, and a First of torey? ### answer: SELECT dob FROM table_name_25 WHERE throws = "r" AND position = "c" AND first = "torey" ### context: CREATE TABLE table_name_25 (dob VARCHAR, first VARCHAR, throws VARCHAR, position VARCHAR)
### question: Which DOB has a Surname of cresswell? ### answer: SELECT dob FROM table_name_40 WHERE surname = "cresswell" ### context: CREATE TABLE table_name_40 (dob VARCHAR, surname VARCHAR)
### question: Which DOB has Bats of r, and Throws of r, and a Position of rhp, and a First of john? ### answer: SELECT dob FROM table_name_58 WHERE bats = "r" AND throws = "r" AND position = "rhp" AND first = "john" ### context: CREATE TABLE table_name_58 (dob VARCHAR, first VARCHAR, position VARCHAR, bats VARCHAR, thr...
### question: Which Position did Ruzic play? ### answer: SELECT position FROM table_name_30 WHERE surname = "ruzic" ### context: CREATE TABLE table_name_30 (position VARCHAR, surname VARCHAR)
### question: How many throws did Torey have? ### answer: SELECT throws FROM table_name_77 WHERE first = "torey" ### context: CREATE TABLE table_name_77 (throws VARCHAR, first VARCHAR)
### question: Which Ties is the highest one that has Losses smaller than 9, and Starts of 26, and Wins smaller than 21? ### answer: SELECT MAX(ties) FROM table_name_65 WHERE losses < 9 AND starts = 26 AND wins < 21 ### context: CREATE TABLE table_name_65 (ties INTEGER, wins VARCHAR, losses VARCHAR, starts VARCHAR)
### question: Which Win % has a Name of tony rice, and Wins smaller than 28? ### answer: SELECT COUNT(win__percentage) FROM table_name_73 WHERE name = "tony rice" AND wins < 28 ### context: CREATE TABLE table_name_73 (win__percentage VARCHAR, name VARCHAR, wins VARCHAR)
### question: Which Wins have a Win % smaller than 0.8270000000000001, and a Name of rick mirer, and Ties smaller than 1? ### answer: SELECT SUM(wins) FROM table_name_17 WHERE win__percentage < 0.8270000000000001 AND name = "rick mirer" AND ties < 1 ### context: CREATE TABLE table_name_17 (wins INTEGER, ties VARCHAR, w...
### question: How many Losses have a Name of blair kiel? ### answer: SELECT COUNT(losses) FROM table_name_45 WHERE name = "blair kiel" ### context: CREATE TABLE table_name_45 (losses VARCHAR, name VARCHAR)
### question: Which Losses have a Name of jimmy clausen? ### answer: SELECT AVG(losses) FROM table_name_39 WHERE name = "jimmy clausen" ### context: CREATE TABLE table_name_39 (losses INTEGER, name VARCHAR)
### question: what is the number of attendance on june 24 ### answer: SELECT COUNT(attendance) FROM table_name_8 WHERE date = "june 24" ### context: CREATE TABLE table_name_8 (attendance VARCHAR, date VARCHAR)
### question: Home of dallas happened on what date? ### answer: SELECT date FROM table_name_95 WHERE home = "dallas" ### context: CREATE TABLE table_name_95 (date VARCHAR, home VARCHAR)
### question: Home of buffalo happened on what date? ### answer: SELECT date FROM table_name_39 WHERE home = "buffalo" ### context: CREATE TABLE table_name_39 (date VARCHAR, home VARCHAR)
### question: Visitor of dallas, and a Date of june 12 had what highest attendance? ### answer: SELECT MAX(attendance) FROM table_name_16 WHERE visitor = "dallas" AND date = "june 12" ### context: CREATE TABLE table_name_16 (attendance INTEGER, visitor VARCHAR, date VARCHAR)
### question: On which date was the position less than 4 at Piraeus? ### answer: SELECT date FROM table_name_27 WHERE pos < 4 AND venue = "piraeus" ### context: CREATE TABLE table_name_27 (date VARCHAR, pos VARCHAR, venue VARCHAR)
### question: Which team had 64 laps and 13 points? ### answer: SELECT team FROM table_name_39 WHERE laps = 64 AND points = 13 ### context: CREATE TABLE table_name_39 (team VARCHAR, laps VARCHAR, points VARCHAR)
### question: How many laps did the team with a time/retired of +1.906 have? ### answer: SELECT COUNT(laps) FROM table_name_90 WHERE time_retired = "+1.906" ### context: CREATE TABLE table_name_90 (laps VARCHAR, time_retired VARCHAR)
### question: What is the time/retired of the team with a grid of 14? ### answer: SELECT time_retired FROM table_name_62 WHERE grid = 14 ### context: CREATE TABLE table_name_62 (time_retired VARCHAR, grid VARCHAR)
### question: What is the lowest grid of pkv racing, which had 13 points and less than 64 laps? ### answer: SELECT MIN(grid) FROM table_name_28 WHERE team = "pkv racing" AND points = 13 AND laps < 64 ### context: CREATE TABLE table_name_28 (grid INTEGER, laps VARCHAR, team VARCHAR, points VARCHAR)
### question: What is the total grid of the team with a time/retired of +7.346? ### answer: SELECT COUNT(grid) FROM table_name_53 WHERE time_retired = "+7.346" ### context: CREATE TABLE table_name_53 (grid VARCHAR, time_retired VARCHAR)
### question: What is the grid of pkv racing with the driver oriol servià? ### answer: SELECT SUM(grid) FROM table_name_56 WHERE team = "pkv racing" AND driver = "oriol servià" ### context: CREATE TABLE table_name_56 (grid INTEGER, team VARCHAR, driver VARCHAR)
### question: When Cancelable of yes, bubble of yes and a Category of keyboard, what was the Attribute? ### answer: SELECT attribute FROM table_name_52 WHERE cancelable = "yes" AND bubbles = "yes" AND category = "keyboard" ### context: CREATE TABLE table_name_52 (attribute VARCHAR, category VARCHAR, cancelable VARCHAR,...
### question: When Bubbles of no, and a Category of miscellaneous, and a Type of propertychange, what was the Cancelable? ### answer: SELECT cancelable FROM table_name_97 WHERE bubbles = "no" AND category = "miscellaneous" AND type = "propertychange" ### context: CREATE TABLE table_name_97 (cancelable VARCHAR, type VAR...
### question: When Type was rowexit what was the Category? ### answer: SELECT category FROM table_name_88 WHERE type = "rowexit" ### context: CREATE TABLE table_name_88 (category VARCHAR, type VARCHAR)
### question: When Cancelable of yes, and a Type of drag, what was the Category? ### answer: SELECT category FROM table_name_72 WHERE cancelable = "yes" AND type = "drag" ### context: CREATE TABLE table_name_72 (category VARCHAR, cancelable VARCHAR, type VARCHAR)
### question: When Event has Bubbles of yes, Cancelable of yes, Category of mouse, and a Type of contextmenu what is the Attribute? ### answer: SELECT attribute FROM table_name_41 WHERE bubbles = "yes" AND cancelable = "yes" AND category = "mouse" AND type = "contextmenu" ### context: CREATE TABLE table_name_41 (attrib...
### question: Let's say Type is of datasetcomplete, what is the Attribute? ### answer: SELECT attribute FROM table_name_62 WHERE type = "datasetcomplete" ### context: CREATE TABLE table_name_62 (attribute VARCHAR, type VARCHAR)
### question: What is the name of the parish that has a former local authority of St Neots urban district? ### answer: SELECT name FROM table_name_71 WHERE former_local_authority = "st neots urban district" ### context: CREATE TABLE table_name_71 (name VARCHAR, former_local_authority VARCHAR)
### question: What district is the parish who had the South Cambridgeshire rural district as the former local authority? ### answer: SELECT district FROM table_name_71 WHERE former_local_authority = "south cambridgeshire rural district" ### context: CREATE TABLE table_name_71 (district VARCHAR, former_local_authority V...
### question: What district is St Martin's Without parish in with a population less than 75? ### answer: SELECT district FROM table_name_73 WHERE population < 75 AND name = "st martin's without" ### context: CREATE TABLE table_name_73 (district VARCHAR, population VARCHAR, name VARCHAR)
### question: Who was the home team when FK kom were the guests? ### answer: SELECT home FROM table_name_84 WHERE guest = "fk kom" ### context: CREATE TABLE table_name_84 (home VARCHAR, guest VARCHAR)
### question: What venue was the match against the guest team, FK ibar, played at? ### answer: SELECT venue FROM table_name_65 WHERE guest = "fk ibar" ### context: CREATE TABLE table_name_65 (venue VARCHAR, guest VARCHAR)
### question: What's the Score with a Home of Scotland and Date of 24 February? ### answer: SELECT score FROM table_name_12 WHERE home = "scotland" AND date = "24 february" ### context: CREATE TABLE table_name_12 (score VARCHAR, home VARCHAR, date VARCHAR)
### question: What round was john sutro, tackle, drafter with a pick lower than 79? ### answer: SELECT SUM(round) FROM table_name_11 WHERE position = "tackle" AND player = "john sutro" AND pick < 79 ### context: CREATE TABLE table_name_11 (round INTEGER, pick VARCHAR, position VARCHAR, player VARCHAR)
### question: What pick was roger holdinsky? ### answer: SELECT pick FROM table_name_26 WHERE player = "roger holdinsky" ### context: CREATE TABLE table_name_26 (pick VARCHAR, player VARCHAR)
### question: When was chuck morris, back, drafted? ### answer: SELECT MIN(pick) FROM table_name_51 WHERE position = "back" AND player = "chuck morris" ### context: CREATE TABLE table_name_51 (pick INTEGER, position VARCHAR, player VARCHAR)
### question: What wss the average round drafted for xavier players? ### answer: SELECT AVG(round) FROM table_name_5 WHERE school = "xavier" ### context: CREATE TABLE table_name_5 (round INTEGER, school VARCHAR)