Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
59,700
<question>: Who was the visitor when ward recorded the decision with a record of 22–21–4? <context>: CREATE TABLE table_name_4 (visitor VARCHAR, decision VARCHAR, record VARCHAR)
SELECT visitor FROM table_name_4 WHERE decision = "ward" AND record = "22–21–4"
59,701
<question>: What is the score of the game when they had a record of 22–19–4? <context>: CREATE TABLE table_name_77 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_77 WHERE record = "22–19–4"
59,702
<question>: What is the 1st week sales for the album finding forever before the number 6? <context>: CREATE TABLE table_name_51 (album VARCHAR, number VARCHAR)
SELECT SUM(1 AS st_week_sales) FROM table_name_51 WHERE album = "finding forever" AND number < 6
59,703
<question>: What is the sum number of grid where time/retired is 2:41:38.4 and laps were more than 40? <context>: CREATE TABLE table_name_60 (grid VARCHAR, time_retired VARCHAR, laps VARCHAR)
SELECT COUNT(grid) FROM table_name_60 WHERE time_retired = "2:41:38.4" AND laps > 40
59,704
<question>: Which constructor had laps amounting to more than 21 where the driver was John Surtees? <context>: CREATE TABLE table_name_14 (constructor VARCHAR, laps VARCHAR, driver VARCHAR)
SELECT constructor FROM table_name_14 WHERE laps > 21 AND driver = "john surtees"
59,705
<question>: How many laps did Jo Bonnier driver when the grid number was smaller than 11? <context>: CREATE TABLE table_name_6 (laps INTEGER, driver VARCHAR, grid VARCHAR)
SELECT SUM(laps) FROM table_name_6 WHERE driver = "jo bonnier" AND grid < 11
59,706
<question>: How many laps were there when time/retired was gearbox? <context>: CREATE TABLE table_name_53 (laps INTEGER, time_retired VARCHAR)
SELECT SUM(laps) FROM table_name_53 WHERE time_retired = "gearbox"
59,707
<question>: How many were in attendance at the game where the visiting team was the Jazz? <context>: CREATE TABLE table_name_67 (attendance INTEGER, visitor VARCHAR)
SELECT SUM(attendance) FROM table_name_67 WHERE visitor = "jazz"
59,708
<question>: Who did the Chiefs play at the game attended by 34,063? <context>: CREATE TABLE table_name_82 (opponent VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_82 WHERE attendance = "34,063"
59,709
<question>: Which week's game was attended by 33,057 people? <context>: CREATE TABLE table_name_48 (week VARCHAR, attendance VARCHAR)
SELECT week FROM table_name_48 WHERE attendance = "33,057"
59,710
<question>: what is the organisation when the year is less than 2005 and the award is the best variety show host? <context>: CREATE TABLE table_name_84 (organisation VARCHAR, year VARCHAR, award VARCHAR)
SELECT organisation FROM table_name_84 WHERE year < 2005 AND award = "best variety show host"
59,711
<question>: what is the organisation when the nominated work title is n/a in the year 2005? <context>: CREATE TABLE table_name_79 (organisation VARCHAR, nominated_work_title VARCHAR, year VARCHAR)
SELECT organisation FROM table_name_79 WHERE nominated_work_title = "n/a" AND year = 2005
59,712
<question>: what is the lowest year with the result is nominated for the work title is love bites? <context>: CREATE TABLE table_name_99 (year INTEGER, result VARCHAR, nominated_work_title VARCHAR)
SELECT MIN(year) FROM table_name_99 WHERE result = "nominated" AND nominated_work_title = "love bites"
59,713
<question>: what is the year when then organisation is star awards, the result is won and the nominated work title is n/a? <context>: CREATE TABLE table_name_98 (year VARCHAR, nominated_work_title VARCHAR, organisation VARCHAR, result VARCHAR)
SELECT year FROM table_name_98 WHERE organisation = "star awards" AND result = "won" AND nominated_work_title = "n/a"
59,714
<question>: what is the latest year that has the result of nominated and the nominated work title is n/a? <context>: CREATE TABLE table_name_85 (year INTEGER, result VARCHAR, nominated_work_title VARCHAR)
SELECT MAX(year) FROM table_name_85 WHERE result = "nominated" AND nominated_work_title = "n/a"
59,715
<question>: what is the nominated work title when the result is won, the organisation is star awards and the award is top 10 most popular female artiste in the year 2007? <context>: CREATE TABLE table_name_52 (nominated_work_title VARCHAR, year VARCHAR, award VARCHAR, result VARCHAR, organisation VARCHAR)
SELECT nominated_work_title FROM table_name_52 WHERE result = "won" AND organisation = "star awards" AND award = "top 10 most popular female artiste" AND year > 2007
59,716
<question>: What is the rank of the games that had 9 gold and 9 silvers? <context>: CREATE TABLE table_name_47 (rank VARCHAR, gold VARCHAR, silver VARCHAR)
SELECT rank FROM table_name_47 WHERE gold = "9" AND silver = "9"
59,717
<question>: How many golds were there in a game that has 17 bronze and a total of 31? <context>: CREATE TABLE table_name_8 (gold VARCHAR, bronze VARCHAR, total VARCHAR)
SELECT gold FROM table_name_8 WHERE bronze = "17" AND total = "31"
59,718
<question>: Which game had 8 bronze and 4 gold? <context>: CREATE TABLE table_name_61 (games VARCHAR, bronze VARCHAR, gold VARCHAR)
SELECT games FROM table_name_61 WHERE bronze = "8" AND gold = "4"
59,719
<question>: When did San Jose visit the St. Louis? <context>: CREATE TABLE table_name_91 (date VARCHAR, visitor VARCHAR)
SELECT date FROM table_name_91 WHERE visitor = "san jose"
59,720
<question>: How many total wins with the latest win at the 1999 Italian Grand Prix at a rank of 15? <context>: CREATE TABLE table_name_12 (wins INTEGER, latest_win VARCHAR, rank VARCHAR)
SELECT SUM(wins) FROM table_name_12 WHERE latest_win = "1999 italian grand prix" AND rank > 15
59,721
<question>: What is the rank 6 lowest win who's first win was at the 1950 British Grand Prix? <context>: CREATE TABLE table_name_46 (wins INTEGER, rank VARCHAR, first_win VARCHAR)
SELECT MIN(wins) FROM table_name_46 WHERE rank > 6 AND first_win = "1950 british grand prix"
59,722
<question>: What is the rank 16 wins with the latest win at the 1967 Belgian Grand Prix? <context>: CREATE TABLE table_name_47 (wins VARCHAR, rank VARCHAR, latest_win VARCHAR)
SELECT wins FROM table_name_47 WHERE rank > 16 AND latest_win = "1967 belgian grand prix"
59,723
<question>: What's the lowest pick for a defensive back at Drake? <context>: CREATE TABLE table_name_99 (pick INTEGER, position VARCHAR, school VARCHAR)
SELECT MIN(pick) FROM table_name_99 WHERE position = "defensive back" AND school = "drake"
59,724
<question>: What's terry jones' lowest pick? <context>: CREATE TABLE table_name_11 (pick INTEGER, player VARCHAR)
SELECT MIN(pick) FROM table_name_11 WHERE player = "terry jones"
59,725
<question>: What position does gerald carter play? <context>: CREATE TABLE table_name_52 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_52 WHERE player = "gerald carter"
59,726
<question>: Who is the guard for Wisconsin? <context>: CREATE TABLE table_name_44 (player VARCHAR, position VARCHAR, school VARCHAR)
SELECT player FROM table_name_44 WHERE position = "guard" AND school = "wisconsin"
59,727
<question>: Which player is Pick 33 and has a Nationality of USA? <context>: CREATE TABLE table_name_31 (player VARCHAR, nationality VARCHAR, pick VARCHAR)
SELECT player FROM table_name_31 WHERE nationality = "usa" AND pick = 33
59,728
<question>: What is the nationality of the player who has a pick lower than 33 and a School/Club Team of Vanderbilt? <context>: CREATE TABLE table_name_94 (nationality VARCHAR, pick VARCHAR, school_club_team VARCHAR)
SELECT nationality FROM table_name_94 WHERE pick < 33 AND school_club_team = "vanderbilt"
59,729
<question>: What is the nationality of the player who had the pick of 52 and plays for the NBA team of Phoenix Suns? <context>: CREATE TABLE table_name_15 (nationality VARCHAR, nba_team VARCHAR, pick VARCHAR)
SELECT nationality FROM table_name_15 WHERE nba_team = "phoenix suns" AND pick = 52
59,730
<question>: How many leage apperances for the player with one FA cup, and a FLT Apps of 0 (1)? <context>: CREATE TABLE table_name_61 (league_apps VARCHAR, fa_cup_apps VARCHAR, flt_apps VARCHAR)
SELECT league_apps FROM table_name_61 WHERE fa_cup_apps = "1" AND flt_apps = "0 (1)"
59,731
<question>: What day did St Kilda play as the away team? <context>: CREATE TABLE table_name_53 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_53 WHERE away_team = "st kilda"
59,732
<question>: What's the value for 2007 when 2011 is a and 2009 is q2? <context>: CREATE TABLE table_name_12 (Id VARCHAR)
SELECT 2007 FROM table_name_12 WHERE 2011 = "a" AND 2009 = "q2"
59,733
<question>: Tell me the highest league goals with total goals less than 1 and FA cups more than 0 <context>: CREATE TABLE table_name_67 (league_goals INTEGER, total_goals VARCHAR, fa_cup_goals VARCHAR)
SELECT MAX(league_goals) FROM table_name_67 WHERE total_goals < 1 AND fa_cup_goals > 0
59,734
<question>: I want to know the sum of fa cup goals for david mirfin and total goals less than 1 <context>: CREATE TABLE table_name_59 (fa_cup_goals INTEGER, name VARCHAR, total_goals VARCHAR)
SELECT SUM(fa_cup_goals) FROM table_name_59 WHERE name = "david mirfin" AND total_goals < 1
59,735
<question>: Tell me the league apps with league goals less than 2 and position of df and FA cup apps of 5 <context>: CREATE TABLE table_name_35 (league_apps VARCHAR, fa_cup_apps VARCHAR, league_goals VARCHAR, position VARCHAR)
SELECT league_apps FROM table_name_35 WHERE league_goals < 2 AND position = "df" AND fa_cup_apps = "5"
59,736
<question>: What is the video ratio on channel 14.2? <context>: CREATE TABLE table_name_75 (video VARCHAR, channel VARCHAR)
SELECT video FROM table_name_75 WHERE channel = 14.2
59,737
<question>: What network has an aspect of 4:3 and a PSIP Short Name of qvc? <context>: CREATE TABLE table_name_80 (network VARCHAR, aspect VARCHAR, psip_short_name VARCHAR)
SELECT network FROM table_name_80 WHERE aspect = "4:3" AND psip_short_name = "qvc"
59,738
<question>: What is ion life network's PSIP Short Name? <context>: CREATE TABLE table_name_58 (psip_short_name VARCHAR, network VARCHAR)
SELECT psip_short_name FROM table_name_58 WHERE network = "ion life"
59,739
<question>: What is the sum of channels for qubo network? <context>: CREATE TABLE table_name_65 (channel INTEGER, network VARCHAR)
SELECT SUM(channel) FROM table_name_65 WHERE network = "qubo"
59,740
<question>: How many deaths did eseta cause? <context>: CREATE TABLE table_name_34 (deaths VARCHAR, name VARCHAR)
SELECT deaths FROM table_name_34 WHERE name = "eseta"
59,741
<question>: What was the date when the away team was Carlton? <context>: CREATE TABLE table_name_65 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_65 WHERE away_team = "carlton"
59,742
<question>: When the home team was hawthorn, what was the date? <context>: CREATE TABLE table_name_44 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_44 WHERE home_team = "hawthorn"
59,743
<question>: What did Geelong score as the away team? <context>: CREATE TABLE table_name_91 (away_team VARCHAR)
SELECT away_team AS score FROM table_name_91 WHERE away_team = "geelong"
59,744
<question>: What date did the home team of footscray play? <context>: CREATE TABLE table_name_85 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_85 WHERE home_team = "footscray"
59,745
<question>: Name the club team for overall of 188 for canada <context>: CREATE TABLE table_name_72 (club_team VARCHAR, nationality VARCHAR, overall VARCHAR)
SELECT club_team FROM table_name_72 WHERE nationality = "canada" AND overall = 188
59,746
<question>: Name the nationality of the player with an overall of 74 <context>: CREATE TABLE table_name_66 (nationality VARCHAR, overall VARCHAR)
SELECT nationality FROM table_name_66 WHERE overall = 74
59,747
<question>: What is the highest Aug 2013 with a Nov 2011 smaller than 968, and a Jul 2012 with 31, and a Jun 2011 larger than 30? <context>: CREATE TABLE table_name_27 (aug_2013 INTEGER, jun_2011 VARCHAR, nov_2011 VARCHAR, jul_2012 VARCHAR)
SELECT MAX(aug_2013) FROM table_name_27 WHERE nov_2011 < 968 AND jul_2012 = 31 AND jun_2011 > 30
59,748
<question>: What is the average Apr 2013 with a Jun 2011 less than 14? <context>: CREATE TABLE table_name_76 (apr_2013 INTEGER, jun_2011 INTEGER)
SELECT AVG(apr_2013) FROM table_name_76 WHERE jun_2011 < 14
59,749
<question>: What is the average Feb 2013 with a Feb 2010 with 37, and a Nov 2012 less than 32? <context>: CREATE TABLE table_name_31 (feb_2013 INTEGER, feb_2010 VARCHAR, nov_2012 VARCHAR)
SELECT AVG(feb_2013) FROM table_name_31 WHERE feb_2010 = "37" AND nov_2012 < 32
59,750
<question>: What is the total number with Nov 2012 with a Jun 2013 larger than 542, and a Aug 2011 more than 935? <context>: CREATE TABLE table_name_19 (nov_2012 VARCHAR, jun_2013 VARCHAR, aug_2011 VARCHAR)
SELECT COUNT(nov_2012) FROM table_name_19 WHERE jun_2013 > 542 AND aug_2011 > 935
59,751
<question>: What's the total grid for a Time/Retired of +1:03.741, and Laps larger than 44? <context>: CREATE TABLE table_name_71 (grid VARCHAR, time_retired VARCHAR, laps VARCHAR)
SELECT COUNT(grid) FROM table_name_71 WHERE time_retired = "+1:03.741" AND laps > 44
59,752
<question>: What did the home team at Brunswick Street Oval score? <context>: CREATE TABLE table_name_89 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_89 WHERE venue = "brunswick street oval"
59,753
<question>: Who had the highest rebounds of the game with A. Johnson (6) as the highest assist? <context>: CREATE TABLE table_name_35 (high_rebounds VARCHAR, high_assists VARCHAR)
SELECT high_rebounds FROM table_name_35 WHERE high_assists = "a. johnson (6)"
59,754
<question>: Who had the highest rebounds of the game with A. Johnson (14) as the highest assists? <context>: CREATE TABLE table_name_55 (high_rebounds VARCHAR, high_assists VARCHAR)
SELECT high_rebounds FROM table_name_55 WHERE high_assists = "a. johnson (14)"
59,755
<question>: Who was the opponent on August 30? <context>: CREATE TABLE table_name_16 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_16 WHERE date = "august 30"
59,756
<question>: What was the score on August 8? <context>: CREATE TABLE table_name_82 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_82 WHERE date = "august 8"
59,757
<question>: How many picks included Kenny Evans? <context>: CREATE TABLE table_name_52 (pick VARCHAR, player VARCHAR)
SELECT COUNT(pick) FROM table_name_52 WHERE player = "kenny evans"
59,758
<question>: How many picks went to College of Letran? <context>: CREATE TABLE table_name_95 (pick VARCHAR, college VARCHAR)
SELECT COUNT(pick) FROM table_name_95 WHERE college = "letran"
59,759
<question>: Which player has a PBA team of Red Bull Thunder? <context>: CREATE TABLE table_name_5 (player VARCHAR, pba_team VARCHAR)
SELECT player FROM table_name_5 WHERE pba_team = "red bull thunder"
59,760
<question>: In which event did he place 6th in 1971? <context>: CREATE TABLE table_name_98 (event VARCHAR, year VARCHAR, result VARCHAR)
SELECT event FROM table_name_98 WHERE year = 1971 AND result = "6th"
59,761
<question>: When was the first year he placed 2nd in Izmir, Turkey? <context>: CREATE TABLE table_name_3 (year INTEGER, result VARCHAR, venue VARCHAR)
SELECT MIN(year) FROM table_name_3 WHERE result = "2nd" AND venue = "izmir, turkey"
59,762
<question>: How did he place in 1970? <context>: CREATE TABLE table_name_58 (result VARCHAR, year VARCHAR)
SELECT result FROM table_name_58 WHERE year = 1970
59,763
<question>: How many were in Attendance on the Date May 29? <context>: CREATE TABLE table_name_83 (attendance VARCHAR, date VARCHAR)
SELECT COUNT(attendance) FROM table_name_83 WHERE date = "may 29"
59,764
<question>: What was the Record on the Date May 8? <context>: CREATE TABLE table_name_15 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_15 WHERE date = "may 8"
59,765
<question>: Who was the home team at the game played on April 14, 2008? <context>: CREATE TABLE table_name_16 (home VARCHAR, date VARCHAR)
SELECT home FROM table_name_16 WHERE date = "april 14, 2008"
59,766
<question>: How many votes were cast when the notes reported lost to incumbent vic gilliam? <context>: CREATE TABLE table_name_51 (votes VARCHAR, notes VARCHAR)
SELECT votes FROM table_name_51 WHERE notes = "lost to incumbent vic gilliam"
59,767
<question>: Who is the candidate in Race for State representative, hd18? <context>: CREATE TABLE table_name_57 (candidate VARCHAR, race VARCHAR)
SELECT candidate FROM table_name_57 WHERE race = "state representative, hd18"
59,768
<question>: What club/province does the prop player with over 45 caps play for? <context>: CREATE TABLE table_name_27 (club_province VARCHAR, caps VARCHAR, position VARCHAR)
SELECT club_province FROM table_name_27 WHERE caps > 45 AND position = "prop"
59,769
<question>: Who was the opponent at the Staples Center? <context>: CREATE TABLE table_name_46 (opponent VARCHAR, arena VARCHAR)
SELECT opponent FROM table_name_46 WHERE arena = "staples center"
59,770
<question>: In what arena was the game against the Sharks played? <context>: CREATE TABLE table_name_33 (arena VARCHAR, opponent VARCHAR)
SELECT arena FROM table_name_33 WHERE opponent = "sharks"
59,771
<question>: What is the label with the LP format? <context>: CREATE TABLE table_name_86 (label VARCHAR, format VARCHAR)
SELECT label FROM table_name_86 WHERE format = "lp"
59,772
<question>: What date had a 4ad label and a CD (reissue) format? <context>: CREATE TABLE table_name_99 (date VARCHAR, label VARCHAR, format VARCHAR)
SELECT date FROM table_name_99 WHERE label = "4ad" AND format = "cd (reissue)"
59,773
<question>: Which country had a cad 4011 catalogue #? <context>: CREATE TABLE table_name_66 (country VARCHAR, catalogue__number VARCHAR)
SELECT country FROM table_name_66 WHERE catalogue__number = "cad 4011"
59,774
<question>: Which date was for Japan? <context>: CREATE TABLE table_name_66 (date VARCHAR, country VARCHAR)
SELECT date FROM table_name_66 WHERE country = "japan"
59,775
<question>: What is the label on the United States? <context>: CREATE TABLE table_name_88 (label VARCHAR, country VARCHAR)
SELECT label FROM table_name_88 WHERE country = "united states"
59,776
<question>: What is the date with the catalogue # cocy-80093? <context>: CREATE TABLE table_name_37 (date VARCHAR, catalogue__number VARCHAR)
SELECT date FROM table_name_37 WHERE catalogue__number = "cocy-80093"
59,777
<question>: What category was danson tang nominated? <context>: CREATE TABLE table_name_72 (category VARCHAR, nomination VARCHAR)
SELECT category FROM table_name_72 WHERE nomination = "danson tang"
59,778
<question>: What was the total number of years than had best improved singer (躍進歌手)? <context>: CREATE TABLE table_name_52 (year INTEGER, category VARCHAR)
SELECT SUM(year) FROM table_name_52 WHERE category = "best improved singer (躍進歌手)"
59,779
<question>: Who constructed the car with a grid over 19 that retired due to suspension? <context>: CREATE TABLE table_name_49 (constructor VARCHAR, grid VARCHAR, time_retired VARCHAR)
SELECT constructor FROM table_name_49 WHERE grid > 19 AND time_retired = "suspension"
59,780
<question>: What driver has a 9 grid total? <context>: CREATE TABLE table_name_79 (driver VARCHAR, grid VARCHAR)
SELECT driver FROM table_name_79 WHERE grid = 9
59,781
<question>: What was the winning car's chassis for the 1982 season? <context>: CREATE TABLE table_name_48 (chassis VARCHAR, season VARCHAR)
SELECT chassis FROM table_name_48 WHERE season = "1982"
59,782
<question>: Which team, with champion Bastian Kolmsee, used a Dallara f302 for the chassis? <context>: CREATE TABLE table_name_8 (team VARCHAR, chassis VARCHAR, champion VARCHAR)
SELECT team FROM table_name_8 WHERE chassis = "dallara f302" AND champion = "bastian kolmsee"
59,783
<question>: What chassis was the car with the Volkswagen engine built on in 2010? <context>: CREATE TABLE table_name_4 (chassis VARCHAR, engine VARCHAR, season VARCHAR)
SELECT chassis FROM table_name_4 WHERE engine = "volkswagen" AND season = "2010"
59,784
<question>: Which engine did Korten Motorsport use? <context>: CREATE TABLE table_name_86 (engine VARCHAR, team VARCHAR)
SELECT engine FROM table_name_86 WHERE team = "korten motorsport"
59,785
<question>: Who was the champion that drove the car with the Ford engine in 1971? <context>: CREATE TABLE table_name_28 (champion VARCHAR, engine VARCHAR, season VARCHAR)
SELECT champion FROM table_name_28 WHERE engine = "ford" AND season = "1971"
59,786
<question>: In which season did Jimmy Eriksson win the championship for Team Lotus? <context>: CREATE TABLE table_name_40 (season VARCHAR, team VARCHAR, champion VARCHAR)
SELECT season FROM table_name_40 WHERE team = "lotus" AND champion = "jimmy eriksson"
59,787
<question>: Which name had 6 goals? <context>: CREATE TABLE table_name_49 (name VARCHAR, goals VARCHAR)
SELECT name FROM table_name_49 WHERE goals = 6
59,788
<question>: What is the largest goal number when the transfer fee was £0.8m? <context>: CREATE TABLE table_name_50 (goals INTEGER, transfer_fee VARCHAR)
SELECT MAX(goals) FROM table_name_50 WHERE transfer_fee = "£0.8m"
59,789
<question>: What is the location of a1 women's - handball? <context>: CREATE TABLE table_name_61 (location VARCHAR, leagues VARCHAR)
SELECT location FROM table_name_61 WHERE leagues = "a1 women's - handball"
59,790
<question>: What is the capacity at the nop aquatic centre, established after 1929? <context>: CREATE TABLE table_name_8 (capacity VARCHAR, venue VARCHAR, established VARCHAR)
SELECT COUNT(capacity) FROM table_name_8 WHERE venue = "nop aquatic centre" AND established > 1929
59,791
<question>: What is the capacity for b national - basketball? <context>: CREATE TABLE table_name_93 (capacity VARCHAR, leagues VARCHAR)
SELECT COUNT(capacity) FROM table_name_93 WHERE leagues = "b national - basketball"
59,792
<question>: What game week did the Buccaneers play against the Minnesota Vikings? <context>: CREATE TABLE table_name_47 (week VARCHAR, opponent VARCHAR)
SELECT week FROM table_name_47 WHERE opponent = "minnesota vikings"
59,793
<question>: What game week did the buccaneers have a record of 0-5? <context>: CREATE TABLE table_name_67 (week VARCHAR, record VARCHAR)
SELECT week FROM table_name_67 WHERE record = "0-5"
59,794
<question>: What is the record of the buccaneers on December 4, 1983? <context>: CREATE TABLE table_name_9 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_9 WHERE date = "december 4, 1983"
59,795
<question>: What was the attendance at the game against Ottawa? <context>: CREATE TABLE table_name_5 (attendance INTEGER, visitor VARCHAR)
SELECT AVG(attendance) FROM table_name_5 WHERE visitor = "ottawa"
59,796
<question>: What was the highest attendance at a Detroit home game? <context>: CREATE TABLE table_name_83 (attendance INTEGER, home VARCHAR)
SELECT MAX(attendance) FROM table_name_83 WHERE home = "detroit"
59,797
<question>: What was the attendance of the Florida vs. Montreal game? <context>: CREATE TABLE table_name_46 (attendance INTEGER, home VARCHAR, visitor VARCHAR)
SELECT AVG(attendance) FROM table_name_46 WHERE home = "florida" AND visitor = "montreal"
59,798
<question>: I want to know the condition with Prothrombin time of unaffected and bleeding time of prolonged with partial thromboplastin time of unaffected with platelet count of decreased or unaffected <context>: CREATE TABLE table_name_75 (condition VARCHAR, platelet_count VARCHAR, partial_thromboplastin_time VARCHAR, prothrombin_time VARCHAR, bleeding_time VARCHAR)
SELECT condition FROM table_name_75 WHERE prothrombin_time = "unaffected" AND bleeding_time = "prolonged" AND partial_thromboplastin_time = "unaffected" AND platelet_count = "decreased or unaffected"
59,799
<question>: I want the condition that has a prolonged bleeding time and a platelet count of decreased or unaffected <context>: CREATE TABLE table_name_41 (condition VARCHAR, bleeding_time VARCHAR, platelet_count VARCHAR)
SELECT condition FROM table_name_41 WHERE bleeding_time = "prolonged" AND platelet_count = "decreased or unaffected"