combined_text stringlengths 106 1.05k |
|---|
###question:Which player who weighs 210 plays for the Reno Bighorns?###answer:SELECT player FROM table_name_68 WHERE weight = 210 AND team = "reno bighorns"###context:CREATE TABLE table_name_68 (player VARCHAR, weight VARCHAR, team VARCHAR) |
###question:What position does Brian Butch play?###answer:SELECT pos FROM table_name_40 WHERE player = "brian butch"###context:CREATE TABLE table_name_40 (pos VARCHAR, player VARCHAR) |
###question:Which Position has a Player of tyronn lue, and a Years in Orlando of 2003–2004?###answer:SELECT position FROM table_name_97 WHERE player = "tyronn lue" AND years_in_orlando = "2003–2004"###context:CREATE TABLE table_name_97 (position VARCHAR, player VARCHAR, years_in_orlando VARCHAR) |
###question:Which School/Club Team has a Player of deandre liggins?###answer:SELECT school_club_team FROM table_name_34 WHERE player = "deandre liggins"###context:CREATE TABLE table_name_34 (school_club_team VARCHAR, player VARCHAR) |
###question:Which Position has a Years in Orlando of 1997–1998?###answer:SELECT position FROM table_name_68 WHERE years_in_orlando = "1997–1998"###context:CREATE TABLE table_name_68 (position VARCHAR, years_in_orlando VARCHAR) |
###question:Which Position has a School/Club Team of stanford?###answer:SELECT position FROM table_name_15 WHERE school_club_team = "stanford"###context:CREATE TABLE table_name_15 (position VARCHAR, school_club_team VARCHAR) |
###question:Which School/Club Team has a Years in Orlando of 1997–1998?###answer:SELECT school_club_team FROM table_name_92 WHERE years_in_orlando = "1997–1998"###context:CREATE TABLE table_name_92 (school_club_team VARCHAR, years_in_orlando VARCHAR) |
###question:Which Position has a Years in Orlando of 2003–2004?###answer:SELECT position FROM table_name_55 WHERE years_in_orlando = "2003–2004"###context:CREATE TABLE table_name_55 (position VARCHAR, years_in_orlando VARCHAR) |
###question:What is the High assists with a Date that is february 27?###answer:SELECT high_assists FROM table_name_42 WHERE date = "february 27"###context:CREATE TABLE table_name_42 (high_assists VARCHAR, date VARCHAR) |
###question:What is the High points with a Game that is 56?###answer:SELECT high_points FROM table_name_31 WHERE game = 56###context:CREATE TABLE table_name_31 (high_points VARCHAR, game VARCHAR) |
###question:In what Distance has a Venue of sale?###answer:SELECT distance FROM table_name_36 WHERE venue = "sale"###context:CREATE TABLE table_name_36 (distance VARCHAR, venue VARCHAR) |
###question:WHo is Winner/2nd that has c. symons?###answer:SELECT winner_2nd FROM table_name_84 WHERE jockey = "c. symons"###context:CREATE TABLE table_name_84 (winner_2nd VARCHAR, jockey VARCHAR) |
###question:Which Race that Jockey of d. nikolic is in?###answer:SELECT race FROM table_name_78 WHERE jockey = "d. nikolic"###context:CREATE TABLE table_name_78 (race VARCHAR, jockey VARCHAR) |
###question:Name The Result that has a Distance of 1200m, and a Weight (kg) of 55.5?###answer:SELECT result FROM table_name_5 WHERE distance = "1200m" AND weight__kg_ = 55.5###context:CREATE TABLE table_name_5 (result VARCHAR, distance VARCHAR, weight__kg_ VARCHAR) |
###question:What is the previous team of the United States player who had 2 NBA years and played the F position?###answer:SELECT previous_team FROM table_name_41 WHERE nationality = "united states" AND nba_years_[a_] = 2 AND pos = "f"###context:CREATE TABLE table_name_41 (previous_team VARCHAR, pos VARCHAR, nationality... |
###question:Which Team has a Score of 108-107?###answer:SELECT team FROM table_name_82 WHERE score = "108-107"###context:CREATE TABLE table_name_82 (team VARCHAR, score VARCHAR) |
###question:Which Record has a Date of may 31?###answer:SELECT record FROM table_name_55 WHERE date = "may 31"###context:CREATE TABLE table_name_55 (record VARCHAR, date VARCHAR) |
###question:Which Game has a Team of at phoenix, and a Score of 107-119?###answer:SELECT COUNT(game) FROM table_name_54 WHERE team = "at phoenix" AND score = "107-119"###context:CREATE TABLE table_name_54 (game VARCHAR, team VARCHAR, score VARCHAR) |
###question:Which Location Attendance has a Game larger than 5?###answer:SELECT location_attendance FROM table_name_32 WHERE game > 5###context:CREATE TABLE table_name_32 (location_attendance VARCHAR, game INTEGER) |
###question:Which Team has a Score of 89-123?###answer:SELECT team FROM table_name_40 WHERE score = "89-123"###context:CREATE TABLE table_name_40 (team VARCHAR, score VARCHAR) |
###question:What is the average Game with a Date that is june 14?###answer:SELECT AVG(game) FROM table_name_24 WHERE date = "june 14"###context:CREATE TABLE table_name_24 (game INTEGER, date VARCHAR) |
###question:What is the Record with a Team that is detroit and a Date that is june 10?###answer:SELECT record FROM table_name_56 WHERE team = "detroit" AND date = "june 10"###context:CREATE TABLE table_name_56 (record VARCHAR, team VARCHAR, date VARCHAR) |
###question:What is the Location Attendance with a Record that is 1-4?###answer:SELECT location_attendance FROM table_name_31 WHERE record = "1-4"###context:CREATE TABLE table_name_31 (location_attendance VARCHAR, record VARCHAR) |
###question:How much is the GDP for a population density of 254.7?###answer:SELECT gdp__ppp__$m_usd FROM table_name_7 WHERE population_density__per_km²_ = "254.7"###context:CREATE TABLE table_name_7 (gdp__ppp__$m_usd VARCHAR, population_density__per_km²_ VARCHAR) |
###question:Which country has a population density of 50.3?###answer:SELECT country FROM table_name_46 WHERE population_density__per_km²_ = "50.3"###context:CREATE TABLE table_name_46 (country VARCHAR, population_density__per_km²_ VARCHAR) |
###question:How much is the GDP for an area of 61,395?###answer:SELECT gdp__ppp__$m_usd FROM table_name_86 WHERE area__km²_ = "61,395"###context:CREATE TABLE table_name_86 (gdp__ppp__$m_usd VARCHAR, area__km²_ VARCHAR) |
###question:How much is the population density with a GDP at $188,112?###answer:SELECT population_density__per_km²_ FROM table_name_31 WHERE gdp__ppp__$m_usd = "$188,112"###context:CREATE TABLE table_name_31 (population_density__per_km²_ VARCHAR, gdp__ppp__$m_usd VARCHAR) |
###question:How much is the GDP for an area of 116?###answer:SELECT gdp__ppp__$m_usd FROM table_name_26 WHERE area__km²_ = "116"###context:CREATE TABLE table_name_26 (gdp__ppp__$m_usd VARCHAR, area__km²_ VARCHAR) |
###question:Which country has a population of 3,221,216?###answer:SELECT country FROM table_name_79 WHERE population__2011_est_ = "3,221,216"###context:CREATE TABLE table_name_79 (country VARCHAR, population__2011_est_ VARCHAR) |
###question:What was Miller Barber wins with Top-5 less than 2 and 19 Events?###answer:SELECT COUNT(wins) FROM table_name_77 WHERE top_5 < 2 AND events = 19###context:CREATE TABLE table_name_77 (wins VARCHAR, top_5 VARCHAR, events VARCHAR) |
###question:What is the average number of Wins in a PGA Championship with a Top-5 less than 2?###answer:SELECT AVG(wins) FROM table_name_87 WHERE tournament = "pga championship" AND top_5 < 2###context:CREATE TABLE table_name_87 (wins INTEGER, tournament VARCHAR, top_5 VARCHAR) |
###question:What is the highest Top-5 ranking with Events less than 4?###answer:SELECT MAX(top_5) FROM table_name_63 WHERE events < 4###context:CREATE TABLE table_name_63 (top_5 INTEGER, events INTEGER) |
###question:Which week's game was attended by 65,272 people?###answer:SELECT week FROM table_name_18 WHERE attendance = "65,272"###context:CREATE TABLE table_name_18 (week VARCHAR, attendance VARCHAR) |
###question:How many people attended the game in week 13?###answer:SELECT attendance FROM table_name_60 WHERE week = 13###context:CREATE TABLE table_name_60 (attendance VARCHAR, week VARCHAR) |
###question:During which week was the earliest game with an attendance of 65,904 people?###answer:SELECT MIN(week) FROM table_name_58 WHERE attendance = "65,904"###context:CREATE TABLE table_name_58 (week INTEGER, attendance VARCHAR) |
###question:What height is the tallest for an outside hitter?###answer:SELECT MAX(height) FROM table_name_94 WHERE position = "outside hitter"###context:CREATE TABLE table_name_94 (height INTEGER, position VARCHAR) |
###question:What is the highest silver rank with a total of 27?###answer:SELECT MAX(silver) FROM table_name_65 WHERE total = 27###context:CREATE TABLE table_name_65 (silver INTEGER, total VARCHAR) |
###question:What is the total number of Silver when Bronze was smaller than 1 with a total smaller than 2 in Bulgaria?###answer:SELECT COUNT(silver) FROM table_name_6 WHERE bronze < 1 AND total < 2 AND nation = "bulgaria"###context:CREATE TABLE table_name_6 (silver VARCHAR, nation VARCHAR, bronze VARCHAR, total VARCHAR... |
###question:What is the temperature classification of a purple colored glass bulb?###answer:SELECT temperature_classification FROM table_name_22 WHERE glass_bulb_color = "purple"###context:CREATE TABLE table_name_22 (temperature_classification VARCHAR, glass_bulb_color VARCHAR) |
###question:What is the color code with a temperature classification of ordinary?###answer:SELECT color_code__with_fusible_link_ FROM table_name_67 WHERE temperature_classification = "ordinary"###context:CREATE TABLE table_name_67 (color_code__with_fusible_link_ VARCHAR, temperature_classification VARCHAR) |
###question:What is the temperature rating of the intermediate temperature classification?###answer:SELECT temperature_rating FROM table_name_1 WHERE temperature_classification = "intermediate"###context:CREATE TABLE table_name_1 (temperature_rating VARCHAR, temperature_classification VARCHAR) |
###question:What is the average Goals for team Kairat, in the 2002 season with more than 29 apps?###answer:SELECT AVG(goals) FROM table_name_81 WHERE team = "kairat" AND season = "2002" AND apps > 29###context:CREATE TABLE table_name_81 (goals INTEGER, apps VARCHAR, team VARCHAR, season VARCHAR) |
###question:What is the Country for the 2006-07 season?###answer:SELECT country FROM table_name_11 WHERE season = "2006-07"###context:CREATE TABLE table_name_11 (country VARCHAR, season VARCHAR) |
###question:What is the average Apps for the team Kairat with level larger than 1?###answer:SELECT AVG(apps) FROM table_name_51 WHERE team = "kairat" AND level > 1###context:CREATE TABLE table_name_51 (apps INTEGER, team VARCHAR, level VARCHAR) |
###question:How many laps did the rider with a grid larger than 11, a Honda cbr1000rr bike, and a time of +42.633?###answer:SELECT laps FROM table_name_17 WHERE grid > 11 AND bike = "honda cbr1000rr" AND time = "+42.633"###context:CREATE TABLE table_name_17 (laps VARCHAR, time VARCHAR, grid VARCHAR, bike VARCHAR) |
###question:Who was teh rider with 18 laps and a grid of 25?###answer:SELECT rider FROM table_name_43 WHERE laps = 18 AND grid = 25###context:CREATE TABLE table_name_43 (rider VARCHAR, laps VARCHAR, grid VARCHAR) |
###question:Who was the rider who had an accident time and a kawasaki zx-10r bike?###answer:SELECT rider FROM table_name_49 WHERE time = "accident" AND bike = "kawasaki zx-10r"###context:CREATE TABLE table_name_49 (rider VARCHAR, time VARCHAR, bike VARCHAR) |
###question:What is the time of rider Loic Napoleone, who had less than 18 laps and a grid greater than 8?###answer:SELECT time FROM table_name_7 WHERE laps < 18 AND grid > 8 AND rider = "loic napoleone"###context:CREATE TABLE table_name_7 (time VARCHAR, rider VARCHAR, laps VARCHAR, grid VARCHAR) |
###question:How many laps did the rider with a grid larger than 14 and a time of +33.150 have?###answer:SELECT laps FROM table_name_82 WHERE grid > 14 AND time = "+33.150"###context:CREATE TABLE table_name_82 (laps VARCHAR, grid VARCHAR, time VARCHAR) |
###question:What is Away, when Home is Guelph Gargoyles?###answer:SELECT away FROM table_name_24 WHERE home = "guelph gargoyles"###context:CREATE TABLE table_name_24 (away VARCHAR, home VARCHAR) |
###question:What is Home, when Ground is Humber College North, and when Time is 15:00?###answer:SELECT home FROM table_name_58 WHERE ground = "humber college north" AND time = "15:00"###context:CREATE TABLE table_name_58 (home VARCHAR, ground VARCHAR, time VARCHAR) |
###question:What is Date, when Away is High Park Demons?###answer:SELECT date FROM table_name_6 WHERE away = "high park demons"###context:CREATE TABLE table_name_6 (date VARCHAR, away VARCHAR) |
###question:What is Date, when Away is High Park Demons?###answer:SELECT date FROM table_name_43 WHERE away = "high park demons"###context:CREATE TABLE table_name_43 (date VARCHAR, away VARCHAR) |
###question:What is Time, when Away is Central Blues?###answer:SELECT time FROM table_name_95 WHERE away = "central blues"###context:CREATE TABLE table_name_95 (time VARCHAR, away VARCHAR) |
###question:What cover has a published date of May 27, 2009 (hc) May 20, 2009 (tpb)?###answer:SELECT cover FROM table_name_12 WHERE published = "may 27, 2009 (hc) may 20, 2009 (tpb)"###context:CREATE TABLE table_name_12 (cover VARCHAR, published VARCHAR) |
###question:What is the number of the volume that has an ISBN of 978-1-59582-712-8 (hc) 978-1-59582-713-5 (tpb)?###answer:SELECT volume FROM table_name_49 WHERE isbn = "978-1-59582-712-8 (hc) 978-1-59582-713-5 (tpb)"###context:CREATE TABLE table_name_49 (volume VARCHAR, isbn VARCHAR) |
###question:What is the name of the series with an ISBN of 978-1-59582-523-0 (tpb)?###answer:SELECT series FROM table_name_22 WHERE isbn = "978-1-59582-523-0 (tpb)"###context:CREATE TABLE table_name_22 (series VARCHAR, isbn VARCHAR) |
###question:What volume number has the ISBN of 978-1-59582-712-8 (hc) 978-1-59582-713-5 (tpb)?###answer:SELECT volume FROM table_name_38 WHERE isbn = "978-1-59582-712-8 (hc) 978-1-59582-713-5 (tpb)"###context:CREATE TABLE table_name_38 (volume VARCHAR, isbn VARCHAR) |
###question:What is the ISBN of the Conan the Barbarian series that has the title of Queen of the Black Coast?###answer:SELECT isbn FROM table_name_75 WHERE series = "conan the barbarian" AND title = "queen of the black coast"###context:CREATE TABLE table_name_75 (isbn VARCHAR, series VARCHAR, title VARCHAR) |
###question:What cover has Throne of Aquilonia as the title?###answer:SELECT cover FROM table_name_46 WHERE title = "throne of aquilonia"###context:CREATE TABLE table_name_46 (cover VARCHAR, title VARCHAR) |
###question:With a Rank of less than 4, what is Pablo Prigioni's total number of Games?###answer:SELECT COUNT(games) FROM table_name_44 WHERE name = "pablo prigioni" AND rank < 4###context:CREATE TABLE table_name_44 (games VARCHAR, name VARCHAR, rank VARCHAR) |
###question:How many Assists for the Player with more than 25 Games?###answer:SELECT SUM(assists) FROM table_name_45 WHERE games > 25###context:CREATE TABLE table_name_45 (assists INTEGER, games INTEGER) |
###question:What is the Rank of the Maccabi Tel Aviv Player with 25 Games?###answer:SELECT COUNT(rank) FROM table_name_82 WHERE games = 25 AND team = "maccabi tel aviv"###context:CREATE TABLE table_name_82 (rank VARCHAR, games VARCHAR, team VARCHAR) |
###question:How many Assists for the Player with a Rank greater than 3 in less than 25 Games?###answer:SELECT AVG(assists) FROM table_name_66 WHERE rank > 3 AND games < 25###context:CREATE TABLE table_name_66 (assists INTEGER, rank VARCHAR, games VARCHAR) |
###question:How many Games for Rank 2 Terrell McIntyre?###answer:SELECT MIN(games) FROM table_name_8 WHERE name = "terrell mcintyre" AND rank > 2###context:CREATE TABLE table_name_8 (games INTEGER, name VARCHAR, rank VARCHAR) |
###question:What is the Venue of the Heptathlon after 2006 where Tatyana Chernova comes in Position 7th?###answer:SELECT venue FROM table_name_70 WHERE year > 2006 AND position = "7th" AND notes = "heptathlon"###context:CREATE TABLE table_name_70 (venue VARCHAR, notes VARCHAR, year VARCHAR, position VARCHAR) |
###question:In what Year did Chernova come in 1st in Götzis, Austria?###answer:SELECT SUM(year) FROM table_name_37 WHERE venue = "götzis, austria" AND position = "1st"###context:CREATE TABLE table_name_37 (year INTEGER, venue VARCHAR, position VARCHAR) |
###question:Which Cover Model was featured on 8-03?###answer:SELECT cover_model FROM table_name_8 WHERE date = "8-03"###context:CREATE TABLE table_name_8 (cover_model VARCHAR, date VARCHAR) |
###question:Who was the Centerfold model when O.J. Simpson was the Interview Subject?###answer:SELECT centerfold_model FROM table_name_72 WHERE interview_subject = "o.j. simpson"###context:CREATE TABLE table_name_72 (centerfold_model VARCHAR, interview_subject VARCHAR) |
###question:Who was the Cover model when the Centerfold Model was Marketa Janska?###answer:SELECT cover_model FROM table_name_43 WHERE centerfold_model = "marketa janska"###context:CREATE TABLE table_name_43 (cover_model VARCHAR, centerfold_model VARCHAR) |
###question:Who was the Cover model on 11-03?###answer:SELECT cover_model FROM table_name_96 WHERE date = "11-03"###context:CREATE TABLE table_name_96 (cover_model VARCHAR, date VARCHAR) |
###question:Who was the Centerfold Model on 9-03?###answer:SELECT centerfold_model FROM table_name_79 WHERE date = "9-03"###context:CREATE TABLE table_name_79 (centerfold_model VARCHAR, date VARCHAR) |
###question:How many rounds had a selection of 165?###answer:SELECT SUM(round) FROM table_name_74 WHERE selection = 165###context:CREATE TABLE table_name_74 (round INTEGER, selection VARCHAR) |
###question:What is the average Height for the Position of d, with a Birthplace of new hope, minnesota?###answer:SELECT AVG(height__cm_) FROM table_name_79 WHERE position = "d" AND birthplace = "new hope, minnesota"###context:CREATE TABLE table_name_79 (height__cm_ INTEGER, position VARCHAR, birthplace VARCHAR) |
###question:What is the 1990–1991 Team when the Birthplace shows as new york?###answer:SELECT 1990 AS _1991_team FROM table_name_23 WHERE birthplace = "new york"###context:CREATE TABLE table_name_23 (birthplace VARCHAR) |
###question:What is the Position when the person's birthplace was toledo, ohio?###answer:SELECT position FROM table_name_32 WHERE birthplace = "toledo, ohio"###context:CREATE TABLE table_name_32 (position VARCHAR, birthplace VARCHAR) |
###question:What is the 1990–1991 Team that had Joel Otto?###answer:SELECT 1990 AS _1991_team FROM table_name_41 WHERE name = "joel otto"###context:CREATE TABLE table_name_41 (name VARCHAR) |
###question:Which T.C. has a Year larger than 2007, and a D.C. of 21st?###answer:SELECT tc FROM table_name_26 WHERE year > 2007 AND dc = "21st"###context:CREATE TABLE table_name_26 (tc VARCHAR, year VARCHAR, dc VARCHAR) |
###question:What kind of D.C. has Races smaller than 20, and Points larger than 0, and Drivers of christian vietoris, and Wins of 1?###answer:SELECT dc FROM table_name_65 WHERE races < 20 AND points > 0 AND drivers = "christian vietoris" AND wins = 1###context:CREATE TABLE table_name_65 (dc VARCHAR, wins VARCHAR, drive... |
###question:Which Races has a T.C. of 3rd, and a D.C. of 7th?###answer:SELECT MIN(races) FROM table_name_14 WHERE tc = "3rd" AND dc = "7th"###context:CREATE TABLE table_name_14 (races INTEGER, tc VARCHAR, dc VARCHAR) |
###question:What is the 2007 of the Grand Slam Tournaments in 2008?###answer:SELECT 2007 FROM table_name_16 WHERE 2008 = "grand slam tournaments"###context:CREATE TABLE table_name_16 (Id VARCHAR) |
###question:What is the Tournament with a 3r 2011 and A 2010?###answer:SELECT tournament FROM table_name_63 WHERE 2011 = "3r" AND 2010 = "a"###context:CREATE TABLE table_name_63 (tournament VARCHAR) |
###question:What is the 2008 of the 2r 2011 and A 2010?###answer:SELECT 2008 FROM table_name_38 WHERE 2011 = "2r" AND 2010 = "a"###context:CREATE TABLE table_name_38 (Id VARCHAR) |
###question:What is the 2010 of the Grand Slam Tournaments in 2011?###answer:SELECT 2010 FROM table_name_66 WHERE 2011 = "grand slam tournaments"###context:CREATE TABLE table_name_66 (Id VARCHAR) |
###question:What is the total number of runners-up for a club with winning years of 2010?###answer:SELECT COUNT(runners_up) FROM table_name_92 WHERE winning_years = "2010"###context:CREATE TABLE table_name_92 (runners_up VARCHAR, winning_years VARCHAR) |
###question:Who were the runners-up for the FC Viktoria Plzeň club?###answer:SELECT runners_up FROM table_name_7 WHERE club = "fc viktoria plzeň"###context:CREATE TABLE table_name_7 (runners_up VARCHAR, club VARCHAR) |
###question:Which congress was held in 2010?###answer:SELECT con__gress FROM table_name_50 WHERE date = "2010"###context:CREATE TABLE table_name_50 (con__gress VARCHAR, date VARCHAR) |
###question:What is the casting temperature for a hardness of 22?###answer:SELECT casting_at__°c_ FROM table_name_88 WHERE hardness = "22"###context:CREATE TABLE table_name_88 (casting_at__°c_ VARCHAR, hardness VARCHAR) |
###question:What is the hardness for the alloy that is liquid at 243 degrees C?###answer:SELECT hardness FROM table_name_45 WHERE liquid_at__°c_ = "243"###context:CREATE TABLE table_name_45 (hardness VARCHAR, liquid_at__°c_ VARCHAR) |
###question:What is the Sn/Sb percentage that is liquid at 258 degrees C?###answer:SELECT sn_sb___percentage_ FROM table_name_4 WHERE liquid_at__°c_ = "258"###context:CREATE TABLE table_name_4 (sn_sb___percentage_ VARCHAR, liquid_at__°c_ VARCHAR) |
###question:What is the remelting temperature for the alloy that has a Sn/Sb ratio of 9.5/15?###answer:SELECT remelting_at__°c_ FROM table_name_51 WHERE sn_sb___percentage_ = "9.5/15"###context:CREATE TABLE table_name_51 (remelting_at__°c_ VARCHAR, sn_sb___percentage_ VARCHAR) |
###question:What is the casting temperature for the alloy with hardness 21?###answer:SELECT casting_at__°c_ FROM table_name_98 WHERE hardness = "21"###context:CREATE TABLE table_name_98 (casting_at__°c_ VARCHAR, hardness VARCHAR) |
###question:What's the most laps when grid is 16?###answer:SELECT MAX(laps) FROM table_name_93 WHERE grid = 16###context:CREATE TABLE table_name_93 (laps INTEGER, grid VARCHAR) |
###question:How many laps were there for a grid of 13?###answer:SELECT COUNT(laps) FROM table_name_35 WHERE grid = 13###context:CREATE TABLE table_name_35 (laps VARCHAR, grid VARCHAR) |
###question:How many weeks had an attendance at 69,149?###answer:SELECT COUNT(week) FROM table_name_12 WHERE attendance = "69,149"###context:CREATE TABLE table_name_12 (week VARCHAR, attendance VARCHAR) |
###question:On what date did week 6 occur?###answer:SELECT date FROM table_name_40 WHERE week = 6###context:CREATE TABLE table_name_40 (date VARCHAR, week VARCHAR) |
###question:Who was the opponent on December 18, 2005?###answer:SELECT opponent FROM table_name_80 WHERE date = "december 18, 2005"###context:CREATE TABLE table_name_80 (opponent VARCHAR, date VARCHAR) |
###question:What is the result/score for the match report recap on week 14?###answer:SELECT result_score FROM table_name_25 WHERE match_report = "recap" AND week = 14###context:CREATE TABLE table_name_25 (result_score VARCHAR, match_report VARCHAR, week VARCHAR) |
###question:How many weeks have w 51-29 as the result/score?###answer:SELECT SUM(week) FROM table_name_34 WHERE result_score = "w 51-29"###context:CREATE TABLE table_name_34 (week INTEGER, result_score VARCHAR) |
###question:What is the result/score that has 6-5 as the record?###answer:SELECT result_score FROM table_name_45 WHERE record = "6-5"###context:CREATE TABLE table_name_45 (result_score VARCHAR, record VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.