text
stringlengths
114
1.06k
### question: What is the average roll of a school with state authority and a decile of 9? ### answer: SELECT AVG(roll) FROM table_name_93 WHERE authority = "state" AND decile = 9 ### context: CREATE TABLE table_name_93 (roll INTEGER, authority VARCHAR, decile VARCHAR)
### question: Which area has state authority and a roll fewer than 18? ### answer: SELECT area FROM table_name_78 WHERE authority = "state" AND roll < 18 ### context: CREATE TABLE table_name_78 (area VARCHAR, authority VARCHAR, roll VARCHAR)
### question: What is the roll for the school with state authority and a decile of 9? ### answer: SELECT roll FROM table_name_42 WHERE authority = "state" AND decile = 9 ### context: CREATE TABLE table_name_42 (roll VARCHAR, authority VARCHAR, decile VARCHAR)
### question: What is the average decile of Westport South School? ### answer: SELECT AVG(decile) FROM table_name_5 WHERE name = "westport south school" ### context: CREATE TABLE table_name_5 (decile INTEGER, name VARCHAR)
### question: What is the top rank with a time of 2:19.86? ### answer: SELECT MAX(rank) FROM table_name_25 WHERE time = "2:19.86" ### context: CREATE TABLE table_name_25 (rank INTEGER, time VARCHAR)
### question: Who had a lane number smaller than 7 and a time of 2:19.86? ### answer: SELECT name FROM table_name_32 WHERE lane < 7 AND time = "2:19.86" ### context: CREATE TABLE table_name_32 (name VARCHAR, lane VARCHAR, time VARCHAR)
### question: What was Liu Limin's time in heat 4? ### answer: SELECT time FROM table_name_32 WHERE heat = 4 AND name = "liu limin" ### context: CREATE TABLE table_name_32 (time VARCHAR, heat VARCHAR, name VARCHAR)
### question: What was the result of the friendly competition? ### answer: SELECT result FROM table_name_69 WHERE competition = "friendly" ### context: CREATE TABLE table_name_69 (result VARCHAR, competition VARCHAR)
### question: What was the start source that ended on 4 May? ### answer: SELECT start_source FROM table_name_72 WHERE ended = "4 may" ### context: CREATE TABLE table_name_72 (start_source VARCHAR, ended VARCHAR)
### question: What is the Loan Club from Eng that ended on 22 February? ### answer: SELECT loan_club FROM table_name_57 WHERE country = "eng" AND ended = "22 february" ### context: CREATE TABLE table_name_57 (loan_club VARCHAR, country VARCHAR, ended VARCHAR)
### question: What is the End Source from the Hartlepool United Loan Club? ### answer: SELECT end_source FROM table_name_51 WHERE loan_club = "hartlepool united" ### context: CREATE TABLE table_name_51 (end_source VARCHAR, loan_club VARCHAR)
### question: When did the loan that Ended on 15 January Start? ### answer: SELECT started FROM table_name_60 WHERE ended = "15 january" ### context: CREATE TABLE table_name_60 (started VARCHAR, ended VARCHAR)
### question: What nation had more than 97 Gold Medals and fewer than 332 Silver Medals? ### answer: SELECT SUM(total) FROM table_name_34 WHERE gold > 97 AND silver < 332 ### context: CREATE TABLE table_name_34 (total INTEGER, gold VARCHAR, silver VARCHAR)
### question: What nation had 135 Bronze medals? ### answer: SELECT COUNT(bronze) FROM table_name_89 WHERE total = 135 ### context: CREATE TABLE table_name_89 (bronze VARCHAR, total VARCHAR)
### question: What is the area of Ulim with less than 30 villages? ### answer: SELECT AVG(land_area__km_2__) FROM table_name_53 WHERE capital = "ulim" AND villages < 30 ### context: CREATE TABLE table_name_53 (land_area__km_2__ INTEGER, capital VARCHAR, villages VARCHAR)
### question: What is the name of the station that is currently demolished with the Shepparton line in Tabilk? ### answer: SELECT name FROM table_name_6 WHERE current_status = "demolished" AND line = "shepparton line" AND location = "tabilk" ### context: CREATE TABLE table_name_6 (name VARCHAR, location VARCHAR, curren...
### question: What is the line of Mangalore station? ### answer: SELECT line FROM table_name_54 WHERE name = "mangalore" ### context: CREATE TABLE table_name_54 (line VARCHAR, name VARCHAR)
### question: What is the line of the station in Toolamba that is currently demolished and closed in the late 1970s? ### answer: SELECT line FROM table_name_81 WHERE current_status = "demolished" AND closed = "late 1970s" AND location = "toolamba" ### context: CREATE TABLE table_name_81 (line VARCHAR, location VARCHAR,...
### question: What is the name of the station in Toolamba that is currently demolished? ### answer: SELECT name FROM table_name_26 WHERE current_status = "demolished" AND location = "toolamba" ### context: CREATE TABLE table_name_26 (name VARCHAR, current_status VARCHAR, location VARCHAR)
### question: What club began in 1976? ### answer: SELECT current_club FROM table_name_21 WHERE year_born = 1976 ### context: CREATE TABLE table_name_21 (current_club VARCHAR, year_born VARCHAR)
### question: What player was born in 1976 and is smaller than 2.03? ### answer: SELECT player FROM table_name_42 WHERE height < 2.03 AND year_born = 1976 ### context: CREATE TABLE table_name_42 (player VARCHAR, height VARCHAR, year_born VARCHAR)
### question: What player was born in 1978 and smaller than 1.92? ### answer: SELECT current_club FROM table_name_31 WHERE height < 1.92 AND year_born > 1978 ### context: CREATE TABLE table_name_31 (current_club VARCHAR, height VARCHAR, year_born VARCHAR)
### question: Which year did The Adventures of Tintin come out? ### answer: SELECT SUM(year) FROM table_name_17 WHERE film = "the adventures of tintin" ### context: CREATE TABLE table_name_17 (year INTEGER, film VARCHAR)
### question: What year did the movie Rango come out? ### answer: SELECT AVG(year) FROM table_name_3 WHERE film = "rango" ### context: CREATE TABLE table_name_3 (year INTEGER, film VARCHAR)
### question: What is the rank associated with a Height feet / m of 427 / 130? ### answer: SELECT rank FROM table_name_76 WHERE height_feet___m = "427 / 130" ### context: CREATE TABLE table_name_76 (rank VARCHAR, height_feet___m VARCHAR)
### question: What was the address in 1974? ### answer: SELECT address FROM table_name_42 WHERE year = "1974" ### context: CREATE TABLE table_name_42 (address VARCHAR, year VARCHAR)
### question: What was the earliest year for a car with 3 points and Cooper t20 chassis? ### answer: SELECT MIN(year) FROM table_name_36 WHERE points = 3 AND chassis = "cooper t20" ### context: CREATE TABLE table_name_36 (year INTEGER, points VARCHAR, chassis VARCHAR)
### question: Game 2 has how much attendance? ### answer: SELECT attendance FROM table_name_1 WHERE game = 2 ### context: CREATE TABLE table_name_1 (attendance VARCHAR, game VARCHAR)
### question: What was the average attendance on October 12? ### answer: SELECT AVG(attendance) FROM table_name_40 WHERE date = "october 12" ### context: CREATE TABLE table_name_40 (attendance INTEGER, date VARCHAR)
### question: What is the name of the Home Captain for 23,24,25,26 july 1992? ### answer: SELECT home_captain FROM table_name_7 WHERE date = "23,24,25,26 july 1992" ### context: CREATE TABLE table_name_7 (home_captain VARCHAR, date VARCHAR)
### question: Who is the Away Captain at headingley? ### answer: SELECT away_captain FROM table_name_66 WHERE venue = "headingley" ### context: CREATE TABLE table_name_66 (away_captain VARCHAR, venue VARCHAR)
### question: Where was a game played on 23,24,25,26 july 1992? ### answer: SELECT venue FROM table_name_13 WHERE date = "23,24,25,26 july 1992" ### context: CREATE TABLE table_name_13 (venue VARCHAR, date VARCHAR)
### question: Who was the Away Captain at The Oval? ### answer: SELECT away_captain FROM table_name_86 WHERE venue = "the oval" ### context: CREATE TABLE table_name_86 (away_captain VARCHAR, venue VARCHAR)
### question: Who is the Home Captain for 23,24,25,26 july 1992? ### answer: SELECT home_captain FROM table_name_89 WHERE date = "23,24,25,26 july 1992" ### context: CREATE TABLE table_name_89 (home_captain VARCHAR, date VARCHAR)
### question: What is the result for 23,24,25,26 july 1992? ### answer: SELECT result FROM table_name_58 WHERE date = "23,24,25,26 july 1992" ### context: CREATE TABLE table_name_58 (result VARCHAR, date VARCHAR)
### question: What is the maximum number of losses that the Minnesota Kicks had after 1979 with an average attendance of 16,605? ### answer: SELECT MAX(lost) FROM table_name_40 WHERE season > 1979 AND avg_attend = 16 OFFSET 605 ### context: CREATE TABLE table_name_40 (lost INTEGER, season VARCHAR, avg_attend VARCHAR)
### question: Which season did the Minnesota Kicks lose 13 games and scored 156 points? ### answer: SELECT COUNT(season) FROM table_name_34 WHERE lost = 13 AND points = 156 ### context: CREATE TABLE table_name_34 (season VARCHAR, lost VARCHAR, points VARCHAR)
### question: What losses did racing de santander, that scored less than 68 goals, had a goal difference of less than 23 and 10 draws? ### answer: SELECT MAX(losses) FROM table_name_25 WHERE goals_against < 68 AND goal_difference < 23 AND draws = 10 AND club = "racing de santander" ### context: CREATE TABLE table_name_...
### question: What is the highest goal difference that the club with 33-5 points and less than 12 wins? ### answer: SELECT MAX(goal_difference) FROM table_name_52 WHERE points = "33-5" AND wins < 12 ### context: CREATE TABLE table_name_52 (goal_difference INTEGER, points VARCHAR, wins VARCHAR)
### question: What reactor type that has a commercial operation of β€”, and a tianwan-7 unit? ### answer: SELECT reactor_type FROM table_name_25 WHERE commercial_operation = "β€”" AND unit = "tianwan-7" ### context: CREATE TABLE table_name_25 (reactor_type VARCHAR, commercial_operation VARCHAR, unit VARCHAR)
### question: What was the net capacity with a gross capacity of 1,126 mw, and a Unit of tianwan-4? ### answer: SELECT net_capacity FROM table_name_74 WHERE gross_capacity = "1,126 mw" AND unit = "tianwan-4" ### context: CREATE TABLE table_name_74 (net_capacity VARCHAR, gross_capacity VARCHAR, unit VARCHAR)
### question: What commercial operation that has a gross capacity of 1,126 mw, and a unit of tianwan-4? ### answer: SELECT commercial_operation FROM table_name_95 WHERE gross_capacity = "1,126 mw" AND unit = "tianwan-4" ### context: CREATE TABLE table_name_95 (commercial_operation VARCHAR, gross_capacity VARCHAR, unit ...
### question: What score has won as the result on the date of December 14, 2004? ### answer: SELECT score FROM table_name_49 WHERE result = "won" AND date = "december 14, 2004" ### context: CREATE TABLE table_name_49 (score VARCHAR, result VARCHAR, date VARCHAR)
### question: What date has won as the result and 2-1 as the score with a competition of 2004 tiger cup third place match? ### answer: SELECT date FROM table_name_93 WHERE result = "won" AND score = "2-1" AND competition = "2004 tiger cup third place match" ### context: CREATE TABLE table_name_93 (date VARCHAR, competi...
### question: What score has january 15, 2005 as the date? ### answer: SELECT score FROM table_name_8 WHERE date = "january 15, 2005" ### context: CREATE TABLE table_name_8 (score VARCHAR, date VARCHAR)
### question: What date has lost as the result and a competition of friendly with 1-2 as the score? ### answer: SELECT date FROM table_name_86 WHERE result = "lost" AND competition = "friendly" AND score = "1-2" ### context: CREATE TABLE table_name_86 (date VARCHAR, score VARCHAR, result VARCHAR, competition VARCHAR)
### question: What score has january 3, 2005 as the date? ### answer: SELECT score FROM table_name_98 WHERE date = "january 3, 2005" ### context: CREATE TABLE table_name_98 (score VARCHAR, date VARCHAR)
### question: What competition has may 5, 2001 as the date? ### answer: SELECT competition FROM table_name_25 WHERE date = "may 5, 2001" ### context: CREATE TABLE table_name_25 (competition VARCHAR, date VARCHAR)
### question: Who did the team lose to on September 8? ### answer: SELECT loss FROM table_name_52 WHERE date = "september 8" ### context: CREATE TABLE table_name_52 (loss VARCHAR, date VARCHAR)
### question: What is the order for a red list of 7 in the didelphidae family? ### answer: SELECT order FROM table_name_91 WHERE red_list = 7 AND family = "didelphidae" ### context: CREATE TABLE table_name_91 (order VARCHAR, red_list VARCHAR, family VARCHAR)
### question: What is the name with a red lest less than 7? ### answer: SELECT name FROM table_name_51 WHERE red_list < 7 ### context: CREATE TABLE table_name_51 (name VARCHAR, red_list INTEGER)
### question: What family has the name of eastern cottontail? ### answer: SELECT family FROM table_name_57 WHERE name = "eastern cottontail" ### context: CREATE TABLE table_name_57 (family VARCHAR, name VARCHAR)
### question: What red list is in the artiodactyla order and the cervidae family with a Species Authority of odocoileus virginianus zimmermann, 1780? ### answer: SELECT red_list FROM table_name_22 WHERE order = "artiodactyla" AND family = "cervidae" AND species_authority = "odocoileus virginianus zimmermann, 1780" ### ...
### question: What is the name for the red list of 7, the artiodactyla order, and Species Authority of cervus elaphus linnaeus, 1758? ### answer: SELECT name FROM table_name_4 WHERE red_list = 7 AND order = "artiodactyla" AND species_authority = "cervus elaphus linnaeus, 1758" ### context: CREATE TABLE table_name_4 (na...
### question: What is the original name of the film that used the title Olympics 40 in nomination? ### answer: SELECT original_name FROM table_name_91 WHERE film_title_used_in_nomination = "olympics 40" ### context: CREATE TABLE table_name_91 (original_name VARCHAR, film_title_used_in_nomination VARCHAR)
### question: What title did the film from Colombia use in its nomination? ### answer: SELECT film_title_used_in_nomination FROM table_name_33 WHERE country = "colombia" ### context: CREATE TABLE table_name_33 (film_title_used_in_nomination VARCHAR, country VARCHAR)
### question: Who directed the film originally named Bye Bye Brazil in Portuguese? ### answer: SELECT director FROM table_name_4 WHERE language = "portuguese" AND original_name = "bye bye brazil" ### context: CREATE TABLE table_name_4 (director VARCHAR, language VARCHAR, original_name VARCHAR)
### question: What country is the film directed by Jean-Luc Godard in French from? ### answer: SELECT country FROM table_name_19 WHERE language = "french" AND director = "jean-luc godard" ### context: CREATE TABLE table_name_19 (country VARCHAR, language VARCHAR, director VARCHAR)
### question: Who is the director of the film in Italian? ### answer: SELECT director FROM table_name_92 WHERE language = "italian" ### context: CREATE TABLE table_name_92 (director VARCHAR, language VARCHAR)
### question: What is the status of Aden Theobald from the hometown of London? ### answer: SELECT status FROM table_name_48 WHERE hometown = "london" AND name = "aden theobald" ### context: CREATE TABLE table_name_48 (status VARCHAR, hometown VARCHAR, name VARCHAR)
### question: What is Hasan Shah's hometown? ### answer: SELECT hometown FROM table_name_40 WHERE name = "hasan shah" ### context: CREATE TABLE table_name_40 (hometown VARCHAR, name VARCHAR)
### question: What series was Sam Evans on? ### answer: SELECT series FROM table_name_20 WHERE name = "sam evans" ### context: CREATE TABLE table_name_20 (series VARCHAR, name VARCHAR)
### question: What is the name of the person from series bb1 with a hometown of Bolton? ### answer: SELECT name FROM table_name_69 WHERE series = "bb1" AND hometown = "bolton" ### context: CREATE TABLE table_name_69 (name VARCHAR, series VARCHAR, hometown VARCHAR)
### question: What is the occupation of the person with a hometown of Hampshire? ### answer: SELECT occupation FROM table_name_17 WHERE hometown = "hampshire" ### context: CREATE TABLE table_name_17 (occupation VARCHAR, hometown VARCHAR)
### question: Which 1st Party has an Election of 1849 by-election? ### answer: SELECT 1 AS st_party FROM table_name_42 WHERE election = "1849 by-election" ### context: CREATE TABLE table_name_42 (election VARCHAR)
### question: Which 2nd Party has an Election of 1837? ### answer: SELECT 2 AS nd_party FROM table_name_96 WHERE election = "1837" ### context: CREATE TABLE table_name_96 (election VARCHAR)
### question: Which Type has a Fleet numbers of 2–8, 91–92, 97–100? ### answer: SELECT type FROM table_name_90 WHERE fleet_numbers = "2–8, 91–92, 97–100" ### context: CREATE TABLE table_name_90 (type VARCHAR, fleet_numbers VARCHAR)
### question: When has a Note of 45/48 renumbered 15/16; two sold to sl&ncr? ### answer: SELECT date_made FROM table_name_46 WHERE notes = "45/48 renumbered 15/16; two sold to sl&ncr" ### context: CREATE TABLE table_name_46 (date_made VARCHAR, notes VARCHAR)
### question: What Willingshain is Kirchheim 1,126? ### answer: SELECT willingshain FROM table_name_71 WHERE kirchheim = "1,126" ### context: CREATE TABLE table_name_71 (willingshain VARCHAR, kirchheim VARCHAR)
### question: What Rotterterrode has a Reimboldsh 80? ### answer: SELECT rotterterode FROM table_name_31 WHERE reimboldsh = "80" ### context: CREATE TABLE table_name_31 (rotterterode VARCHAR, reimboldsh VARCHAR)
### question: What Reimboldsh has Willingshain of 268 and Gersdorf 194? ### answer: SELECT reimboldsh FROM table_name_24 WHERE willingshain = "268" AND gersdorf = "194" ### context: CREATE TABLE table_name_24 (reimboldsh VARCHAR, willingshain VARCHAR, gersdorf VARCHAR)
### question: What Kemmerode has a Gersforf of 39? ### answer: SELECT kemmerode FROM table_name_68 WHERE gersdorf = "39" ### context: CREATE TABLE table_name_68 (kemmerode VARCHAR, gersdorf VARCHAR)
### question: What Gershausen has a Willingshain of 243 and Reckerode of 224? ### answer: SELECT gershausen FROM table_name_46 WHERE willingshain = "243" AND reckerode_ * * * * = "224" ### context: CREATE TABLE table_name_46 (gershausen VARCHAR, willingshain VARCHAR, reckerode_ VARCHAR)
### question: What Willinghshain has Reimboldsh of 101? ### answer: SELECT willingshain FROM table_name_27 WHERE reimboldsh = "101" ### context: CREATE TABLE table_name_27 (willingshain VARCHAR, reimboldsh VARCHAR)
### question: What is the pts for 2004, and the ro event? ### answer: SELECT pts FROM table_name_6 WHERE year = "2004" AND event = "ro" ### context: CREATE TABLE table_name_6 (pts VARCHAR, year VARCHAR, event VARCHAR)
### question: What is the pos from 2003, and the f event? ### answer: SELECT pos FROM table_name_64 WHERE year = "2003" AND event = "f" ### context: CREATE TABLE table_name_64 (pos VARCHAR, year VARCHAR, event VARCHAR)
### question: What is the Catalog Number is for the Japan region? ### answer: SELECT catalog FROM table_name_59 WHERE region = "japan" ### context: CREATE TABLE table_name_59 (catalog VARCHAR, region VARCHAR)
### question: What is the date on Catalog 540,934-2? ### answer: SELECT date FROM table_name_9 WHERE catalog = "540,934-2" ### context: CREATE TABLE table_name_9 (date VARCHAR, catalog VARCHAR)
### question: What is the region for Catalog amlh 66078 in stereo lp format? ### answer: SELECT region FROM table_name_49 WHERE format = "stereo lp" AND catalog = "amlh 66078" ### context: CREATE TABLE table_name_49 (region VARCHAR, format VARCHAR, catalog VARCHAR)
### question: What is the region for Catalog amlh 66078 in stereo lp format? ### answer: SELECT region FROM table_name_68 WHERE format = "stereo lp" AND catalog = "amlh 66078" ### context: CREATE TABLE table_name_68 (region VARCHAR, format VARCHAR, catalog VARCHAR)
### question: What is the Catalog number for the region of Japan? ### answer: SELECT catalog FROM table_name_91 WHERE region = "japan" ### context: CREATE TABLE table_name_91 (catalog VARCHAR, region VARCHAR)
### question: What is the region of the Catalog that is in cd format and has a label a&m/canyon? ### answer: SELECT region FROM table_name_49 WHERE format = "cd" AND label = "a&m/canyon" ### context: CREATE TABLE table_name_49 (region VARCHAR, format VARCHAR, label VARCHAR)
### question: What is the original team that was Hired by Trump (5-19-2005)? ### answer: SELECT original_team FROM table_name_84 WHERE result = "hired by trump (5-19-2005)" ### context: CREATE TABLE table_name_84 (original_team VARCHAR, result VARCHAR)
### question: Who is the candidate that had 10 fired in week 2 (1-27-2005)? ### answer: SELECT candidate FROM table_name_45 WHERE result = "10 fired in week 2 (1-27-2005)" ### context: CREATE TABLE table_name_45 (candidate VARCHAR, result VARCHAR)
### question: What is the hometown of the candidate that had a result of 10 fired in week 6 (2-24-2005)? ### answer: SELECT hometown FROM table_name_10 WHERE result = "10 fired in week 6 (2-24-2005)" ### context: CREATE TABLE table_name_10 (hometown VARCHAR, result VARCHAR)
### question: Which totals tournament has the lowest wins and top-25 less than 4? ### answer: SELECT MIN(wins) FROM table_name_66 WHERE tournament = "totals" AND top_25 < 4 ### context: CREATE TABLE table_name_66 (wins INTEGER, tournament VARCHAR, top_25 VARCHAR)
### question: What is the average number of events of PGA Championship tournaments with a top-5 less than 0? ### answer: SELECT AVG(events) FROM table_name_27 WHERE top_10 = 0 AND tournament = "pga championship" AND top_5 < 0 ### context: CREATE TABLE table_name_27 (events INTEGER, top_5 VARCHAR, top_10 VARCHAR, tourna...
### question: Name the competition for stephanie cox on 2011-07-02 ### answer: SELECT competition FROM table_name_64 WHERE assist_pass = "stephanie cox" AND date = "2011-07-02" ### context: CREATE TABLE table_name_64 (competition VARCHAR, assist_pass VARCHAR, date VARCHAR)
### question: Name the lineup for washington dc ### answer: SELECT lineup FROM table_name_21 WHERE location = "washington dc" ### context: CREATE TABLE table_name_21 (lineup VARCHAR, location VARCHAR)
### question: Name the date for faro ### answer: SELECT date FROM table_name_33 WHERE location = "faro" ### context: CREATE TABLE table_name_33 (date VARCHAR, location VARCHAR)
### question: What is the highest rank that has fao as a source and an out greater than 50, with dietary calorie intake as the name? ### answer: SELECT MAX(rank) FROM table_name_98 WHERE source = "fao" AND out_of > 50 AND name = "dietary calorie intake" ### context: CREATE TABLE table_name_98 (rank INTEGER, name VARCHA...
### question: What is the average rank that has cia world factbook as the source and a year prior to 2005? ### answer: SELECT AVG(rank) FROM table_name_29 WHERE source = "cia world factbook" AND year < 2005 ### context: CREATE TABLE table_name_29 (rank INTEGER, source VARCHAR, year VARCHAR)
### question: What were the least points with a Coloni FC88 chassis? ### answer: SELECT MIN(points) FROM table_name_43 WHERE chassis = "coloni fc88" ### context: CREATE TABLE table_name_43 (points INTEGER, chassis VARCHAR)
### question: How many years was the chassis a Coloni C3? ### answer: SELECT COUNT(year) FROM table_name_51 WHERE chassis = "coloni c3" ### context: CREATE TABLE table_name_51 (year VARCHAR, chassis VARCHAR)
### question: What was the most points for Coloni Spa? ### answer: SELECT MAX(points) FROM table_name_78 WHERE entrant = "coloni spa" ### context: CREATE TABLE table_name_78 (points INTEGER, entrant VARCHAR)
### question: Which team 1 had a team 2 of Asante Kotoko? ### answer: SELECT team_1 FROM table_name_79 WHERE team_2 = "asante kotoko" ### context: CREATE TABLE table_name_79 (team_1 VARCHAR, team_2 VARCHAR)
### question: Which team 1 had a team 2 of Hafia FC? ### answer: SELECT team_1 FROM table_name_87 WHERE team_2 = "hafia fc" ### context: CREATE TABLE table_name_87 (team_1 VARCHAR, team_2 VARCHAR)
### question: What was the aggregate for the match with a team 2 of Hafia FC? ### answer: SELECT agg FROM table_name_98 WHERE team_2 = "hafia fc" ### context: CREATE TABLE table_name_98 (agg VARCHAR, team_2 VARCHAR)
### question: When was J.P. Viernes' last performance? ### answer: SELECT last_performance FROM table_name_26 WHERE name = "j.p. viernes" ### context: CREATE TABLE table_name_26 (last_performance VARCHAR, name VARCHAR)
### question: What's the Chinese name of the wudaokou station? ### answer: SELECT chinese_name FROM table_name_85 WHERE station_name = "wudaokou" ### context: CREATE TABLE table_name_85 (chinese_name VARCHAR, station_name VARCHAR)