Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
30,900
<question>: Name the number of wheel arrangement when class is d14 <context>: CREATE TABLE table_15608800_2 (wheel_arrangement VARCHAR, class VARCHAR)
SELECT COUNT(wheel_arrangement) FROM table_15608800_2 WHERE class = "D14"
30,901
<question>: Name the most number of pyewipe <context>: CREATE TABLE table_15608800_2 (number_at_pyewipe INTEGER)
SELECT MAX(number_at_pyewipe) FROM table_15608800_2
30,902
<question>: Name the number at march when class is j66 <context>: CREATE TABLE table_15608800_2 (number_at_march VARCHAR, class VARCHAR)
SELECT number_at_march FROM table_15608800_2 WHERE class = "J66"
30,903
<question>: Name the railway when class is j19 <context>: CREATE TABLE table_15608800_2 (railway VARCHAR, class VARCHAR)
SELECT railway FROM table_15608800_2 WHERE class = "J19"
30,904
<question>: Name the railway when class is j15 <context>: CREATE TABLE table_15608800_2 (railway VARCHAR, class VARCHAR)
SELECT railway FROM table_15608800_2 WHERE class = "J15"
30,905
<question>: Name the years in orlando for penn state <context>: CREATE TABLE table_15621965_1 (years_in_orlando VARCHAR, school_club_team VARCHAR)
SELECT years_in_orlando FROM table_15621965_1 WHERE school_club_team = "Penn State"
30,906
<question>: Name the nationality of number 9 <context>: CREATE TABLE table_15621965_1 (nationality VARCHAR, no VARCHAR)
SELECT nationality FROM table_15621965_1 WHERE no = 9
30,907
<question>: Name the years in orlando for forward <context>: CREATE TABLE table_15621965_10 (years_in_orlando VARCHAR, position VARCHAR)
SELECT years_in_orlando FROM table_15621965_10 WHERE position = "Forward"
30,908
<question>: Name the number of players from arizona <context>: CREATE TABLE table_15621965_10 (player VARCHAR, school_club_team VARCHAR)
SELECT COUNT(player) FROM table_15621965_10 WHERE school_club_team = "Arizona"
30,909
<question>: Name the years in orlando that the player from concord hs was in <context>: CREATE TABLE table_15621965_10 (years_in_orlando VARCHAR, school_club_team VARCHAR)
SELECT years_in_orlando FROM table_15621965_10 WHERE school_club_team = "Concord HS"
30,910
<question>: Name the number of players for louisiana state <context>: CREATE TABLE table_15621965_14 (player VARCHAR, school_club_team VARCHAR)
SELECT COUNT(player) FROM table_15621965_14 WHERE school_club_team = "Louisiana State"
30,911
<question>: Name the school/club team for kevin ollie <context>: CREATE TABLE table_15621965_14 (school_club_team VARCHAR, player VARCHAR)
SELECT school_club_team FROM table_15621965_14 WHERE player = "Kevin Ollie"
30,912
<question>: Name the school/club team for jawann oldham <context>: CREATE TABLE table_15621965_14 (school_club_team VARCHAR, player VARCHAR)
SELECT school_club_team FROM table_15621965_14 WHERE player = "Jawann Oldham"
30,913
<question>: Name the player for seattle <context>: CREATE TABLE table_15621965_14 (player VARCHAR, school_club_team VARCHAR)
SELECT player FROM table_15621965_14 WHERE school_club_team = "Seattle"
30,914
<question>: What is the nationality of th player who's school is Clemson? <context>: CREATE TABLE table_15621965_16 (nationality VARCHAR, school_club_team VARCHAR)
SELECT nationality FROM table_15621965_16 WHERE school_club_team = "Clemson"
30,915
<question>: What years did the player who's school is Clemson spend in Orlando? <context>: CREATE TABLE table_15621965_16 (years_in_orlando VARCHAR, school_club_team VARCHAR)
SELECT years_in_orlando FROM table_15621965_16 WHERE school_club_team = "Clemson"
30,916
<question>: What is the number of the player who attended Delta State? <context>: CREATE TABLE table_15621965_16 (no INTEGER, school_club_team VARCHAR)
SELECT MAX(no) FROM table_15621965_16 WHERE school_club_team = "Delta State"
30,917
<question>: Who plays the position of forward-center? <context>: CREATE TABLE table_15621965_2 (player VARCHAR, position VARCHAR)
SELECT player FROM table_15621965_2 WHERE position = "Forward-Center"
30,918
<question>: During what years did Chris Corchiani play in Orlando? <context>: CREATE TABLE table_15621965_3 (years_in_orlando VARCHAR, player VARCHAR)
SELECT years_in_orlando FROM table_15621965_3 WHERE player = "Chris Corchiani"
30,919
<question>: When the face value is 42¢, what was the issue's date? <context>: CREATE TABLE table_15635768_1 (date_of_issue VARCHAR, face_value VARCHAR)
SELECT date_of_issue FROM table_15635768_1 WHERE face_value = "42¢"
30,920
<question>: Which location has the ecosystem of kelp forest? <context>: CREATE TABLE table_15635768_1 (place_of_issue VARCHAR, ecosystem VARCHAR)
SELECT place_of_issue FROM table_15635768_1 WHERE ecosystem = "Kelp Forest"
30,921
<question>: How many stamps have a face value of 37¢ and were printed in the banknote corporation of america? <context>: CREATE TABLE table_15635768_1 (no_stamps_in_sheet VARCHAR, face_value VARCHAR, printer VARCHAR)
SELECT COUNT(no_stamps_in_sheet) FROM table_15635768_1 WHERE face_value = "37¢" AND printer = "Banknote Corporation of America"
30,922
<question>: Who was the printer of Estes Park, Colorado? <context>: CREATE TABLE table_15635768_1 (printer VARCHAR, place_of_issue VARCHAR)
SELECT printer FROM table_15635768_1 WHERE place_of_issue = "Estes Park, Colorado"
30,923
<question>: The stamp was 39¢, who was the printer? <context>: CREATE TABLE table_15635768_1 (printer VARCHAR, face_value VARCHAR)
SELECT printer FROM table_15635768_1 WHERE face_value = "39¢"
30,924
<question>: What are values of attendance for the El Paso, TX location? <context>: CREATE TABLE table_15647838_3 (attendance VARCHAR, location VARCHAR)
SELECT attendance FROM table_15647838_3 WHERE location = "El Paso, TX"
30,925
<question>: How many values for result correspond to attendance of 74,111? <context>: CREATE TABLE table_15647838_3 (result VARCHAR, attendance VARCHAR)
SELECT COUNT(result) FROM table_15647838_3 WHERE attendance = "74,111"
30,926
<question>: How many locations have the Sun Life Stadium? <context>: CREATE TABLE table_15647838_3 (location VARCHAR, stadium VARCHAR)
SELECT COUNT(location) FROM table_15647838_3 WHERE stadium = "Sun Life stadium"
30,927
<question>: What is the highest season for a bowl game of the 1993 Independence Bowl? <context>: CREATE TABLE table_15647838_3 (season INTEGER, bowl_game VARCHAR)
SELECT MAX(season) FROM table_15647838_3 WHERE bowl_game = "1993 Independence Bowl"
30,928
<question>: What is the lowest # in Atlanta, GA with the Georgia Bulldogs as an opponent? <context>: CREATE TABLE table_15647838_3 (_number INTEGER, location VARCHAR, opponent VARCHAR)
SELECT MIN(_number) FROM table_15647838_3 WHERE location = "Atlanta, GA" AND opponent = "Georgia Bulldogs"
30,929
<question>: How many values for attendance correspond to the 1986 Peach Bowl? <context>: CREATE TABLE table_15647838_3 (attendance VARCHAR, bowl_game VARCHAR)
SELECT COUNT(attendance) FROM table_15647838_3 WHERE bowl_game = "1986 Peach Bowl"
30,930
<question>: Who was the interview subject in the 2-86 issue? <context>: CREATE TABLE table_1566848_7 (interview_subject VARCHAR, date VARCHAR)
SELECT interview_subject FROM table_1566848_7 WHERE date = "2-86"
30,931
<question>: Who were all the pictorials when the centerfold model was Rebekka Armstrong? <context>: CREATE TABLE table_1566848_7 (pictorials VARCHAR, centerfold_model VARCHAR)
SELECT COUNT(pictorials) FROM table_1566848_7 WHERE centerfold_model = "Rebekka Armstrong"
30,932
<question>: Who were the pictorials when the centerfold model was Ava Fabian? <context>: CREATE TABLE table_1566848_7 (pictorials VARCHAR, centerfold_model VARCHAR)
SELECT pictorials FROM table_1566848_7 WHERE centerfold_model = "Ava Fabian"
30,933
<question>: Who was the interview subject when the centerfold model was Sherry Arnett? <context>: CREATE TABLE table_1566848_7 (interview_subject VARCHAR, centerfold_model VARCHAR)
SELECT COUNT(interview_subject) FROM table_1566848_7 WHERE centerfold_model = "Sherry Arnett"
30,934
<question>: Who was the cover model in the 7-86 issue? <context>: CREATE TABLE table_1566848_7 (cover_model VARCHAR, date VARCHAR)
SELECT cover_model FROM table_1566848_7 WHERE date = "7-86"
30,935
<question>: What is the date of the issue where the pictorials is of Female s disk jockey? <context>: CREATE TABLE table_1566848_7 (date VARCHAR, pictorials VARCHAR)
SELECT COUNT(date) FROM table_1566848_7 WHERE pictorials = "Female s disk jockey"
30,936
<question>: WHO WAS THE COVER MODEL OF PLAYBOY WHERE THE CENTERFOLD MODEL WAS SHALLAN MEIERS? <context>: CREATE TABLE table_1566852_3 (cover_model VARCHAR, centerfold_model VARCHAR)
SELECT cover_model FROM table_1566852_3 WHERE centerfold_model = "Shallan Meiers"
30,937
<question>: IN THE ISSUE WHERE NICOLE NARAIN WAS THE CENTERFOLD MODEL, WHO WAS THE INTERVIEW SUBJECT? <context>: CREATE TABLE table_1566852_3 (interview_subject VARCHAR, centerfold_model VARCHAR)
SELECT interview_subject FROM table_1566852_3 WHERE centerfold_model = "Nicole Narain"
30,938
<question>: IN HOW MANY ISSUES WAS HARRISON FORD THE INTERVIEW SUBJECT? <context>: CREATE TABLE table_1566852_3 (date VARCHAR, interview_subject VARCHAR)
SELECT COUNT(date) FROM table_1566852_3 WHERE interview_subject = "Harrison Ford"
30,939
<question>: Who was featured in 20 <question>s when the subject of the interview was Mike Piazza? <context>: CREATE TABLE table_1566852_4 (interview_subject VARCHAR)
SELECT 20 AS _questions FROM table_1566852_4 WHERE interview_subject = "Mike Piazza"
30,940
<question>: Who was featured in 20 <question>s on 4-03? <context>: CREATE TABLE table_1566852_4 (date VARCHAR)
SELECT 20 AS _questions FROM table_1566852_4 WHERE date = "4-03"
30,941
<question>: On what deate was the centerfold featured Luci Victoria? <context>: CREATE TABLE table_1566852_4 (date VARCHAR, centerfold_model VARCHAR)
SELECT date FROM table_1566852_4 WHERE centerfold_model = "Luci Victoria"
30,942
<question>: How many centerfold models were there when the cover model was Torrie Wilson? <context>: CREATE TABLE table_1566852_4 (centerfold_model VARCHAR, cover_model VARCHAR)
SELECT COUNT(centerfold_model) FROM table_1566852_4 WHERE cover_model = "Torrie Wilson"
30,943
<question>: What is the name of the pictorial in the 11-98 issue? <context>: CREATE TABLE table_1566850_9 (pictorials VARCHAR, date VARCHAR)
SELECT pictorials FROM table_1566850_9 WHERE date = "11-98"
30,944
<question>: How many centerfolds were in the 9-98 issue? <context>: CREATE TABLE table_1566850_9 (centerfold_model VARCHAR, date VARCHAR)
SELECT COUNT(centerfold_model) FROM table_1566850_9 WHERE date = "9-98"
30,945
<question>: Who was interviewed in the 8-98 issue? <context>: CREATE TABLE table_1566850_9 (interview_subject VARCHAR, date VARCHAR)
SELECT interview_subject FROM table_1566850_9 WHERE date = "8-98"
30,946
<question>: Who was asked 20 <question>s in the issue where the centerfold is Marliece Andrada? <context>: CREATE TABLE table_1566850_9 (centerfold_model VARCHAR)
SELECT 20 AS _questions FROM table_1566850_9 WHERE centerfold_model = "Marliece Andrada"
30,947
<question>: Who was asked 20 <question>s in the issue where the cover model is Linda Brava? <context>: CREATE TABLE table_1566850_9 (cover_model VARCHAR)
SELECT 20 AS _questions FROM table_1566850_9 WHERE cover_model = "Linda Brava"
30,948
<question>: How many times was Jillian Grace the centerfold model? <context>: CREATE TABLE table_1566852_6 (date VARCHAR, centerfold_model VARCHAR)
SELECT COUNT(date) FROM table_1566852_6 WHERE centerfold_model = "Jillian Grace"
30,949
<question>: What were the interview subjects on those occasions where Bai Ling was the cover model? <context>: CREATE TABLE table_1566852_6 (interview_subject VARCHAR, cover_model VARCHAR)
SELECT interview_subject FROM table_1566852_6 WHERE cover_model = "Bai Ling"
30,950
<question>: How many total interview subjects wererthere when the centerfold model was Tamara Witmer? <context>: CREATE TABLE table_1566852_6 (interview_subject VARCHAR, centerfold_model VARCHAR)
SELECT COUNT(interview_subject) FROM table_1566852_6 WHERE centerfold_model = "Tamara Witmer"
30,951
<question>: What's the subject of 20 <question>s in those issues where Jillian Grace is the centerfold model? <context>: CREATE TABLE table_1566852_6 (centerfold_model VARCHAR)
SELECT 20 AS _questions FROM table_1566852_6 WHERE centerfold_model = "Jillian Grace"
30,952
<question>: Who were the cover model(s) on the 4-05 issue? <context>: CREATE TABLE table_1566852_6 (cover_model VARCHAR, date VARCHAR)
SELECT cover_model FROM table_1566852_6 WHERE date = "4-05"
30,953
<question>: Name the date for oliver stone <context>: CREATE TABLE table_1566852_5 (date VARCHAR, interview_subject VARCHAR)
SELECT date FROM table_1566852_5 WHERE interview_subject = "Oliver Stone"
30,954
<question>: Name the 20 <question>s for derek jeter <context>: CREATE TABLE table_1566852_5 (interview_subject VARCHAR)
SELECT 20 AS _questions FROM table_1566852_5 WHERE interview_subject = "Derek Jeter"
30,955
<question>: Name the 20 <question>s for 8-04 <context>: CREATE TABLE table_1566852_5 (date VARCHAR)
SELECT 20 AS _questions FROM table_1566852_5 WHERE date = "8-04"
30,956
<question>: Name the open cup for 2010 <context>: CREATE TABLE table_15672920_1 (open_cup VARCHAR, year VARCHAR)
SELECT open_cup FROM table_15672920_1 WHERE year = 2010
30,957
<question>: IN WHAT ISSUE OF PLAYBOY WAS SHEPARD SMITH INTERVIEWED? <context>: CREATE TABLE table_1566852_7 (date VARCHAR, interview_subject VARCHAR)
SELECT date FROM table_1566852_7 WHERE interview_subject = "Shepard Smith"
30,958
<question>: HOW MANY MODELS WERE ON THE COVER OF THE ISSUE WHERE THE CENTERFOLD WAS STEPHANIE LARIMORE? <context>: CREATE TABLE table_1566852_7 (cover_model VARCHAR, centerfold_model VARCHAR)
SELECT COUNT(cover_model) FROM table_1566852_7 WHERE centerfold_model = "Stephanie Larimore"
30,959
<question>: IN THE ISSUE WITH KARA MONACO ON THE COVER, WHO WAS THE INTERVIEW SUBJECT? <context>: CREATE TABLE table_1566852_7 (interview_subject VARCHAR, cover_model VARCHAR)
SELECT interview_subject FROM table_1566852_7 WHERE cover_model = "Kara Monaco"
30,960
<question>: HOW MANY TIMES WAS LUDACRIS THE INTERVIEW SUBJECT FOR THE 20 QUESTIONS COLUMN? <context>: CREATE TABLE table_1566852_7 (interview_subject VARCHAR)
SELECT COUNT(20 AS _questions) FROM table_1566852_7 WHERE interview_subject = "Ludacris"
30,961
<question>: what is the arabic capital name wher the english capital name is manama? <context>: CREATE TABLE table_15694696_1 (arabic_capital_name VARCHAR, english_capital_name VARCHAR)
SELECT arabic_capital_name FROM table_15694696_1 WHERE english_capital_name = "Manama"
30,962
<question>: what is the arabic capital name where the english capital name is beirut? <context>: CREATE TABLE table_15694696_1 (arabic_capital_name VARCHAR, english_capital_name VARCHAR)
SELECT arabic_capital_name FROM table_15694696_1 WHERE english_capital_name = "Beirut"
30,963
<question>: what is the rank for the rating 4.4? <context>: CREATE TABLE table_15681686_4 (rank__night_ VARCHAR, rating VARCHAR)
SELECT rank__night_ FROM table_15681686_4 WHERE rating = "4.4"
30,964
<question>: what is the rating where the rank is 48? <context>: CREATE TABLE table_15681686_4 (rating VARCHAR, rank__week_ VARCHAR)
SELECT rating / SHARE(18 - 49) FROM table_15681686_4 WHERE rank__week_ = "48"
30,965
<question>: what is the total rank where the rank is 58? <context>: CREATE TABLE table_15681686_4 (rank__timeslot_ VARCHAR, rank__week_ VARCHAR)
SELECT COUNT(rank__timeslot_) FROM table_15681686_4 WHERE rank__week_ = "58"
30,966
<question>: what rank has viewers at 6.45? <context>: CREATE TABLE table_15681686_4 (rank__week_ VARCHAR, viewers__millions_ VARCHAR)
SELECT rank__week_ FROM table_15681686_4 WHERE viewers__millions_ = "6.45"
30,967
<question>: what is the total number of rank where viewers is 9.38? <context>: CREATE TABLE table_15681686_4 (rank__timeslot_ VARCHAR, viewers__millions_ VARCHAR)
SELECT COUNT(rank__timeslot_) FROM table_15681686_4 WHERE viewers__millions_ = "9.38"
30,968
<question>: Where is the service pattern sydenham then fast to norwood junction? <context>: CREATE TABLE table_1569516_1 (destination VARCHAR, service_pattern VARCHAR)
SELECT destination FROM table_1569516_1 WHERE service_pattern = "Sydenham then fast to Norwood Junction"
30,969
<question>: How many platforms have a southern opertator and the pattern is all stations via clapham junction? <context>: CREATE TABLE table_1569516_1 (platform VARCHAR, operator VARCHAR, service_pattern VARCHAR)
SELECT COUNT(platform) FROM table_1569516_1 WHERE operator = "Southern" AND service_pattern = "All stations via Clapham Junction"
30,970
<question>: When London Bridge is the destination, what is the frequency? <context>: CREATE TABLE table_1569516_1 (frequency__per_hour_ VARCHAR, destination VARCHAR)
SELECT frequency__per_hour_ FROM table_1569516_1 WHERE destination = "London Bridge"
30,971
<question>: When London Bridge is the destination, how many lines are there? <context>: CREATE TABLE table_1569516_1 (line VARCHAR, destination VARCHAR)
SELECT COUNT(line) FROM table_1569516_1 WHERE destination = "London Bridge"
30,972
<question>: What was the playoff advancement during the year 1998? <context>: CREATE TABLE table_1570003_2 (playoffs VARCHAR, year VARCHAR)
SELECT playoffs FROM table_1570003_2 WHERE year = 1998
30,973
<question>: During 2003 what was open cup qualifying status? <context>: CREATE TABLE table_1570003_2 (open_cup VARCHAR, year VARCHAR)
SELECT open_cup FROM table_1570003_2 WHERE year = 2003
30,974
<question>: What is the most recent year where team made it to 2nd round of the Open Cup? <context>: CREATE TABLE table_1570003_2 (year INTEGER, open_cup VARCHAR)
SELECT MAX(year) FROM table_1570003_2 WHERE open_cup = "2nd Round"
30,975
<question>: Name the margin of victory when the number is 15 <context>: CREATE TABLE table_1569625_1 (margin_of_victory VARCHAR, no VARCHAR)
SELECT margin_of_victory FROM table_1569625_1 WHERE no = 15
30,976
<question>: Name the number of numbers for howard clark <context>: CREATE TABLE table_1569625_1 (no VARCHAR, runner_s__up VARCHAR)
SELECT COUNT(no) FROM table_1569625_1 WHERE runner_s__up = "Howard Clark"
30,977
<question>: Name the margin of victory when tournament is algarve open de portugal <context>: CREATE TABLE table_1569625_1 (margin_of_victory VARCHAR, tournament VARCHAR)
SELECT margin_of_victory FROM table_1569625_1 WHERE tournament = "Algarve Open de Portugal"
30,978
<question>: Name the tournament when margin of victory is 3 strokes and winning score is 71-66-70-67=274 <context>: CREATE TABLE table_1569625_1 (tournament VARCHAR, margin_of_victory VARCHAR, winning_score VARCHAR)
SELECT tournament FROM table_1569625_1 WHERE margin_of_victory = "3 strokes" AND winning_score = 71 - 66 - 70 - 67 = 274
30,979
<question>: Name the most runs conceded <context>: CREATE TABLE table_15700367_4 (runs_conceded INTEGER)
SELECT MAX(runs_conceded) FROM table_15700367_4
30,980
<question>: Name the wickets when overs bowled is 9 <context>: CREATE TABLE table_15700367_4 (wickets VARCHAR, overs_bowled VARCHAR)
SELECT wickets FROM table_15700367_4 WHERE overs_bowled = "9"
30,981
<question>: Name the most maidens when e.r. 5.11 <context>: CREATE TABLE table_15700367_4 (maidens INTEGER, er VARCHAR)
SELECT MAX(maidens) FROM table_15700367_4 WHERE er = "5.11"
30,982
<question>: Name the least runs conceded for brett lee <context>: CREATE TABLE table_15700367_4 (runs_conceded INTEGER, name VARCHAR)
SELECT MIN(runs_conceded) FROM table_15700367_4 WHERE name = "Brett Lee"
30,983
<question>: How many runs conceded when the earned runs was 4.96? <context>: CREATE TABLE table_15700367_6 (runs_conceded VARCHAR, er VARCHAR)
SELECT runs_conceded FROM table_15700367_6 WHERE er = "4.96"
30,984
<question>: How many players named sanath jayasuriya? <context>: CREATE TABLE table_15700367_6 (runs_conceded VARCHAR, name VARCHAR)
SELECT COUNT(runs_conceded) FROM table_15700367_6 WHERE name = "Sanath Jayasuriya"
30,985
<question>: How many runs conceded for chaminda vaas? <context>: CREATE TABLE table_15700367_6 (runs_conceded VARCHAR, name VARCHAR)
SELECT runs_conceded FROM table_15700367_6 WHERE name = "Chaminda Vaas"
30,986
<question>: How many overs bowled for muttiah muralitharan? <context>: CREATE TABLE table_15700367_6 (overs_bowled VARCHAR, name VARCHAR)
SELECT COUNT(overs_bowled) FROM table_15700367_6 WHERE name = "Muttiah Muralitharan"
30,987
<question>: What was the ER average for the player that conceded 368 runs? <context>: CREATE TABLE table_15700367_6 (er VARCHAR, runs_conceded VARCHAR)
SELECT er FROM table_15700367_6 WHERE runs_conceded = 368
30,988
<question>: What is the lowest number of wickets for farveez maharoof? <context>: CREATE TABLE table_15700367_6 (wickets INTEGER, name VARCHAR)
SELECT MIN(wickets) FROM table_15700367_6 WHERE name = "Farveez Maharoof"
30,989
<question>: What is the airdate when the story is listed as hugh leonard? <context>: CREATE TABLE table_15739098_2 (airdate VARCHAR, story VARCHAR)
SELECT airdate FROM table_15739098_2 WHERE story = "Hugh Leonard"
30,990
<question>: who won the kansas state game on 11/26/1988 <context>: CREATE TABLE table_15740666_6 (kansas_state_vs VARCHAR, last_meeting VARCHAR)
SELECT kansas_state_vs FROM table_15740666_6 WHERE last_meeting = "11/26/1988"
30,991
<question>: how many games has kansas state and depaul played against each other <context>: CREATE TABLE table_15740666_6 (games_played VARCHAR, kansas_state_vs VARCHAR)
SELECT COUNT(games_played) FROM table_15740666_6 WHERE kansas_state_vs = "DePaul"
30,992
<question>: if they played last on 12/5/1987 what is their record <context>: CREATE TABLE table_15740666_6 (current_streak VARCHAR, last_meeting VARCHAR)
SELECT current_streak FROM table_15740666_6 WHERE last_meeting = "12/5/1987"
30,993
<question>: Name the high points for march 7 <context>: CREATE TABLE table_15780049_8 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_15780049_8 WHERE date = "March 7"
30,994
<question>: Name the date for sacramento <context>: CREATE TABLE table_15780049_8 (date VARCHAR, team VARCHAR)
SELECT date FROM table_15780049_8 WHERE team = "Sacramento"
30,995
<question>: Name the high rebounds for march 17 <context>: CREATE TABLE table_15780049_8 (high_rebounds VARCHAR, date VARCHAR)
SELECT high_rebounds FROM table_15780049_8 WHERE date = "March 17"
30,996
<question>: Name the location attendance for philadelphia <context>: CREATE TABLE table_15780049_8 (location_attendance VARCHAR, team VARCHAR)
SELECT location_attendance FROM table_15780049_8 WHERE team = "Philadelphia"
30,997
<question>: Who scored the most assists in game 59? <context>: CREATE TABLE table_15780718_8 (high_assists VARCHAR, game VARCHAR)
SELECT high_assists FROM table_15780718_8 WHERE game = 59
30,998
<question>: What was the record against Boston? <context>: CREATE TABLE table_15780718_8 (record VARCHAR, team VARCHAR)
SELECT record FROM table_15780718_8 WHERE team = "Boston"
30,999
<question>: Name the poll winner for march 19, 2008 <context>: CREATE TABLE table_15781170_2 (poll_winner VARCHAR, original_air_date VARCHAR)
SELECT COUNT(poll_winner) FROM table_15781170_2 WHERE original_air_date = "March 19, 2008"