combined_text
stringlengths
106
1.05k
###question:What is the Format of the French Frequency with a Call sign of CKRL-FM?###answer:SELECT format FROM table_name_56 WHERE notes = "french" AND call_sign = "ckrl-fm"###context:CREATE TABLE table_name_56 (format VARCHAR, notes VARCHAR, call_sign VARCHAR)
###question:What is the Format of the Frequency owned by Laval University?###answer:SELECT format FROM table_name_96 WHERE owner = "laval university"###context:CREATE TABLE table_name_96 (format VARCHAR, owner VARCHAR)
###question:What is the Notes of the Frequency with Format of talk radio?###answer:SELECT notes FROM table_name_63 WHERE format = "talk radio"###context:CREATE TABLE table_name_63 (notes VARCHAR, format VARCHAR)
###question:What is the Notes of the Frequency with a Format of soft adult contemporary?###answer:SELECT notes FROM table_name_46 WHERE format = "soft adult contemporary"###context:CREATE TABLE table_name_46 (notes VARCHAR, format VARCHAR)
###question:How many chart runs had a debut position of more than 7 when peak position was 11?###answer:SELECT COUNT(chart) AS run FROM table_name_18 WHERE debut_position > 7 AND peak_position = 11###context:CREATE TABLE table_name_18 (chart VARCHAR, debut_position VARCHAR, peak_position VARCHAR)
###question:Which Spoofed title had Mort Drucker as the artist in issue 88?###answer:SELECT spoofed_title FROM table_name_97 WHERE artist = "mort drucker" AND issue = 88###context:CREATE TABLE table_name_97 (spoofed_title VARCHAR, artist VARCHAR, issue VARCHAR)
###question:Who was the artist for Spoofed title Genteel Ben in an issue later than 74?###answer:SELECT artist FROM table_name_42 WHERE issue > 74 AND spoofed_title = "genteel ben"###context:CREATE TABLE table_name_42 (artist VARCHAR, issue VARCHAR, spoofed_title VARCHAR)
###question:Which issue was the Spoofed title Route 67 for which Mort Drucker was the artist?###answer:SELECT SUM(issue) FROM table_name_44 WHERE artist = "mort drucker" AND spoofed_title = "route 67"###context:CREATE TABLE table_name_44 (issue INTEGER, artist VARCHAR, spoofed_title VARCHAR)
###question:What is the earliest issue Arnie Kogen wrote for in December 1964?###answer:SELECT MIN(issue) FROM table_name_12 WHERE writer = "arnie kogen" AND date = "december 1964"###context:CREATE TABLE table_name_12 (issue INTEGER, writer VARCHAR, date VARCHAR)
###question:What are the highest points that have a difference of 8, with a position less than 4?###answer:SELECT MAX(points) FROM table_name_36 WHERE difference = "8" AND position < 4###context:CREATE TABLE table_name_36 (points INTEGER, difference VARCHAR, position VARCHAR)
###question:How many losses have corinthians as the team, with an against greater than 26?###answer:SELECT SUM(lost) FROM table_name_32 WHERE team = "corinthians" AND against > 26###context:CREATE TABLE table_name_32 (lost INTEGER, team VARCHAR, against VARCHAR)
###question:How many points have a difference of 23, with a drawn less than 5?###answer:SELECT COUNT(points) FROM table_name_62 WHERE difference = "23" AND drawn < 5###context:CREATE TABLE table_name_62 (points VARCHAR, difference VARCHAR, drawn VARCHAR)
###question:How many positions have 15 for the points, with a drawn less than 3?###answer:SELECT SUM(position) FROM table_name_57 WHERE points = 15 AND drawn < 3###context:CREATE TABLE table_name_57 (position INTEGER, points VARCHAR, drawn VARCHAR)
###question:What was the result of the match held when his record was 7-0-0?###answer:SELECT result FROM table_name_31 WHERE record = "7-0-0"###context:CREATE TABLE table_name_31 (result VARCHAR, record VARCHAR)
###question:What do the notes say for 1989 May 7?###answer:SELECT notes FROM table_name_32 WHERE date = "1989 may 7"###context:CREATE TABLE table_name_32 (notes VARCHAR, date VARCHAR)
###question:How did he beat Alberto Rodriguez?###answer:SELECT method FROM table_name_55 WHERE opponent = "alberto rodriguez"###context:CREATE TABLE table_name_55 (method VARCHAR, opponent VARCHAR)
###question:What was his record in 1987?###answer:SELECT record FROM table_name_79 WHERE date = "1987"###context:CREATE TABLE table_name_79 (record VARCHAR, date VARCHAR)
###question:What is the lowest total that has barbados as the nation with a bronze greater than 0?###answer:SELECT MIN(total) FROM table_name_96 WHERE nation = "barbados" AND bronze > 0###context:CREATE TABLE table_name_96 (total INTEGER, nation VARCHAR, bronze VARCHAR)
###question:How many silvers have a gold greater than 2, a bronze less than 35, china as the nation, with a total greater than 26?###answer:SELECT COUNT(silver) FROM table_name_43 WHERE gold > 2 AND bronze < 35 AND nation = "china" AND total > 26###context:CREATE TABLE table_name_43 (silver VARCHAR, total VARCHAR, nati...
###question:What is the largest total that has a gold less than 0?###answer:SELECT MAX(total) FROM table_name_57 WHERE gold < 0###context:CREATE TABLE table_name_57 (total INTEGER, gold INTEGER)
###question:How many golds have a silver greater than 1, vietnam as the nation, with a bronze less than 3?###answer:SELECT COUNT(gold) FROM table_name_32 WHERE silver > 1 AND nation = "vietnam" AND bronze < 3###context:CREATE TABLE table_name_32 (gold VARCHAR, bronze VARCHAR, silver VARCHAR, nation VARCHAR)
###question:Which Wins has a Country of new zealand and a Last title larger than 1968?###answer:SELECT MIN(wins) FROM table_name_25 WHERE country = "new zealand" AND last_title > 1968###context:CREATE TABLE table_name_25 (wins INTEGER, country VARCHAR, last_title VARCHAR)
###question:What is the total of Last title that has Wins smaller than 71 and a First title larger than 1968 and a Country of fiji?###answer:SELECT COUNT(last_title) FROM table_name_79 WHERE wins < 71 AND first_title > 1968 AND country = "fiji"###context:CREATE TABLE table_name_79 (last_title VARCHAR, country VARCHAR, ...
###question:Which First title has Wins smaller than 8 and in Canada?###answer:SELECT COUNT(first_title) FROM table_name_41 WHERE wins < 8 AND country = "canada"###context:CREATE TABLE table_name_41 (first_title VARCHAR, wins VARCHAR, country VARCHAR)
###question:How many Winners have Wins of 1 and a Country of fiji and a First title smaller than 2004?###answer:SELECT AVG(winners) FROM table_name_2 WHERE wins = 1 AND country = "fiji" AND first_title < 2004###context:CREATE TABLE table_name_2 (winners INTEGER, first_title VARCHAR, wins VARCHAR, country VARCHAR)
###question:What is the latest opened year of the team in Glasgow, Scotland?###answer:SELECT MAX(opened) FROM table_name_34 WHERE city = "glasgow, scotland"###context:CREATE TABLE table_name_34 (opened INTEGER, city VARCHAR)
###question:What is the average opened year of Mini Estadi stadium in Barcelona, Spain?###answer:SELECT AVG(opened) FROM table_name_62 WHERE city = "barcelona, spain" AND stadium = "mini estadi"###context:CREATE TABLE table_name_62 (opened INTEGER, city VARCHAR, stadium VARCHAR)
###question:What is the lowest win percentage for teams with more than 23 losses and more than 386 goals for?###answer:SELECT MIN(winning__percentage) FROM table_name_95 WHERE lost > 23 AND goals_for > 386###context:CREATE TABLE table_name_95 (winning__percentage INTEGER, lost VARCHAR, goals_for VARCHAR)
###question:What is the total number of losses for teams with less than 5 ties and more than 330 goals for?###answer:SELECT COUNT(lost) FROM table_name_3 WHERE tied < 5 AND goals_for > 330###context:CREATE TABLE table_name_3 (lost VARCHAR, tied VARCHAR, goals_for VARCHAR)
###question:What is the Score of the Competition with a Result of 5-0?###answer:SELECT score FROM table_name_7 WHERE result = "5-0"###context:CREATE TABLE table_name_7 (score VARCHAR, result VARCHAR)
###question:What is the Score of the Competition with a 5-0 Result?###answer:SELECT score FROM table_name_33 WHERE result = "5-0"###context:CREATE TABLE table_name_33 (score VARCHAR, result VARCHAR)
###question:What is the Date of the Competition with a Score of 4-0 and 5-0 Result?###answer:SELECT date FROM table_name_47 WHERE result = "5-0" AND score = "4-0"###context:CREATE TABLE table_name_47 (date VARCHAR, result VARCHAR, score VARCHAR)
###question:What is the title for YI?###answer:SELECT title FROM table_name_45 WHERE name = "yi"###context:CREATE TABLE table_name_45 (title VARCHAR, name VARCHAR)
###question:What is the state Yi?###answer:SELECT state FROM table_name_35 WHERE name = "yi"###context:CREATE TABLE table_name_35 (state VARCHAR, name VARCHAR)
###question:What state has the king title?###answer:SELECT state FROM table_name_58 WHERE title = "king"###context:CREATE TABLE table_name_58 (state VARCHAR, title VARCHAR)
###question:What was the score when the partner was arnaud clément?###answer:SELECT score FROM table_name_60 WHERE partner = "arnaud clément"###context:CREATE TABLE table_name_60 (score VARCHAR, partner VARCHAR)
###question:What is the Outcome when the partner was kristof vliegen?###answer:SELECT outcome FROM table_name_20 WHERE partner = "kristof vliegen"###context:CREATE TABLE table_name_20 (outcome VARCHAR, partner VARCHAR)
###question:What is the Surface of the match with winner as outcome and a score of 7–5, 7–5?###answer:SELECT surface FROM table_name_76 WHERE outcome = "winner" AND score = "7–5, 7–5"###context:CREATE TABLE table_name_76 (surface VARCHAR, outcome VARCHAR, score VARCHAR)
###question:What is the Outcome when christophe rochus was partner, on 31 july 2005?###answer:SELECT outcome FROM table_name_38 WHERE partner = "christophe rochus" AND date = "31 july 2005"###context:CREATE TABLE table_name_38 (outcome VARCHAR, partner VARCHAR, date VARCHAR)
###question:What is the Opponents on a clay surface with christophe rochus as partner?###answer:SELECT opponents FROM table_name_57 WHERE surface = "clay" AND partner = "christophe rochus"###context:CREATE TABLE table_name_57 (opponents VARCHAR, surface VARCHAR, partner VARCHAR)
###question:What is the Date when christophe rochus was partner, and the score was 2–6, 7–6 (7–5) , 0–6?###answer:SELECT date FROM table_name_97 WHERE partner = "christophe rochus" AND score = "2–6, 7–6 (7–5) , 0–6"###context:CREATE TABLE table_name_97 (date VARCHAR, partner VARCHAR, score VARCHAR)
###question:In what City/town was their institution founded in 1860?###answer:SELECT city__town FROM table_name_34 WHERE year_founded = 1860###context:CREATE TABLE table_name_34 (city__town VARCHAR, year_founded VARCHAR)
###question:What year was Waynesburg University founded in Pennsylvania?###answer:SELECT year_founded FROM table_name_82 WHERE state__province = "pennsylvania" AND institution_name = "waynesburg university"###context:CREATE TABLE table_name_82 (year_founded VARCHAR, state__province VARCHAR, institution_name VARCHAR)
###question:What is Howard Payne University's total enrollment?###answer:SELECT total_enrollment FROM table_name_67 WHERE institution_name = "howard payne university"###context:CREATE TABLE table_name_67 (total_enrollment VARCHAR, institution_name VARCHAR)
###question:What is the To par when fredrik andersson hed was runner-up?###answer:SELECT to_par FROM table_name_86 WHERE runner_s__up = "fredrik andersson hed"###context:CREATE TABLE table_name_86 (to_par VARCHAR, runner_s__up VARCHAR)
###question:What is the Margin of victory when rhys davies was runner-up?###answer:SELECT margin_of_victory FROM table_name_34 WHERE runner_s__up = "rhys davies"###context:CREATE TABLE table_name_34 (margin_of_victory VARCHAR, runner_s__up VARCHAR)
###question:What is the Winning score when the To par was −21?###answer:SELECT winning_score FROM table_name_21 WHERE to_par = "−21"###context:CREATE TABLE table_name_21 (winning_score VARCHAR, to_par VARCHAR)
###question:What is the Date for the wgc-accenture match play championship?###answer:SELECT date FROM table_name_83 WHERE tournament = "wgc-accenture match play championship"###context:CREATE TABLE table_name_83 (date VARCHAR, tournament VARCHAR)
###question:What is the Margin of victory on 27 feb 2011?###answer:SELECT margin_of_victory FROM table_name_43 WHERE date = "27 feb 2011"###context:CREATE TABLE table_name_43 (margin_of_victory VARCHAR, date VARCHAR)
###question:What is the Tournament when the winning score was 65-67-68-67=267?###answer:SELECT tournament FROM table_name_70 WHERE winning_score = 65 - 67 - 68 - 67 = 267###context:CREATE TABLE table_name_70 (tournament VARCHAR, winning_score VARCHAR)
###question:Which Mission has a Apogee of 705 km?###answer:SELECT mission FROM table_name_3 WHERE apogee = "705 km"###context:CREATE TABLE table_name_3 (mission VARCHAR, apogee VARCHAR)
###question:What kind of Motor has a Apogee of 713 km?###answer:SELECT motor FROM table_name_98 WHERE apogee = "713 km"###context:CREATE TABLE table_name_98 (motor VARCHAR, apogee VARCHAR)
###question:What kind of Mission has a Apogee of 707 km?###answer:SELECT mission FROM table_name_47 WHERE apogee = "707 km"###context:CREATE TABLE table_name_47 (mission VARCHAR, apogee VARCHAR)
###question:Which Apogee has a Mission of maxus 3?###answer:SELECT apogee FROM table_name_46 WHERE mission = "maxus 3"###context:CREATE TABLE table_name_46 (apogee VARCHAR, mission VARCHAR)
###question:Which Mission is on 2003 apr 1?###answer:SELECT mission FROM table_name_21 WHERE date = "2003 apr 1"###context:CREATE TABLE table_name_21 (mission VARCHAR, date VARCHAR)
###question:What was the ranking for the episode number before 24 that had a rating of 25.7?###answer:SELECT ranking FROM table_name_21 WHERE ep__number < 24 AND rating = "25.7"###context:CREATE TABLE table_name_21 (ranking VARCHAR, ep__number VARCHAR, rating VARCHAR)
###question:What is the rating of the season 10?###answer:SELECT rating FROM table_name_12 WHERE season = "season 10"###context:CREATE TABLE table_name_12 (rating VARCHAR, season VARCHAR)
###question:What was the rating of the season that had 18.17 million household viewers?###answer:SELECT rating FROM table_name_23 WHERE viewers__households_in_millions_ = "18.17"###context:CREATE TABLE table_name_23 (rating VARCHAR, viewers__households_in_millions_ VARCHAR)
###question:How many totals have 2 for the bronze?###answer:SELECT COUNT(total) FROM table_name_40 WHERE bronze = 2###context:CREATE TABLE table_name_40 (total VARCHAR, bronze VARCHAR)
###question:What is the smallest silver that has a bronze less than 0?###answer:SELECT MIN(silver) FROM table_name_34 WHERE bronze < 0###context:CREATE TABLE table_name_34 (silver INTEGER, bronze INTEGER)
###question:What college received Pick 5?###answer:SELECT college FROM table_name_93 WHERE pick = 5###context:CREATE TABLE table_name_93 (college VARCHAR, pick VARCHAR)
###question:For the United States International University, what was the highest pick number allowed?###answer:SELECT MAX(pick) FROM table_name_53 WHERE college = "united states international university"###context:CREATE TABLE table_name_53 (pick INTEGER, college VARCHAR)
###question:what was the date of the game on week 2?###answer:SELECT date FROM table_name_2 WHERE week = 2###context:CREATE TABLE table_name_2 (date VARCHAR, week VARCHAR)
###question:What is the subjunctive present that is associated with a plural preterite of u, a singular preterite of ou, and a singular present of û?###answer:SELECT subj_pres FROM table_name_78 WHERE plur_pret = "u" AND sing_pret = "ou" AND sing_pres = "û"###context:CREATE TABLE table_name_78 (subj_pres VARCHAR, sing_...
###question:What is the plural present that has a past participle of e and an infinitive stem of e?###answer:SELECT plur_pres FROM table_name_61 WHERE past_part = "e" AND inf_stem = "e"###context:CREATE TABLE table_name_61 (plur_pres VARCHAR, past_part VARCHAR, inf_stem VARCHAR)
###question:What is the infinitive stem that has a subjunctive present of ou?###answer:SELECT inf_stem FROM table_name_10 WHERE subj_pres = "ou"###context:CREATE TABLE table_name_10 (inf_stem VARCHAR, subj_pres VARCHAR)
###question:What is the infinitive stem that is associated with a subjunctive present of a and a plural preterite of uo?###answer:SELECT inf_stem FROM table_name_13 WHERE subj_pres = "a" AND plur_pret = "uo"###context:CREATE TABLE table_name_13 (inf_stem VARCHAR, subj_pres VARCHAR, plur_pret VARCHAR)
###question:What is the singular present that is associated with a singular preterite of ou and a subjunctive present of ie?###answer:SELECT sing_pres FROM table_name_51 WHERE sing_pret = "ou" AND subj_pres = "ie"###context:CREATE TABLE table_name_51 (sing_pres VARCHAR, sing_pret VARCHAR, subj_pres VARCHAR)
###question:What is the plural preterite that is associated with a subjunctive preterite of ü and has an infinitive stem of e + l/r + cons.?###answer:SELECT plur_pret FROM table_name_93 WHERE subj_pret = "ü" AND inf_stem = "e + l/r + cons."###context:CREATE TABLE table_name_93 (plur_pret VARCHAR, subj_pret VARCHAR, inf...
###question:What is the history behind the vessel Speedrunner IV (SSC4) built after 1997?###answer:SELECT history FROM table_name_95 WHERE built > 1997 AND name = "speedrunner iv (ssc4)"###context:CREATE TABLE table_name_95 (history VARCHAR, built VARCHAR, name VARCHAR)
###question:What is the most recent year that Queen Nefertiti (pegasus two) was built?###answer:SELECT MAX(built) FROM table_name_44 WHERE name = "queen nefertiti (pegasus two)"###context:CREATE TABLE table_name_44 (built INTEGER, name VARCHAR)
###question:What is the history behind Speedrunner III (SSC3)?###answer:SELECT history FROM table_name_88 WHERE name = "speedrunner iii (ssc3)"###context:CREATE TABLE table_name_88 (history VARCHAR, name VARCHAR)
###question:What was the opponent on november 8, 1981?###answer:SELECT opponent FROM table_name_6 WHERE date = "november 8, 1981"###context:CREATE TABLE table_name_6 (opponent VARCHAR, date VARCHAR)
###question:What is the longest Time (seconds), when the Nation - athlete(s) is Sylke Otto - Germany?###answer:SELECT MAX(time__seconds_) FROM table_name_99 WHERE nation___athlete_s_ = "sylke otto - germany"###context:CREATE TABLE table_name_99 (time__seconds_ INTEGER, nation___athlete_s_ VARCHAR)
###question:What is the Date, when the Sport is luge - men's doubles, and when the Record is, "start"?###answer:SELECT date FROM table_name_90 WHERE sport = "luge - men's doubles" AND record = "start"###context:CREATE TABLE table_name_90 (date VARCHAR, sport VARCHAR, record VARCHAR)
###question:What is the Nation - athlete(s), when the Sport is luge - men's singles, and when the Record is, "track"?###answer:SELECT nation___athlete_s_ FROM table_name_12 WHERE sport = "luge - men's singles" AND record = "track"###context:CREATE TABLE table_name_12 (nation___athlete_s_ VARCHAR, sport VARCHAR, record ...
###question:What is the Date, when the Record is, "track", when the Time (seconds) is longer than 43.564, and when the Sport is luge - women's singles?###answer:SELECT date FROM table_name_66 WHERE record = "track" AND time__seconds_ > 43.564 AND sport = "luge - women's singles"###context:CREATE TABLE table_name_66 (da...
###question:What is the highest Z (p) when arsenic is the element, and the N (n) is more than 42###answer:SELECT MAX(z___p__) FROM table_name_46 WHERE element = "arsenic" AND n___n__ > 42###context:CREATE TABLE table_name_46 (z___p__ INTEGER, element VARCHAR, n___n__ VARCHAR)
###question:What is the highest Z (p) when the N (n) is less than 30, and scandium is the element?###answer:SELECT AVG(z___p__) FROM table_name_37 WHERE n___n__ < 30 AND element = "scandium"###context:CREATE TABLE table_name_37 (z___p__ INTEGER, n___n__ VARCHAR, element VARCHAR)
###question:What is the isotopic mass (u) when the nuclide is 89 y?###answer:SELECT isotopic_mass___u__ FROM table_name_6 WHERE nuclide = "89 y"###context:CREATE TABLE table_name_6 (isotopic_mass___u__ VARCHAR, nuclide VARCHAR)
###question:What is the Element when the Nuclide is 55 mn?###answer:SELECT element FROM table_name_79 WHERE nuclide = "55 mn"###context:CREATE TABLE table_name_79 (element VARCHAR, nuclide VARCHAR)
###question:What is Venue, when Date is 23,24,26,27,28,29 Feb, 1 Mar 1912?###answer:SELECT venue FROM table_name_46 WHERE date = "23,24,26,27,28,29 feb, 1 mar 1912"###context:CREATE TABLE table_name_46 (venue VARCHAR, date VARCHAR)
###question:What is Date, when Venue is Melbourne Cricket Ground, and when Result is Eng By Inns&225 Runs?###answer:SELECT date FROM table_name_95 WHERE venue = "melbourne cricket ground" AND result = "eng by inns&225 runs"###context:CREATE TABLE table_name_95 (date VARCHAR, venue VARCHAR, result VARCHAR)
###question:What is Result, when Venue is Sydney Cricket Ground, and when Date is 23,24,26,27,28,29 Feb, 1 Mar 1912?###answer:SELECT result FROM table_name_31 WHERE venue = "sydney cricket ground" AND date = "23,24,26,27,28,29 feb, 1 mar 1912"###context:CREATE TABLE table_name_31 (result VARCHAR, venue VARCHAR, date VA...
###question:What is Away Captain, when Date is 30 Dec, 1,2,3 Jan 1911/2?###answer:SELECT away_captain FROM table_name_38 WHERE date = "30 dec, 1,2,3 jan 1911/2"###context:CREATE TABLE table_name_38 (away_captain VARCHAR, date VARCHAR)
###question:What is Venue, when Date is 23,24,26,27,28,29 Feb, 1 Mar 1912?###answer:SELECT venue FROM table_name_82 WHERE date = "23,24,26,27,28,29 feb, 1 mar 1912"###context:CREATE TABLE table_name_82 (venue VARCHAR, date VARCHAR)
###question:What is Home Captain, when Date is 23,24,26,27,28,29 Feb, 1 Mar 1912?###answer:SELECT home_captain FROM table_name_48 WHERE date = "23,24,26,27,28,29 feb, 1 mar 1912"###context:CREATE TABLE table_name_48 (home_captain VARCHAR, date VARCHAR)
###question:What is Catalog, when the Region is UK, and when Label is Razor Records?###answer:SELECT catalog FROM table_name_16 WHERE region = "uk" AND label = "razor records"###context:CREATE TABLE table_name_16 (catalog VARCHAR, region VARCHAR, label VARCHAR)
###question:What is the latest Date, when Label is Captain Oi! Records?###answer:SELECT MAX(date) FROM table_name_58 WHERE label = "captain oi! records"###context:CREATE TABLE table_name_58 (date INTEGER, label VARCHAR)
###question:What is Region, when Date is 2004?###answer:SELECT region FROM table_name_61 WHERE date = 2004###context:CREATE TABLE table_name_61 (region VARCHAR, date VARCHAR)
###question:What is Catalog, when Format is CD, when Region is US, when Date is before 2004, and when Label is Taang! Records?###answer:SELECT catalog FROM table_name_32 WHERE format = "cd" AND region = "us" AND date < 2004 AND label = "taang! records"###context:CREATE TABLE table_name_32 (catalog VARCHAR, label VARCHA...
###question:What is the largest amount of top division titles featuring the tammeka club?###answer:SELECT MAX(top_division_titles) FROM table_name_56 WHERE club = "tammeka"###context:CREATE TABLE table_name_56 (top_division_titles INTEGER, club VARCHAR)
###question:What is the largest number of top division titles with a 2012 position of 10th?###answer:SELECT MAX(top_division_titles) FROM table_name_13 WHERE position_in_2012 = "10th"###context:CREATE TABLE table_name_13 (top_division_titles INTEGER, position_in_2012 VARCHAR)
###question:How many seasons in Meistriliiga when the club was kuressaare also had a first season in top division of more than 2000?###answer:SELECT COUNT(number_of_seasons_in_meistriliiga) FROM table_name_17 WHERE club = "kuressaare" AND first_season_in_top_division > 2000###context:CREATE TABLE table_name_17 (number_...
###question:Who attended Columbia law school and was appointed in 2004?###answer:SELECT name FROM table_name_30 WHERE law_school_attended = "columbia law school" AND appointed = 2004###context:CREATE TABLE table_name_30 (name VARCHAR, law_school_attended VARCHAR, appointed VARCHAR)
###question:Which Term expiration has an Appointing Governor of george pataki, republican, and an Appointed larger than 2004?###answer:SELECT SUM(term_expiration) FROM table_name_22 WHERE appointing_governor = "george pataki, republican" AND appointed > 2004###context:CREATE TABLE table_name_22 (term_expiration INTEGER...
###question:Which law school did judge sheila abdus-salaam attend, who was appointed in 2004?###answer:SELECT law_school_attended FROM table_name_14 WHERE appointed > 2004 AND name = "judge sheila abdus-salaam"###context:CREATE TABLE table_name_14 (law_school_attended VARCHAR, appointed VARCHAR, name VARCHAR)
###question:What is the number of races having top 5s over 2 and average starts of 6.5?###answer:SELECT races FROM table_name_51 WHERE top_5 > 2 AND avg_start = 6.5###context:CREATE TABLE table_name_51 (races VARCHAR, top_5 VARCHAR, avg_start VARCHAR)
###question:What is the lowest average finish having top 5s of 0?###answer:SELECT MIN(avg_finish) FROM table_name_7 WHERE top_5 < 0###context:CREATE TABLE table_name_7 (avg_finish INTEGER, top_5 INTEGER)
###question:What Volume:Issue that has Peter Cetera as the artist and was on top for longer than 1 week?###answer:SELECT volume AS :issue FROM table_name_97 WHERE weeks_on_top > 1 AND artist = "peter cetera"###context:CREATE TABLE table_name_97 (volume VARCHAR, weeks_on_top VARCHAR, artist VARCHAR)