combined_text stringlengths 106 1.05k |
|---|
###question:Which Date had an Outcome of runner-up, and a Surface of carpet?###answer:SELECT date FROM table_name_85 WHERE outcome = "runner-up" AND surface = "carpet"###context:CREATE TABLE table_name_85 (date VARCHAR, outcome VARCHAR, surface VARCHAR) |
###question:Which Surface had an Opponent of fernanda hermenegildo monika kochanova?###answer:SELECT surface FROM table_name_57 WHERE opponent = "fernanda hermenegildo monika kochanova"###context:CREATE TABLE table_name_57 (surface VARCHAR, opponent VARCHAR) |
###question:Who was the opponent in the game that was attended by 42,000 people?###answer:SELECT opponent_number FROM table_name_19 WHERE attendance = "42,000"###context:CREATE TABLE table_name_19 (opponent_number VARCHAR, attendance VARCHAR) |
###question:Who was the opponent in the game that was attended by 48,000 people?###answer:SELECT opponent_number FROM table_name_93 WHERE attendance = "48,000"###context:CREATE TABLE table_name_93 (opponent_number VARCHAR, attendance VARCHAR) |
###question:On what day(s) did the Gophers play against Michigan?###answer:SELECT date FROM table_name_88 WHERE opponent_number = "michigan"###context:CREATE TABLE table_name_88 (date VARCHAR, opponent_number VARCHAR) |
###question:What was the result of the game that was attended by 16,000 people?###answer:SELECT result FROM table_name_47 WHERE attendance = "16,000"###context:CREATE TABLE table_name_47 (result VARCHAR, attendance VARCHAR) |
###question:Which Season has an Agg of 4–1, and an Opponent of rapid wien?###answer:SELECT season FROM table_name_18 WHERE agg = "4–1" AND opponent = "rapid wien"###context:CREATE TABLE table_name_18 (season VARCHAR, agg VARCHAR, opponent VARCHAR) |
###question:Which Home has an Opponent of brøndby?###answer:SELECT home FROM table_name_15 WHERE opponent = "brøndby"###context:CREATE TABLE table_name_15 (home VARCHAR, opponent VARCHAR) |
###question:Which Away has an Opponent of slavia prague?###answer:SELECT away FROM table_name_7 WHERE opponent = "slavia prague"###context:CREATE TABLE table_name_7 (away VARCHAR, opponent VARCHAR) |
###question:Which Away has a Competition of uefa cup, and an Opponent of anderlecht?###answer:SELECT away FROM table_name_93 WHERE competition = "uefa cup" AND opponent = "anderlecht"###context:CREATE TABLE table_name_93 (away VARCHAR, competition VARCHAR, opponent VARCHAR) |
###question:Which Away has a Home of 2–2?###answer:SELECT away FROM table_name_84 WHERE home = "2–2"###context:CREATE TABLE table_name_84 (away VARCHAR, home VARCHAR) |
###question:Which Away has a Season of 2001–02, and an Opponent of dinaburg?###answer:SELECT away FROM table_name_69 WHERE season = "2001–02" AND opponent = "dinaburg"###context:CREATE TABLE table_name_69 (away VARCHAR, season VARCHAR, opponent VARCHAR) |
###question:What is the total number for grid with a Suzuki GSX-R1000 K7 for +13.283?###answer:SELECT COUNT(grid) FROM table_name_35 WHERE bike = "suzuki gsx-r1000 k7" AND time = "+13.283"###context:CREATE TABLE table_name_35 (grid VARCHAR, bike VARCHAR, time VARCHAR) |
###question:What was the time for a grid less than 6 for Noriyuki Haga?###answer:SELECT time FROM table_name_55 WHERE grid < 6 AND rider = "noriyuki haga"###context:CREATE TABLE table_name_55 (time VARCHAR, grid VARCHAR, rider VARCHAR) |
###question:What was the time for a grid more than 6 in less than 23 laps with a Honda CBR1000RR?###answer:SELECT time FROM table_name_31 WHERE grid > 6 AND bike = "honda cbr1000rr" AND laps < 23###context:CREATE TABLE table_name_31 (time VARCHAR, laps VARCHAR, grid VARCHAR, bike VARCHAR) |
###question:What is the sum of laps for Karl Muggeridge on a grid less than 16?###answer:SELECT SUM(laps) FROM table_name_74 WHERE rider = "karl muggeridge" AND grid < 16###context:CREATE TABLE table_name_74 (laps INTEGER, rider VARCHAR, grid VARCHAR) |
###question:Which album awarded Paul McGuinness a Lifetime Achievement Award?###answer:SELECT album FROM table_name_20 WHERE lifetime_achievement_award = "paul mcguinness"###context:CREATE TABLE table_name_20 (album VARCHAR, lifetime_achievement_award VARCHAR) |
###question:Which act's album has a name of All That You Can't Leave Behind?###answer:SELECT pop_act FROM table_name_58 WHERE album = "all that you can't leave behind"###context:CREATE TABLE table_name_58 (pop_act VARCHAR, album VARCHAR) |
###question:In what year did Aslan receive a Lifetime Achievement Award and Snow Patrol perform?###answer:SELECT year FROM table_name_56 WHERE band = "snow patrol" AND lifetime_achievement_award = "aslan"###context:CREATE TABLE table_name_56 (year VARCHAR, band VARCHAR, lifetime_achievement_award VARCHAR) |
###question:Who won the Lifetime Achievement Award when Snow Patrol performed and Juliet Turner presented?###answer:SELECT lifetime_achievement_award FROM table_name_38 WHERE band = "snow patrol" AND female = "juliet turner"###context:CREATE TABLE table_name_38 (lifetime_achievement_award VARCHAR, band VARCHAR, female ... |
###question:What band performed when Samantha Mumba presented?###answer:SELECT band FROM table_name_80 WHERE female = "samantha mumba"###context:CREATE TABLE table_name_80 (band VARCHAR, female VARCHAR) |
###question:What is the lowest Draws for a season later than 1919 with more than 0 wins?###answer:SELECT MIN(draws) FROM table_name_86 WHERE season > 1919 AND wins > 0###context:CREATE TABLE table_name_86 (draws INTEGER, season VARCHAR, wins VARCHAR) |
###question:What is the sum of Draws for a season later than 1964?###answer:SELECT SUM(draws) FROM table_name_67 WHERE season > 1964###context:CREATE TABLE table_name_67 (draws INTEGER, season INTEGER) |
###question:What is the sum of Wins when draws shows 0 in 1964?###answer:SELECT SUM(wins) FROM table_name_46 WHERE draws = 0 AND season = 1964###context:CREATE TABLE table_name_46 (wins INTEGER, draws VARCHAR, season VARCHAR) |
###question:What is the highest Draws for a season later than 1926 with less than 0 wins?###answer:SELECT MAX(draws) FROM table_name_63 WHERE season > 1926 AND wins < 0###context:CREATE TABLE table_name_63 (draws INTEGER, season VARCHAR, wins VARCHAR) |
###question:What is the highest Draws with less than 18 losses for north melbourne later than 1926?###answer:SELECT MAX(draws) FROM table_name_45 WHERE losses < 18 AND team = "north melbourne" AND season > 1926###context:CREATE TABLE table_name_45 (draws INTEGER, season VARCHAR, losses VARCHAR, team VARCHAR) |
###question:what week had a player named zach###answer:SELECT weeks_3_4 FROM table_name_11 WHERE name = "zach"###context:CREATE TABLE table_name_11 (weeks_3_4 VARCHAR, name VARCHAR) |
###question:What is the largest number for SHTS for the San Jose earthquakes with MINS larger than 2700?###answer:SELECT MAX(shts) FROM table_name_23 WHERE club = "san jose earthquakes" AND mins > 2700###context:CREATE TABLE table_name_23 (shts INTEGER, club VARCHAR, mins VARCHAR) |
###question:What is the sum of Rank when Pat Onstad was the goalkeeper?###answer:SELECT SUM(rank) FROM table_name_30 WHERE goalkeeper = "pat onstad"###context:CREATE TABLE table_name_30 (rank INTEGER, goalkeeper VARCHAR) |
###question:What is the club for the 132 SHTS?###answer:SELECT club FROM table_name_98 WHERE shts = 132###context:CREATE TABLE table_name_98 (club VARCHAR, shts VARCHAR) |
###question:What is the largest MINS for the San Jose Earthquakes with a SHTS less than 166?###answer:SELECT MAX(mins) FROM table_name_87 WHERE club = "san jose earthquakes" AND shts < 166###context:CREATE TABLE table_name_87 (mins INTEGER, club VARCHAR, shts VARCHAR) |
###question:When has a Surface of clay, and an Opponent in the final of andrés gómez javier sánchez?###answer:SELECT date FROM table_name_98 WHERE surface = "clay" AND opponent_in_the_final = "andrés gómez javier sánchez"###context:CREATE TABLE table_name_98 (date VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR... |
###question:Which Tournament has a Partner of karel nováček?###answer:SELECT tournament FROM table_name_19 WHERE partner = "karel nováček"###context:CREATE TABLE table_name_19 (tournament VARCHAR, partner VARCHAR) |
###question:Which Tournament is in 1993 with a Score in the final of 6–2, 2–6, 7–5?###answer:SELECT tournament FROM table_name_13 WHERE date = 1993 AND score_in_the_final = "6–2, 2–6, 7–5"###context:CREATE TABLE table_name_13 (tournament VARCHAR, date VARCHAR, score_in_the_final VARCHAR) |
###question:Riggs of e, and a Buechel & Manhart spelling (pronunciation) of e had what ullrich?###answer:SELECT ullrich FROM table_name_92 WHERE riggs = "e" AND buechel_ & _manhart_spelling__pronunciation_ = "e"###context:CREATE TABLE table_name_92 (ullrich VARCHAR, riggs VARCHAR, buechel_ VARCHAR, _manhart_spelling__p... |
###question:Rood & Taylor of o, and a Buechel & Manhart spelling (pronunciation) of o had what university of Minnesota?###answer:SELECT university_of_minnesota FROM table_name_63 WHERE rood_ & _taylor = "o" AND buechel_ & _manhart_spelling__pronunciation_ = "o"###context:CREATE TABLE table_name_63 (university_of_minnes... |
###question:Dakota Mission of t, and a Deloria & Boas of tʽ, and a Ullrich of tȟ had what white hat?###answer:SELECT white_hat FROM table_name_98 WHERE dakota_mission = "t" AND deloria_ & _boas = "tʽ" AND ullrich = "tȟ"###context:CREATE TABLE table_name_98 (white_hat VARCHAR, ullrich VARCHAR, dakota_mission VARCHAR, de... |
###question:Deloria & Boas of n included what university of Minnesota?###answer:SELECT university_of_minnesota FROM table_name_89 WHERE deloria_ & _boas = "n"###context:CREATE TABLE table_name_89 (university_of_minnesota VARCHAR, deloria_ VARCHAR, _boas VARCHAR) |
###question:Deloria & Boas of ų, and a Dakota Mission of un had what Buechel & Manhart spelling (pronunciation)?###answer:SELECT buechel_ & _manhart_spelling__pronunciation_ FROM table_name_27 WHERE deloria_ & _boas = "ų" AND dakota_mission = "un"###context:CREATE TABLE table_name_27 (buechel_ VARCHAR, _manhart_spellin... |
###question:University of Minnesota of ṭ had what Deloria & Boas?###answer:SELECT deloria_ & _boas FROM table_name_66 WHERE university_of_minnesota = "ṭ"###context:CREATE TABLE table_name_66 (deloria_ VARCHAR, _boas VARCHAR, university_of_minnesota VARCHAR) |
###question:Which November has a Game smaller than 16, and Points larger than 22?###answer:SELECT SUM(november) FROM table_name_89 WHERE game < 16 AND points > 22###context:CREATE TABLE table_name_89 (november INTEGER, game VARCHAR, points VARCHAR) |
###question:Which Record has a Game larger than 15, and Points smaller than 31, and a November of 7?###answer:SELECT record FROM table_name_36 WHERE game > 15 AND points < 31 AND november = 7###context:CREATE TABLE table_name_36 (record VARCHAR, november VARCHAR, game VARCHAR, points VARCHAR) |
###question:What is the highest number of bronze for the United States with more than 1 silver?###answer:SELECT MAX(bronze) FROM table_name_13 WHERE nation = "united states" AND silver > 1###context:CREATE TABLE table_name_13 (bronze INTEGER, nation VARCHAR, silver VARCHAR) |
###question:What is the sum of all silver medals with more than 2 bronze?###answer:SELECT SUM(silver) FROM table_name_82 WHERE bronze > 2###context:CREATE TABLE table_name_82 (silver INTEGER, bronze INTEGER) |
###question:What is the lowest number of silver medals with a rank of 4 and total medals greater than 1?###answer:SELECT MIN(silver) FROM table_name_68 WHERE rank = 4 AND total > 1###context:CREATE TABLE table_name_68 (silver INTEGER, rank VARCHAR, total VARCHAR) |
###question:What is the average number of bronze medals with 1 silver, 5 gold, and over 6 total medals?###answer:SELECT AVG(bronze) FROM table_name_85 WHERE silver = 1 AND gold = 5 AND total < 6###context:CREATE TABLE table_name_85 (bronze INTEGER, total VARCHAR, silver VARCHAR, gold VARCHAR) |
###question:What is the highest rank with less than 2 bronze, more than 1 gold, and less than 1 silver?###answer:SELECT MAX(rank) FROM table_name_35 WHERE bronze < 2 AND gold > 1 AND silver < 1###context:CREATE TABLE table_name_35 (rank INTEGER, silver VARCHAR, bronze VARCHAR, gold VARCHAR) |
###question:Who remixed an album of dance remixes?###answer:SELECT remixed_by FROM table_name_50 WHERE album = "dance remixes"###context:CREATE TABLE table_name_50 (remixed_by VARCHAR, album VARCHAR) |
###question:Who remixed a music video in 1985?###answer:SELECT remixed_by FROM table_name_22 WHERE year = 1985 AND version = "music video"###context:CREATE TABLE table_name_22 (remixed_by VARCHAR, year VARCHAR, version VARCHAR) |
###question:What year was Mother's Live remix created?###answer:SELECT SUM(year) FROM table_name_46 WHERE version = "mother's live remix"###context:CREATE TABLE table_name_46 (year INTEGER, version VARCHAR) |
###question:Which position ranked 10th overall?###answer:SELECT position FROM table_name_7 WHERE pick = "10th overall"###context:CREATE TABLE table_name_7 (position VARCHAR, pick VARCHAR) |
###question:Which player played wide receiver after 2008?###answer:SELECT player FROM table_name_17 WHERE year > 2008 AND position = "wide receiver"###context:CREATE TABLE table_name_17 (player VARCHAR, year VARCHAR, position VARCHAR) |
###question:Which Player has a Date of 13 july 2007?###answer:SELECT player FROM table_name_41 WHERE date = "13 july 2007"###context:CREATE TABLE table_name_41 (player VARCHAR, date VARCHAR) |
###question:Which Player had a Date of 31 jan. 2008, and a Transfer fee of £3.87m?###answer:SELECT player FROM table_name_44 WHERE date = "31 jan. 2008" AND transfer_fee = "£3.87m"###context:CREATE TABLE table_name_44 (player VARCHAR, date VARCHAR, transfer_fee VARCHAR) |
###question:Which Date had a Transfer fee of £8.8m?###answer:SELECT date FROM table_name_45 WHERE transfer_fee = "£8.8m"###context:CREATE TABLE table_name_45 (date VARCHAR, transfer_fee VARCHAR) |
###question:Which From club had a Transfer fee of £3.87m?###answer:SELECT from_club FROM table_name_40 WHERE transfer_fee = "£3.87m"###context:CREATE TABLE table_name_40 (from_club VARCHAR, transfer_fee VARCHAR) |
###question:Which Player had a From club of atlético madrid?###answer:SELECT player FROM table_name_36 WHERE from_club = "atlético madrid"###context:CREATE TABLE table_name_36 (player VARCHAR, from_club VARCHAR) |
###question:What is the decision of the game larger than 6.###answer:SELECT decision FROM table_name_82 WHERE game > 6###context:CREATE TABLE table_name_82 (decision VARCHAR, game INTEGER) |
###question:On May 8 what series is it?###answer:SELECT series FROM table_name_41 WHERE date = "may 8"###context:CREATE TABLE table_name_41 (series VARCHAR, date VARCHAR) |
###question:Which KOREAN has a CHINESE of 師子菩提 / shīzǐpútí?###answer:SELECT korean FROM table_name_51 WHERE chinese = "師子菩提 / shīzǐpútí"###context:CREATE TABLE table_name_51 (korean VARCHAR, chinese VARCHAR) |
###question:Which JAPANESE has a KOREAN of 상나화수 / sanahwasa?###answer:SELECT japanese FROM table_name_92 WHERE korean = "상나화수 / sanahwasa"###context:CREATE TABLE table_name_92 (japanese VARCHAR, korean VARCHAR) |
###question:Which SANSKRT has a CHINESE of 摩拏羅 / mónáluó?###answer:SELECT sanskrt FROM table_name_76 WHERE chinese = "摩拏羅 / mónáluó"###context:CREATE TABLE table_name_76 (sanskrt VARCHAR, chinese VARCHAR) |
###question:Which SANSKRT has a JAPANESE of jayana?###answer:SELECT sanskrt FROM table_name_38 WHERE japanese = "jayana"###context:CREATE TABLE table_name_38 (sanskrt VARCHAR, japanese VARCHAR) |
###question:Which VIETNAMESE has a CHINESE of 婆須密 / póxūmì?###answer:SELECT vietnamese FROM table_name_35 WHERE chinese = "婆須密 / póxūmì"###context:CREATE TABLE table_name_35 (vietnamese VARCHAR, chinese VARCHAR) |
###question:Which VIETNAMESE has a CHINESE of 不如密多 / bùrúmìduō?###answer:SELECT vietnamese FROM table_name_25 WHERE chinese = "不如密多 / bùrúmìduō"###context:CREATE TABLE table_name_25 (vietnamese VARCHAR, chinese VARCHAR) |
###question:What is the mean pick number for Iowa College when the overall is less than 200?###answer:SELECT AVG(pick__number) FROM table_name_77 WHERE college = "iowa" AND overall < 200###context:CREATE TABLE table_name_77 (pick__number INTEGER, college VARCHAR, overall VARCHAR) |
###question:What was the result on 26 October 1993?###answer:SELECT result FROM table_name_36 WHERE date = "26 october 1993"###context:CREATE TABLE table_name_36 (result VARCHAR, date VARCHAR) |
###question:Who was the Away team on the result of 1-5 aet?###answer:SELECT away FROM table_name_61 WHERE result = "1-5 aet"###context:CREATE TABLE table_name_61 (away VARCHAR, result VARCHAR) |
###question:What season had a date of 30 august 1980###answer:SELECT season FROM table_name_54 WHERE date = "30 august 1980"###context:CREATE TABLE table_name_54 (season VARCHAR, date VARCHAR) |
###question:What round had a home of FC augsburg with the result of 3-0?###answer:SELECT round FROM table_name_9 WHERE home = "fc augsburg" AND result = "3-0"###context:CREATE TABLE table_name_9 (round VARCHAR, home VARCHAR, result VARCHAR) |
###question:What is the office held by member Mark Coulton?###answer:SELECT in_office FROM table_name_58 WHERE member = "mark coulton"###context:CREATE TABLE table_name_58 (in_office VARCHAR, member VARCHAR) |
###question:What office is held by Electorate Hume?###answer:SELECT in_office FROM table_name_71 WHERE electorate = "hume"###context:CREATE TABLE table_name_71 (in_office VARCHAR, electorate VARCHAR) |
###question:Which memeber has nt as the state?###answer:SELECT member FROM table_name_7 WHERE state = "nt"###context:CREATE TABLE table_name_7 (member VARCHAR, state VARCHAR) |
###question:Which memeber has nsw as the state, a first elected of 1952, and alp as the party?###answer:SELECT member FROM table_name_64 WHERE state = "nsw" AND first_elected = "1952" AND party = "alp"###context:CREATE TABLE table_name_64 (member VARCHAR, party VARCHAR, state VARCHAR, first_elected VARCHAR) |
###question:Which party has wa as the state, and hon victor garland as the memeber?###answer:SELECT party FROM table_name_14 WHERE state = "wa" AND member = "hon victor garland"###context:CREATE TABLE table_name_14 (party VARCHAR, state VARCHAR, member VARCHAR) |
###question:Which party has a first elected of 1966, qld as the state, and donald milner cameron as the member?###answer:SELECT party FROM table_name_25 WHERE first_elected = "1966" AND state = "qld" AND member = "donald milner cameron"###context:CREATE TABLE table_name_25 (party VARCHAR, member VARCHAR, first_elected ... |
###question:Which memeber has a first elected of 1972, alp as the party, vic as the state, and an electorate of gellibrand?###answer:SELECT member FROM table_name_70 WHERE first_elected = "1972" AND party = "alp" AND state = "vic" AND electorate = "gellibrand"###context:CREATE TABLE table_name_70 (member VARCHAR, elect... |
###question:Where was the game played with a 2013 left and Royals nickname?###answer:SELECT location FROM table_name_13 WHERE left = "2013" AND nickname = "royals"###context:CREATE TABLE table_name_13 (location VARCHAR, left VARCHAR, nickname VARCHAR) |
###question:What joined that was founded prior to year 1856 and whose current conference is the Big South (NCAA Division I)?###answer:SELECT joined FROM table_name_2 WHERE founded < 1856 AND current_conference = "big south (ncaa division i)"###context:CREATE TABLE table_name_2 (joined VARCHAR, founded VARCHAR, current_... |
###question:What is the total number of teams founded that were left in 1976?###answer:SELECT SUM(founded) FROM table_name_47 WHERE left = "1976"###context:CREATE TABLE table_name_47 (founded INTEGER, left VARCHAR) |
###question:What is the Set 1 when the date is 08 jul, and a Set 2 of 25–21?###answer:SELECT set_1 FROM table_name_33 WHERE date = "08 jul" AND set_2 = "25–21"###context:CREATE TABLE table_name_33 (set_1 VARCHAR, date VARCHAR, set_2 VARCHAR) |
###question:What is the Score for Set 2 of 24–26?###answer:SELECT score FROM table_name_71 WHERE set_2 = "24–26"###context:CREATE TABLE table_name_71 (score VARCHAR, set_2 VARCHAR) |
###question:What shows for Report hen there is a set 1 of 19–25?###answer:SELECT report FROM table_name_15 WHERE set_1 = "19–25"###context:CREATE TABLE table_name_15 (report VARCHAR, set_1 VARCHAR) |
###question:What is the Date with a Time of 17:37, and the Set 4 is 25–15?###answer:SELECT date FROM table_name_38 WHERE time = "17:37" AND set_4 = "25–15"###context:CREATE TABLE table_name_38 (date VARCHAR, time VARCHAR, set_4 VARCHAR) |
###question:What is the Report with a Score of 3–1, and Set 1 is 19–25?###answer:SELECT report FROM table_name_12 WHERE score = "3–1" AND set_1 = "19–25"###context:CREATE TABLE table_name_12 (report VARCHAR, score VARCHAR, set_1 VARCHAR) |
###question:What is the Report for 08 jul, and a Score of 3–1?###answer:SELECT report FROM table_name_79 WHERE date = "08 jul" AND score = "3–1"###context:CREATE TABLE table_name_79 (report VARCHAR, date VARCHAR, score VARCHAR) |
###question:What is the Nation with a Record that is 7.39?###answer:SELECT nation FROM table_name_37 WHERE record = "7.39"###context:CREATE TABLE table_name_37 (nation VARCHAR, record VARCHAR) |
###question:What is the Date with a Record that is 7.39?###answer:SELECT date FROM table_name_87 WHERE record = "7.39"###context:CREATE TABLE table_name_87 (date VARCHAR, record VARCHAR) |
###question:What is Episode, when XII Season is 4 118 160 (26 september 2010)?###answer:SELECT episode FROM table_name_23 WHERE xii_season = "4 118 160 (26 september 2010)"###context:CREATE TABLE table_name_23 (episode VARCHAR, xii_season VARCHAR) |
###question:What is VII Season, when Episode is 11?###answer:SELECT vii_season FROM table_name_29 WHERE episode = "11"###context:CREATE TABLE table_name_29 (vii_season VARCHAR, episode VARCHAR) |
###question:What is XII Season, when Episode is 6?###answer:SELECT xii_season FROM table_name_57 WHERE episode = "6"###context:CREATE TABLE table_name_57 (xii_season VARCHAR, episode VARCHAR) |
###question:What is Episode, when VIII Season is 5 082 535 (19 October 2008)?###answer:SELECT episode FROM table_name_83 WHERE viii_season = "5 082 535 (19 october 2008)"###context:CREATE TABLE table_name_83 (episode VARCHAR, viii_season VARCHAR) |
###question:What is XIII Season, when VIII Season is 4 780 743 (2 november 2008)?###answer:SELECT xiii_season FROM table_name_82 WHERE viii_season = "4 780 743 (2 november 2008)"###context:CREATE TABLE table_name_82 (xiii_season VARCHAR, viii_season VARCHAR) |
###question:Which Lost has Points of 28 and a Drawn smaller than 8?###answer:SELECT AVG(lost) FROM table_name_47 WHERE points = 28 AND drawn < 8###context:CREATE TABLE table_name_47 (lost INTEGER, points VARCHAR, drawn VARCHAR) |
###question:How many Againsts have Points larger than 31 and a Drawn larger than 6?###answer:SELECT COUNT(against) FROM table_name_96 WHERE points > 31 AND drawn > 6###context:CREATE TABLE table_name_96 (against VARCHAR, points VARCHAR, drawn VARCHAR) |
###question:What is the highest number of votes for McCain in a county that voted 1.6% for other, 40.5% for McCain, and fewer than 256,299 votes for Obama?###answer:SELECT MAX(mccain_number) FROM table_name_47 WHERE others_percentage = "1.6%" AND mccain_percentage = "40.5%" AND obama_number < 256 OFFSET 299###context:C... |
###question:What is the Round with 1 Behinds?###answer:SELECT round FROM table_name_50 WHERE behinds = 1###context:CREATE TABLE table_name_50 (round VARCHAR, behinds VARCHAR) |
###question:What is the goals for Round 15?###answer:SELECT goals FROM table_name_29 WHERE round = "round 15"###context:CREATE TABLE table_name_29 (goals VARCHAR, round VARCHAR) |
###question:What was the Attendance on 31 January 1987?###answer:SELECT COUNT(attendance) FROM table_name_44 WHERE date = "31 january 1987"###context:CREATE TABLE table_name_44 (attendance VARCHAR, date VARCHAR) |
###question:What was the location and attendance with a score of w 89–86 (ot)?###answer:SELECT location_attendance FROM table_name_62 WHERE score = "w 89–86 (ot)"###context:CREATE TABLE table_name_62 (location_attendance VARCHAR, score VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.