combined_text stringlengths 106 1.05k |
|---|
###question:What is the most unfavorable that is favorable of 34 during 1953 August and has a no opinion score larger than 24?###answer:SELECT MAX(unfavorable) FROM table_name_34 WHERE favorable = 34 AND date = "1953 august" AND no_opinion > 24###context:CREATE TABLE table_name_34 (unfavorable INTEGER, no_opinion VARCH... |
###question:What is the average no opinion score during 1954 November that is more favorable than 35?###answer:SELECT AVG(no_opinion) FROM table_name_94 WHERE date = "1954 november" AND favorable > 35###context:CREATE TABLE table_name_94 (no_opinion INTEGER, date VARCHAR, favorable VARCHAR) |
###question:What was the score for the game on December 20?###answer:SELECT score FROM table_name_49 WHERE date = "december 20"###context:CREATE TABLE table_name_49 (score VARCHAR, date VARCHAR) |
###question:Who was the home team on November 22?###answer:SELECT home FROM table_name_47 WHERE date = "november 22"###context:CREATE TABLE table_name_47 (home VARCHAR, date VARCHAR) |
###question:What is the title of Buena Vista Pictures?###answer:SELECT title FROM table_name_4 WHERE studio = "buena vista pictures"###context:CREATE TABLE table_name_4 (title VARCHAR, studio VARCHAR) |
###question:What studio has directors John Lasseter and Andrew Stanton?###answer:SELECT studio FROM table_name_95 WHERE director_s_ = "john lasseter and andrew stanton"###context:CREATE TABLE table_name_95 (studio VARCHAR, director_s_ VARCHAR) |
###question:Who has the title and rank 14, and a worldwide gross of $202,292,902?###answer:SELECT title FROM table_name_83 WHERE rank > 14 AND worldwide_gross = "$202,292,902"###context:CREATE TABLE table_name_83 (title VARCHAR, rank VARCHAR, worldwide_gross VARCHAR) |
###question:WHAT IS THE DATE WITH AN AWAY TEAM OF BURTON ALBION?###answer:SELECT date FROM table_name_15 WHERE away_team = "burton albion"###context:CREATE TABLE table_name_15 (date VARCHAR, away_team VARCHAR) |
###question:WHAT IS THE DATE WITH AN AWAY TEAM OF WORKINGTON?###answer:SELECT date FROM table_name_16 WHERE away_team = "workington"###context:CREATE TABLE table_name_16 (date VARCHAR, away_team VARCHAR) |
###question:WHAT IS THE HOME TEAM WITH A TIE OF 14?###answer:SELECT home_team FROM table_name_21 WHERE tie_no = "14"###context:CREATE TABLE table_name_21 (home_team VARCHAR, tie_no VARCHAR) |
###question:What's the average round for the OT position from tulane college with an overall over 38?###answer:SELECT AVG(round) FROM table_name_41 WHERE position = "ot" AND college = "tulane" AND overall > 38###context:CREATE TABLE table_name_41 (round INTEGER, overall VARCHAR, position VARCHAR, college VARCHAR) |
###question:What did the away team score when the crowd was larger than 6,872?###answer:SELECT away_team AS score FROM table_name_55 WHERE crowd > 6 OFFSET 872###context:CREATE TABLE table_name_55 (away_team VARCHAR, crowd INTEGER) |
###question:Who are the Semifinalists, when the Week is May 12?###answer:SELECT semifinalists FROM table_name_52 WHERE week = "may 12"###context:CREATE TABLE table_name_52 (semifinalists VARCHAR, week VARCHAR) |
###question:Who is the Finalist, when the Surface is Clay, and when the Semifinalist is Yevgeny Kafelnikov Juan Carlos Ferrero (2)?###answer:SELECT finalist FROM table_name_20 WHERE surface = "clay" AND semifinalists = "yevgeny kafelnikov juan carlos ferrero (2)"###context:CREATE TABLE table_name_20 (finalist VARCHAR, ... |
###question:What is the Surface, when the Finalist is Andrei Pavel?###answer:SELECT surface FROM table_name_90 WHERE finalist = "andrei pavel"###context:CREATE TABLE table_name_90 (surface VARCHAR, finalist VARCHAR) |
###question:Who is the Winner, when the Surface is Carpet (i)?###answer:SELECT winner FROM table_name_80 WHERE surface = "carpet (i)"###context:CREATE TABLE table_name_80 (winner VARCHAR, surface VARCHAR) |
###question:What is the Week, when the Finalist is Carlos Moyá (5)?###answer:SELECT week FROM table_name_66 WHERE finalist = "carlos moyá (5)"###context:CREATE TABLE table_name_66 (week VARCHAR, finalist VARCHAR) |
###question:What is the Tournament, on the Week of May 5?###answer:SELECT tournament FROM table_name_4 WHERE week = "may 5"###context:CREATE TABLE table_name_4 (tournament VARCHAR, week VARCHAR) |
###question:what is the silver when the nation is japan and the total is less than 1?###answer:SELECT SUM(silver) FROM table_name_8 WHERE nation = "japan" AND total < 1###context:CREATE TABLE table_name_8 (silver INTEGER, nation VARCHAR, total VARCHAR) |
###question:what is the bronze when silver is 1, gold is 0 the rank is 11 and the total is more than 1?###answer:SELECT MAX(bronze) FROM table_name_74 WHERE silver = 1 AND gold = 0 AND rank = "11" AND total > 1###context:CREATE TABLE table_name_74 (bronze INTEGER, total VARCHAR, rank VARCHAR, silver VARCHAR, gold VARCH... |
###question:what is the rank when silver is 0, bronze is more than 1 and the total is more than 3?###answer:SELECT rank FROM table_name_32 WHERE silver = 0 AND bronze > 1 AND total > 3###context:CREATE TABLE table_name_32 (rank VARCHAR, total VARCHAR, silver VARCHAR, bronze VARCHAR) |
###question:what is the silver for mexico?###answer:SELECT silver FROM table_name_9 WHERE nation = "mexico"###context:CREATE TABLE table_name_9 (silver VARCHAR, nation VARCHAR) |
###question:What was the score of the game on February 8?###answer:SELECT score FROM table_name_69 WHERE date = "february 8"###context:CREATE TABLE table_name_69 (score VARCHAR, date VARCHAR) |
###question:Which athlete had a score of 236.023?###answer:SELECT athlete FROM table_name_55 WHERE score = "236.023"###context:CREATE TABLE table_name_55 (athlete VARCHAR, score VARCHAR) |
###question:What Texas has Johnson from Nort Dakota?###answer:SELECT texas FROM table_name_92 WHERE north_dakota = "johnson"###context:CREATE TABLE table_name_92 (texas VARCHAR, north_dakota VARCHAR) |
###question:What is the oklahoma has Bush from Nebraska in year 2004?###answer:SELECT oklahoma FROM table_name_41 WHERE nebraska = "bush" AND year = "2004"###context:CREATE TABLE table_name_41 (oklahoma VARCHAR, nebraska VARCHAR, year VARCHAR) |
###question:Which Nebraska has 2004 year?###answer:SELECT nebraska FROM table_name_25 WHERE year = "2004"###context:CREATE TABLE table_name_25 (nebraska VARCHAR, year VARCHAR) |
###question:What South Dakota has Bush of Oklahoma?###answer:SELECT south_dakota FROM table_name_17 WHERE oklahoma = "bush"###context:CREATE TABLE table_name_17 (south_dakota VARCHAR, oklahoma VARCHAR) |
###question:What is the Place of the Player with a Score of 70-75-70-74=289?###answer:SELECT place FROM table_name_60 WHERE score = 70 - 75 - 70 - 74 = 289###context:CREATE TABLE table_name_60 (place VARCHAR, score VARCHAR) |
###question:What is the To par of the Player with a Score of 71-74-72-72=289?###answer:SELECT to_par FROM table_name_25 WHERE score = 71 - 74 - 72 - 72 = 289###context:CREATE TABLE table_name_25 (to_par VARCHAR, score VARCHAR) |
###question:What Country is Player Leland Gibson with Money of 400 from?###answer:SELECT country FROM table_name_89 WHERE money__$_ = "400" AND player = "leland gibson"###context:CREATE TABLE table_name_89 (country VARCHAR, money__$_ VARCHAR, player VARCHAR) |
###question:What is the Country of the Player with a Score of 73-70-71-71=285?###answer:SELECT country FROM table_name_19 WHERE score = 73 - 70 - 71 - 71 = 285###context:CREATE TABLE table_name_19 (country VARCHAR, score VARCHAR) |
###question:What is T3 Place Player Bobby Locke's Score?###answer:SELECT score FROM table_name_40 WHERE place = "t3" AND player = "bobby locke"###context:CREATE TABLE table_name_40 (score VARCHAR, place VARCHAR, player VARCHAR) |
###question:How many points were scored in the Detroit Home?###answer:SELECT points FROM table_name_21 WHERE home = "detroit"###context:CREATE TABLE table_name_21 (points VARCHAR, home VARCHAR) |
###question:Who is the visitor from the game with 7,000 in attendance on January 1?###answer:SELECT visitor FROM table_name_77 WHERE attendance = "7,000" AND date = "january 1"###context:CREATE TABLE table_name_77 (visitor VARCHAR, attendance VARCHAR, date VARCHAR) |
###question:What is the record from the 2,500 in attendance?###answer:SELECT record FROM table_name_12 WHERE attendance = "2,500"###context:CREATE TABLE table_name_12 (record VARCHAR, attendance VARCHAR) |
###question:How many Silver medals for the Nation of Turkey with a Total of less than 2?###answer:SELECT SUM(silver) FROM table_name_9 WHERE nation = "turkey" AND total < 2###context:CREATE TABLE table_name_9 (silver INTEGER, nation VARCHAR, total VARCHAR) |
###question:How many Gold for the Nation in Rank 15 with 0 Silver?###answer:SELECT MAX(gold) FROM table_name_34 WHERE rank = "15" AND silver > 0###context:CREATE TABLE table_name_34 (gold INTEGER, rank VARCHAR, silver VARCHAR) |
###question:WHAT IS THE TOTAL NUMBER WITH A WARD SMALLER THAN 0?###answer:SELECT COUNT(total) FROM table_name_80 WHERE ward < 0###context:CREATE TABLE table_name_80 (total VARCHAR, ward INTEGER) |
###question:WHAT IS TOTAL NUMBER OF PR TOP-UPS THAT HAVE A PERCENTAGE OF 0.8%, TOTAL LARGER THAN 1?###answer:SELECT COUNT(pr_top_up) FROM table_name_92 WHERE percentage = "0.8%" AND total > 1###context:CREATE TABLE table_name_92 (pr_top_up VARCHAR, percentage VARCHAR, total VARCHAR) |
###question:WHAT IS THE TOTAL WITH WARD LARGER THAN 60?###answer:SELECT MIN(total) FROM table_name_96 WHERE ward > 60###context:CREATE TABLE table_name_96 (total INTEGER, ward INTEGER) |
###question:What is the total number of poles and 63 points?###answer:SELECT COUNT(poles) FROM table_name_66 WHERE points = "63"###context:CREATE TABLE table_name_66 (poles VARCHAR, points VARCHAR) |
###question:What is the most recent year with a mk.v type?###answer:SELECT MAX(year) FROM table_name_62 WHERE type = "mk.v"###context:CREATE TABLE table_name_62 (year INTEGER, type VARCHAR) |
###question:What is the Mainly For with a displacement of 997 cc in a year before 1962?###answer:SELECT mainly_for FROM table_name_61 WHERE year < 1962 AND displacement = "997 cc"###context:CREATE TABLE table_name_61 (mainly_for VARCHAR, year VARCHAR, displacement VARCHAR) |
###question:What type is the 105/107e Block from a year prior to 1960?###answer:SELECT type FROM table_name_50 WHERE block = "105/107e" AND year < 1960###context:CREATE TABLE table_name_50 (type VARCHAR, block VARCHAR, year VARCHAR) |
###question:What is the sum of March, when Score is "2 - 2", and when Game is greater than 67?###answer:SELECT SUM(march) FROM table_name_56 WHERE score = "2 - 2" AND game > 67###context:CREATE TABLE table_name_56 (march INTEGER, score VARCHAR, game VARCHAR) |
###question:What is the sum of Game, when Opponent is "Cleveland Barons", and when March is less than 8?###answer:SELECT SUM(game) FROM table_name_58 WHERE opponent = "cleveland barons" AND march < 8###context:CREATE TABLE table_name_58 (game INTEGER, opponent VARCHAR, march VARCHAR) |
###question:What is the lowest Game, when Opponent is "Boston Bruins"?###answer:SELECT MIN(game) FROM table_name_35 WHERE opponent = "boston bruins"###context:CREATE TABLE table_name_35 (game INTEGER, opponent VARCHAR) |
###question:For the game ending in a final result of 99-90, who was the Road Team?###answer:SELECT road_team FROM table_name_68 WHERE result = "99-90"###context:CREATE TABLE table_name_68 (road_team VARCHAR, result VARCHAR) |
###question:What was the result of the game played on May 5?###answer:SELECT result FROM table_name_5 WHERE date = "may 5"###context:CREATE TABLE table_name_5 (result VARCHAR, date VARCHAR) |
###question:On what day was Game 7 of this season played?###answer:SELECT date FROM table_name_78 WHERE game = "game 7"###context:CREATE TABLE table_name_78 (date VARCHAR, game VARCHAR) |
###question:What game number was played on April 23, with Boston as the road team?###answer:SELECT game FROM table_name_73 WHERE road_team = "boston" AND date = "april 23"###context:CREATE TABLE table_name_73 (game VARCHAR, road_team VARCHAR, date VARCHAR) |
###question:What was the result of Game 3 of this searson?###answer:SELECT result FROM table_name_95 WHERE game = "game 3"###context:CREATE TABLE table_name_95 (result VARCHAR, game VARCHAR) |
###question:Who was the Road Team for the game ending with a score of 118-112?###answer:SELECT road_team FROM table_name_89 WHERE result = "118-112"###context:CREATE TABLE table_name_89 (road_team VARCHAR, result VARCHAR) |
###question:what is the 2008 when 2007 is A, 2011 is A and tournament is san jose?###answer:SELECT 2008 FROM table_name_5 WHERE 2007 = "a" AND 2011 = "a" AND tournament = "san jose"###context:CREATE TABLE table_name_5 (tournament VARCHAR) |
###question:what is 2010 when 2011 is 2r and 2008 is 2r?###answer:SELECT 2010 FROM table_name_46 WHERE 2011 = "2r" AND 2008 = "2r"###context:CREATE TABLE table_name_46 (Id VARCHAR) |
###question:what is 2007 when 2011 is not held and 2012 is not held?###answer:SELECT 2007 FROM table_name_71 WHERE 2011 = "not held" AND 2012 = "not held"###context:CREATE TABLE table_name_71 (Id VARCHAR) |
###question:what is the tournament when 2011 is a, 2009 is lq and 2012 is 1r?###answer:SELECT tournament FROM table_name_65 WHERE 2011 = "a" AND 2009 = "lq" AND 2012 = "1r"###context:CREATE TABLE table_name_65 (tournament VARCHAR) |
###question:what is 2008 when 2007 is a, 2011 is a, 2010 is a and tournament is china?###answer:SELECT 2008 FROM table_name_53 WHERE 2007 = "a" AND 2011 = "a" AND 2010 = "a" AND tournament = "china"###context:CREATE TABLE table_name_53 (tournament VARCHAR) |
###question:What is the number of weeks where the result was listed at bye?###answer:SELECT COUNT(week) FROM table_name_12 WHERE result = "bye"###context:CREATE TABLE table_name_12 (week VARCHAR, result VARCHAR) |
###question:What is the total capacity for coach Trevor Gleeson?###answer:SELECT SUM(capacity) FROM table_name_64 WHERE coach = "trevor gleeson"###context:CREATE TABLE table_name_64 (capacity INTEGER, coach VARCHAR) |
###question:What is home ground for coach Andrej Lemanis?###answer:SELECT home_ground FROM table_name_68 WHERE coach = "andrej lemanis"###context:CREATE TABLE table_name_68 (home_ground VARCHAR, coach VARCHAR) |
###question:Which region is Coach Trevor Gleeson in?###answer:SELECT region FROM table_name_5 WHERE coach = "trevor gleeson"###context:CREATE TABLE table_name_5 (region VARCHAR, coach VARCHAR) |
###question:What is the home ground in region NZL?###answer:SELECT home_ground FROM table_name_40 WHERE region = "nzl"###context:CREATE TABLE table_name_40 (home_ground VARCHAR, region VARCHAR) |
###question:What song was composed by V. Selvaganesh later than 2010?###answer:SELECT song FROM table_name_58 WHERE composer = "v. selvaganesh" AND year > 2010###context:CREATE TABLE table_name_58 (song VARCHAR, composer VARCHAR, year VARCHAR) |
###question:What year was the composition by Mejo Joseph?###answer:SELECT COUNT(year) FROM table_name_7 WHERE composer = "mejo joseph"###context:CREATE TABLE table_name_7 (year VARCHAR, composer VARCHAR) |
###question:What is the highest Pick, when Nationality is "United States", when College is "New Mexico State", and when Round is greater than 6?###answer:SELECT MAX(pick) FROM table_name_35 WHERE nationality = "united states" AND college = "new mexico state" AND round > 6###context:CREATE TABLE table_name_35 (pick INTE... |
###question:What is Player, when Pick is less than 161, and when College is "Auburn University"?###answer:SELECT player FROM table_name_58 WHERE pick < 161 AND college = "auburn university"###context:CREATE TABLE table_name_58 (player VARCHAR, pick VARCHAR, college VARCHAR) |
###question:What is Player, when Round is less than 6, and when Pick is "69"?###answer:SELECT player FROM table_name_78 WHERE round < 6 AND pick = 69###context:CREATE TABLE table_name_78 (player VARCHAR, round VARCHAR, pick VARCHAR) |
###question:What is the sum of Round, when College is "Norfolk State"?###answer:SELECT SUM(round) FROM table_name_32 WHERE college = "norfolk state"###context:CREATE TABLE table_name_32 (round INTEGER, college VARCHAR) |
###question:What country does david gilford play for?###answer:SELECT country FROM table_name_90 WHERE player = "david gilford"###context:CREATE TABLE table_name_90 (country VARCHAR, player VARCHAR) |
###question:Which player plays for australia?###answer:SELECT player FROM table_name_2 WHERE country = "australia"###context:CREATE TABLE table_name_2 (player VARCHAR, country VARCHAR) |
###question:What's the sum of all phil mickelson's game scores?###answer:SELECT SUM(score) FROM table_name_36 WHERE player = "phil mickelson"###context:CREATE TABLE table_name_36 (score INTEGER, player VARCHAR) |
###question:In what round was Clyde the opponent?###answer:SELECT round FROM table_name_28 WHERE opponent = "clyde"###context:CREATE TABLE table_name_28 (round VARCHAR, opponent VARCHAR) |
###question:Who was the opponent in the round of R2?###answer:SELECT opponent FROM table_name_95 WHERE round = "r2"###context:CREATE TABLE table_name_95 (opponent VARCHAR, round VARCHAR) |
###question:What Tournament had a Winning score of –6 (73-68-72-69=282)?###answer:SELECT tournament FROM table_name_49 WHERE winning_score = –6(73 - 68 - 72 - 69 = 282)###context:CREATE TABLE table_name_49 (tournament VARCHAR, winning_score VARCHAR) |
###question:What Tournament had a Victory of 1 Stroke with a Winning score of –16 (67-66-70-69=272)?###answer:SELECT tournament FROM table_name_71 WHERE margin_of_victory = "1 stroke" AND winning_score = –16(67 - 66 - 70 - 69 = 272)###context:CREATE TABLE table_name_71 (tournament VARCHAR, margin_of_victory VARCHAR, wi... |
###question:What is the average opened year of line e, which had their last extension before 2003?###answer:SELECT AVG(opened) FROM table_name_40 WHERE line_name = "line e" AND last_extension < 2003###context:CREATE TABLE table_name_40 (opened INTEGER, line_name VARCHAR, last_extension VARCHAR) |
###question:What is Round, when Rank is less than 117?###answer:SELECT round FROM table_name_90 WHERE rank < 117###context:CREATE TABLE table_name_90 (round VARCHAR, rank INTEGER) |
###question:What is Average Year, when Round is R128 (First Round)?###answer:SELECT AVG(year) FROM table_name_46 WHERE round = "r128 (first round)"###context:CREATE TABLE table_name_46 (year INTEGER, round VARCHAR) |
###question:What is Championship, when Year is greater than 2002, and when Surface is Hard?###answer:SELECT championship FROM table_name_50 WHERE year > 2002 AND surface = "hard"###context:CREATE TABLE table_name_50 (championship VARCHAR, year VARCHAR, surface VARCHAR) |
###question:What is the average position for a driver with less than 54 points and husaberg-bsu as equipment?###answer:SELECT AVG(position) FROM table_name_69 WHERE points < 54 AND equipment = "husaberg-bsu"###context:CREATE TABLE table_name_69 (position INTEGER, points VARCHAR, equipment VARCHAR) |
###question:How many wins does the driver with 217 points have?###answer:SELECT wins FROM table_name_44 WHERE points = 217###context:CREATE TABLE table_name_44 (wins VARCHAR, points VARCHAR) |
###question:what is the team when the driver is viktor jensen?###answer:SELECT team FROM table_name_64 WHERE driver = "viktor jensen"###context:CREATE TABLE table_name_64 (team VARCHAR, driver VARCHAR) |
###question:what is the team when the rounds is all engine is mercedes hwa and driver is sam abay?###answer:SELECT team FROM table_name_54 WHERE rounds = "all" AND engine = "mercedes hwa" AND driver = "sam abay"###context:CREATE TABLE table_name_54 (team VARCHAR, driver VARCHAR, rounds VARCHAR, engine VARCHAR) |
###question:what is the class when the chassis is dallara f308, rounds is all and the driver is sam abay?###answer:SELECT class FROM table_name_6 WHERE chassis = "dallara f308" AND rounds = "all" AND driver = "sam abay"###context:CREATE TABLE table_name_6 (class VARCHAR, driver VARCHAR, chassis VARCHAR, rounds VARCHAR) |
###question:What is Run 4, when Run 2 is 1:29.00?###answer:SELECT run_4 FROM table_name_12 WHERE run_2 = "1:29.00"###context:CREATE TABLE table_name_12 (run_4 VARCHAR, run_2 VARCHAR) |
###question:What is Team, when Run 3 is 1:24.00?###answer:SELECT team FROM table_name_70 WHERE run_3 = "1:24.00"###context:CREATE TABLE table_name_70 (team VARCHAR, run_3 VARCHAR) |
###question:What is Run 1, when Team is "Italy (ITA) Italy I"?###answer:SELECT run_1 FROM table_name_15 WHERE team = "italy (ita) italy i"###context:CREATE TABLE table_name_15 (run_1 VARCHAR, team VARCHAR) |
###question:What is Athletes, when Run 2 is 1:24.77?###answer:SELECT athletes FROM table_name_86 WHERE run_2 = "1:24.77"###context:CREATE TABLE table_name_86 (athletes VARCHAR, run_2 VARCHAR) |
###question:What is Run 4, when Run 2 is 1:25.84?###answer:SELECT run_4 FROM table_name_21 WHERE run_2 = "1:25.84"###context:CREATE TABLE table_name_21 (run_4 VARCHAR, run_2 VARCHAR) |
###question:What is Run 1, when Athletes is "Theo Kitt & Friedrich Kuhn"?###answer:SELECT run_1 FROM table_name_89 WHERE athletes = "theo kitt & friedrich kuhn"###context:CREATE TABLE table_name_89 (run_1 VARCHAR, athletes VARCHAR) |
###question:What is Date, when Attendance is less than 521?###answer:SELECT date FROM table_name_43 WHERE attendance < 521###context:CREATE TABLE table_name_43 (date VARCHAR, attendance INTEGER) |
###question:What is Away, when Home is "marathon"?###answer:SELECT away FROM table_name_14 WHERE home = "marathon"###context:CREATE TABLE table_name_14 (away VARCHAR, home VARCHAR) |
###question:What is Score, when Home is "marathon"?###answer:SELECT score FROM table_name_31 WHERE home = "marathon"###context:CREATE TABLE table_name_31 (score VARCHAR, home VARCHAR) |
###question:What is the total number of Attendance(s), when Away is Real Juventud?###answer:SELECT COUNT(attendance) FROM table_name_8 WHERE away = "real juventud"###context:CREATE TABLE table_name_8 (attendance VARCHAR, away VARCHAR) |
###question:What is Record, when H/A/N is "A", and when Date is "February 1"?###answer:SELECT record FROM table_name_2 WHERE h_a_n = "a" AND date = "february 1"###context:CREATE TABLE table_name_2 (record VARCHAR, h_a_n VARCHAR, date VARCHAR) |
###question:What is Date, when Opponent is "Philadelphia 76ers"?###answer:SELECT date FROM table_name_6 WHERE opponent = "philadelphia 76ers"###context:CREATE TABLE table_name_6 (date VARCHAR, opponent VARCHAR) |
###question:What is Opponent, when Record is 17-44?###answer:SELECT opponent FROM table_name_98 WHERE record = "17-44"###context:CREATE TABLE table_name_98 (opponent VARCHAR, record VARCHAR) |
###question:What is Date, when H/A/N is "H", and when Score is 112-118?###answer:SELECT date FROM table_name_77 WHERE h_a_n = "h" AND score = "112-118"###context:CREATE TABLE table_name_77 (date VARCHAR, h_a_n VARCHAR, score VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.