question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
What was the final episode credited of 187? | CREATE TABLE table_name_72 (final_episode VARCHAR, episodes_credited VARCHAR) | SELECT final_episode FROM table_name_72 WHERE episodes_credited = 187 |
Who was in the three darts challenge that aired on 10 may 2010? | CREATE TABLE table_26733129_1 (three_darts_challenge VARCHAR, air_date VARCHAR) | SELECT three_darts_challenge FROM table_26733129_1 WHERE air_date = "10 May 2010" |
What date did the home team of footscray play? | CREATE TABLE table_name_85 (date VARCHAR, home_team VARCHAR) | SELECT date FROM table_name_85 WHERE home_team = "footscray" |
Who was the centerfold model when the issue's pictorial was amanda beard, reby sky , girls of montauk ? | CREATE TABLE table_1566852_8 (centerfold_model VARCHAR, pictorials VARCHAR) | SELECT centerfold_model FROM table_1566852_8 WHERE pictorials = "Amanda Beard, Reby Sky , Girls of Montauk" |
Who was the visiting team on April 6? | CREATE TABLE table_name_27 (visitor VARCHAR, date VARCHAR) | SELECT visitor FROM table_name_27 WHERE date = "april 6" |
Which School has an Enrollment larger than 264, and a County of 46 la porte? | CREATE TABLE table_name_52 (school VARCHAR, enrollment VARCHAR, county VARCHAR) | SELECT school FROM table_name_52 WHERE enrollment > 264 AND county = "46 la porte" |
What was the average attendance when marathon was the away team? | CREATE TABLE table_name_6 (attendance INTEGER, away VARCHAR) | SELECT AVG(attendance) FROM table_name_6 WHERE away = "marathon" |
What is the Country that has a Player of Scott Hoch? | CREATE TABLE table_name_31 (country VARCHAR, player VARCHAR) | SELECT country FROM table_name_31 WHERE player = "scott hoch" |
How many touchdowns did the player with 10 points have? | CREATE TABLE table_25730326_2 (touchdowns INTEGER, points VARCHAR) | SELECT MIN(touchdowns) FROM table_25730326_2 WHERE points = 10 |
What is Opponent, when Event is RITC 22 - Rage In The Cage 22? | CREATE TABLE table_name_17 (opponent VARCHAR, event VARCHAR) | SELECT opponent FROM table_name_17 WHERE event = "ritc 22 - rage in the cage 22" |
Which races have #2 podiums? | CREATE TABLE table_name_6 (races VARCHAR, podiums VARCHAR) | SELECT races FROM table_name_6 WHERE podiums = "2" |
Where was the game on Thursday, April 29, and they played the Chicago Cubs? | CREATE TABLE table_name_84 (site VARCHAR, opponent VARCHAR, date VARCHAR) | SELECT site FROM table_name_84 WHERE opponent = "chicago cubs" AND date = "thursday, april 29" |
who was the semifinalist for the Key Biscane tournament? | CREATE TABLE table_name_12 (semifinalists VARCHAR, tournament VARCHAR) | SELECT semifinalists FROM table_name_12 WHERE tournament = "key biscane" |
What is the total number of silver with rank number 6? | CREATE TABLE table_name_6 (silver VARCHAR, rank VARCHAR) | SELECT COUNT(silver) FROM table_name_6 WHERE rank = 6 |
What is the highest attendance for the match against west ham united at the venue of a? | CREATE TABLE table_name_42 (attendance INTEGER, venue VARCHAR, opponent VARCHAR) | SELECT MAX(attendance) FROM table_name_42 WHERE venue = "a" AND opponent = "west ham united" |
In which Season was the Division Washington Bullets? | CREATE TABLE table_name_4 (season VARCHAR, division VARCHAR) | SELECT season FROM table_name_4 WHERE division = "washington bullets" |
what is the highest events when the cuts made is less than 34, the top-25 is less than 5 and the top-10 is more than 1? | CREATE TABLE table_name_72 (events INTEGER, top_10 VARCHAR, cuts_made VARCHAR, top_25 VARCHAR) | SELECT MAX(events) FROM table_name_72 WHERE cuts_made < 34 AND top_25 < 5 AND top_10 > 1 |
Who was the opponent when Brown (9-5) took the loss? | CREATE TABLE table_name_62 (opponent VARCHAR, loss VARCHAR) | SELECT opponent FROM table_name_62 WHERE loss = "brown (9-5)" |
Name the opponent for jul 31 and score of w 5-1 | CREATE TABLE table_name_50 (opponent VARCHAR, date VARCHAR, score VARCHAR) | SELECT opponent FROM table_name_50 WHERE date = "jul 31" AND score = "w 5-1" |
How many Laps have a Grid larger than 9, and a Time/Retired of +32.354? | CREATE TABLE table_name_87 (laps VARCHAR, grid VARCHAR, time_retired VARCHAR) | SELECT COUNT(laps) FROM table_name_87 WHERE grid > 9 AND time_retired = "+32.354" |
What is the average latitude and longitude of the starting points of all trips? | CREATE TABLE trip (start_station_id VARCHAR); CREATE TABLE station (lat INTEGER, long INTEGER, id VARCHAR) | SELECT AVG(T1.lat), AVG(T1.long) FROM station AS T1 JOIN trip AS T2 ON T1.id = T2.start_station_id |
How did the School/Club Team of Manuel Luis Quezon acquire their Forward? | CREATE TABLE table_name_53 (acquisition_via VARCHAR, position VARCHAR, school_club_team VARCHAR) | SELECT acquisition_via FROM table_name_53 WHERE position = "forward" AND school_club_team = "manuel luis quezon" |
When the Overall is under 102, what's the round played? | CREATE TABLE table_name_74 (round VARCHAR, overall INTEGER) | SELECT round FROM table_name_74 WHERE overall < 102 |
What year has a original title of "el tinte de la fama"? | CREATE TABLE table_name_81 (year__ceremony_ VARCHAR, original_title VARCHAR) | SELECT year__ceremony_ FROM table_name_81 WHERE original_title = "el tinte de la fama" |
WHAT IS THE AVERAGE DATE OF RELEASE FOR THICKSKIN? | CREATE TABLE table_name_33 (date_of_release INTEGER, title VARCHAR) | SELECT AVG(date_of_release) FROM table_name_33 WHERE title = "thickskin" |
What is the highest value for Other that has CONCACAF value of 0 a U.S. Open Cup larger than 0? | CREATE TABLE table_name_28 (other INTEGER, us_open_cup VARCHAR, concacaf VARCHAR) | SELECT MAX(other) FROM table_name_28 WHERE us_open_cup > 0 AND concacaf = 0 |
What is the lowest year that have wins greater than 0? | CREATE TABLE table_name_24 (year INTEGER, wins INTEGER) | SELECT MIN(year) FROM table_name_24 WHERE wins > 0 |
What is the setting for the hard difficulty? | CREATE TABLE table_24463470_1 (setting VARCHAR, difficulty VARCHAR) | SELECT setting FROM table_24463470_1 WHERE difficulty = "Hard" |
What is Lost, when Points For is "205"? | CREATE TABLE table_name_16 (lost VARCHAR, points_for VARCHAR) | SELECT lost FROM table_name_16 WHERE points_for = "205" |
What result did Indiana have when they were an opponent? | CREATE TABLE table_name_78 (result VARCHAR, opponent_number VARCHAR) | SELECT result FROM table_name_78 WHERE opponent_number = "indiana" |
What nhl team does stan weir play for? | CREATE TABLE table_1473672_2 (nhl_team VARCHAR, player VARCHAR) | SELECT nhl_team FROM table_1473672_2 WHERE player = "Stan Weir" |
Which Yards has a Attempts of 247 | CREATE TABLE table_name_74 (yards VARCHAR, attempts VARCHAR) | SELECT yards FROM table_name_74 WHERE attempts = "247" |
Which College has a Round smaller than 2? | CREATE TABLE table_name_50 (college VARCHAR, round INTEGER) | SELECT college FROM table_name_50 WHERE round < 2 |
what is the rating when the rank (timeslot) is less than 3 and the rank (night) is less than 8? | CREATE TABLE table_name_92 (rating INTEGER, rank__timeslot_ VARCHAR, rank__night_ VARCHAR) | SELECT SUM(rating) FROM table_name_92 WHERE rank__timeslot_ < 3 AND rank__night_ < 8 |
Who was the runner up when the won by 4 strokes? | CREATE TABLE table_21649285_2 (runner_s__up VARCHAR, margin_of_victory VARCHAR) | SELECT runner_s__up FROM table_21649285_2 WHERE margin_of_victory = "4 strokes" |
Where is NCAA division ii Franklin Pierce University located at? | CREATE TABLE table_name_54 (location VARCHAR, classification VARCHAR, institution VARCHAR) | SELECT location FROM table_name_54 WHERE classification = "ncaa division ii" AND institution = "franklin pierce university" |
What is the Area km 2 with a Census Ranking of 1,773 of 5,008? | CREATE TABLE table_name_56 (area_km_2 INTEGER, census_ranking VARCHAR) | SELECT SUM(area_km_2) FROM table_name_56 WHERE census_ranking = "1,773 of 5,008" |
What is the sum of Silver with a Bronze that is larger than 0 with a Gold smaller than 0? | CREATE TABLE table_name_26 (silver INTEGER, bronze VARCHAR, gold VARCHAR) | SELECT SUM(silver) FROM table_name_26 WHERE bronze > 0 AND gold < 0 |
How many weeks have october 31, 1954 as the date? | CREATE TABLE table_name_96 (week VARCHAR, date VARCHAR) | SELECT COUNT(week) FROM table_name_96 WHERE date = "october 31, 1954" |
Where was the birthplace of the person born on March 21, 1979? | CREATE TABLE table_name_92 (birthplace VARCHAR, birthdate VARCHAR) | SELECT birthplace FROM table_name_92 WHERE birthdate = "march 21, 1979" |
Which Against has a Peel of waroona, and a Byes larger than 0? | CREATE TABLE table_name_55 (against INTEGER, peel VARCHAR, byes VARCHAR) | SELECT MAX(against) FROM table_name_55 WHERE peel = "waroona" AND byes > 0 |
What is the sum of Total Regions that have the Year 1954, and a Nebo greater than 447? | CREATE TABLE table_name_2 (total_region INTEGER, year VARCHAR, nebo VARCHAR) | SELECT SUM(total_region) FROM table_name_2 WHERE year = 1954 AND nebo > 447 |
Which operator has a Reserve of 100 bbbl? | CREATE TABLE table_name_96 (operator_s_ VARCHAR, reserves VARCHAR) | SELECT operator_s_ FROM table_name_96 WHERE reserves = "100 bbbl" |
Who was on the prohibition ticket when Abraham J. Cuddeback was on the Greenback ticket? | CREATE TABLE table_name_39 (prohibition_ticket VARCHAR, greenback_ticket VARCHAR) | SELECT prohibition_ticket FROM table_name_39 WHERE greenback_ticket = "abraham j. cuddeback" |
Name the stgae with winner of robbie mcewen | CREATE TABLE table_name_22 (stage VARCHAR, winner VARCHAR) | SELECT stage FROM table_name_22 WHERE winner = "robbie mcewen" |
Who is the leading scorer for the game on March 22, 2008 with a visitor of Magic? | CREATE TABLE table_name_40 (leading_scorer VARCHAR, visitor VARCHAR, date VARCHAR) | SELECT leading_scorer FROM table_name_40 WHERE visitor = "magic" AND date = "march 22, 2008" |
Which week was there a w 23–14 result? | CREATE TABLE table_name_1 (week VARCHAR, result VARCHAR) | SELECT week FROM table_name_1 WHERE result = "w 23–14" |
What is Final, when Team is United States (USA) USA I? | CREATE TABLE table_name_66 (final VARCHAR, team VARCHAR) | SELECT final FROM table_name_66 WHERE team = "united states (usa) usa i" |
How many values for Maghreb with Mediterranean Europe is Siciliense? | CREATE TABLE table_22860_1 (maghreb VARCHAR, mediterranean_europe VARCHAR) | SELECT COUNT(maghreb) FROM table_22860_1 WHERE mediterranean_europe = "Siciliense" |
What is the sector of the company with an incorporated date before 1983? | CREATE TABLE table_name_64 (sector VARCHAR, incorporated INTEGER) | SELECT sector FROM table_name_64 WHERE incorporated < 1983 |
What is the total number of E scores when the total score was 19.7 and the A score was more than 6? | CREATE TABLE table_name_49 (e_score VARCHAR, total VARCHAR, a_score VARCHAR) | SELECT COUNT(e_score) FROM table_name_49 WHERE total = 19.7 AND a_score > 6 |
Name the airport with IATA of cxb | CREATE TABLE table_name_64 (airport VARCHAR, iata VARCHAR) | SELECT airport FROM table_name_64 WHERE iata = "cxb" |
What is the percentage for manhattan 45,901? | CREATE TABLE table_1108394_24 (_percentage VARCHAR, manhattan VARCHAR) | SELECT COUNT(_percentage) FROM table_1108394_24 WHERE manhattan = "45,901" |
how many directors for the film мајки | CREATE TABLE table_14928423_1 (director_s_ VARCHAR, original_title VARCHAR) | SELECT COUNT(director_s_) FROM table_14928423_1 WHERE original_title = "Мајки" |
Which opponent has a Score of 15.4.94? | CREATE TABLE table_name_89 (opponent VARCHAR, score VARCHAR) | SELECT opponent FROM table_name_89 WHERE score = "15.4.94" |
What is the lowest number of series? | CREATE TABLE table_15824796_4 (series__number INTEGER) | SELECT MIN(series__number) FROM table_15824796_4 |
Who lost to moyer (9–4)? | CREATE TABLE table_name_26 (opponent VARCHAR, loss VARCHAR) | SELECT opponent FROM table_name_26 WHERE loss = "moyer (9–4)" |
What is the HDI 2011 of the country with a DI 2011 of 7.63? | CREATE TABLE table_name_54 (hdi_2011 VARCHAR, di_2011 VARCHAR) | SELECT hdi_2011 FROM table_name_54 WHERE di_2011 = "7.63" |
What league does the team with the nickname Cavaliers belong to | CREATE TABLE table_15475116_1 (league VARCHAR, nickname VARCHAR) | SELECT league FROM table_15475116_1 WHERE nickname = "Cavaliers" |
Which Institution has a Mascot of broncbusters? | CREATE TABLE table_name_43 (institution VARCHAR, mascot VARCHAR) | SELECT institution FROM table_name_43 WHERE mascot = "broncbusters" |
What is the lowest Week when the result was l 13–10, November 30, 1975, with more than 44,982 people in attendance? | CREATE TABLE table_name_93 (week INTEGER, attendance VARCHAR, result VARCHAR, date VARCHAR) | SELECT MIN(week) FROM table_name_93 WHERE result = "l 13–10" AND date = "november 30, 1975" AND attendance > 44 OFFSET 982 |
Which Semi finalists had a Week of may 15? | CREATE TABLE table_name_30 (semi_finalists VARCHAR, week VARCHAR) | SELECT semi_finalists FROM table_name_30 WHERE week = "may 15" |
Where is the Bellerive Country Club venue located? | CREATE TABLE table_224616_1 (location_of_venue VARCHAR, venue VARCHAR) | SELECT location_of_venue FROM table_224616_1 WHERE venue = "Bellerive country Club" |
What engine was in the year of 1961? | CREATE TABLE table_name_85 (engine VARCHAR, year VARCHAR) | SELECT engine FROM table_name_85 WHERE year = 1961 |
What is the date of appointment when the date of vacancy is 21 december 2007? | CREATE TABLE table_10592536_8 (date_of_appointment VARCHAR, date_of_vacancy VARCHAR) | SELECT date_of_appointment FROM table_10592536_8 WHERE date_of_vacancy = "21 December 2007" |
What is the population density of Siglunes when the change was smaller than -8.1 percent? | CREATE TABLE table_name_6 (population_density VARCHAR, name VARCHAR, change___percentage_ VARCHAR) | SELECT COUNT(population_density) FROM table_name_6 WHERE name = "siglunes" AND change___percentage_ < -8.1 |
Who was the winning driver with the winning team Opel Team Holzer 1, and a round under 9 with the fastest lap being Bernd Schneider? | CREATE TABLE table_name_96 (winning_driver VARCHAR, fastest_lap VARCHAR, winning_team VARCHAR, round VARCHAR) | SELECT winning_driver FROM table_name_96 WHERE winning_team = "opel team holzer 1" AND round < 9 AND fastest_lap = "bernd schneider" |
Name the pole position for belgian grand prix | CREATE TABLE table_name_75 (pole_position VARCHAR, grand_prix VARCHAR) | SELECT pole_position FROM table_name_75 WHERE grand_prix = "belgian grand prix" |
When 55 is the tries for what is the lost? | CREATE TABLE table_17941032_1 (lost VARCHAR, tries_for VARCHAR) | SELECT lost FROM table_17941032_1 WHERE tries_for = "55" |
Who opposed Marty Meehan in each election? | CREATE TABLE table_1341522_24 (opponent VARCHAR, incumbent VARCHAR) | SELECT opponent FROM table_1341522_24 WHERE incumbent = "Marty Meehan" |
With a date of Aldershot and Aldershot as the away team what was the score of the game? | CREATE TABLE table_name_27 (score VARCHAR, away_team VARCHAR, date VARCHAR) | SELECT score FROM table_name_27 WHERE away_team = "aldershot" AND date = "aldershot" |
What was the time for Screen Your Friend? | CREATE TABLE table_name_48 (time VARCHAR, winner VARCHAR) | SELECT time FROM table_name_48 WHERE winner = "screen your friend" |
What is the total number of field goals of Denan Kemp, who has more than 4 tries, more than 32 points, and 0 goals? | CREATE TABLE table_name_4 (Field VARCHAR, player VARCHAR, goals VARCHAR, tries VARCHAR, points VARCHAR) | SELECT COUNT(Field) AS goals FROM table_name_4 WHERE tries > 4 AND points > 32 AND goals = 0 AND player = "denan kemp" |
What is the average Against when the drawn is more than 2 and the Difference of- 17, and a Played smaller than 20? | CREATE TABLE table_name_88 (against INTEGER, played VARCHAR, drawn VARCHAR, difference VARCHAR) | SELECT AVG(against) FROM table_name_88 WHERE drawn > 2 AND difference = "- 17" AND played < 20 |
When was Cardinal-Deacon of S. Giorgio in Velabro elevated? | CREATE TABLE table_name_75 (elevated VARCHAR, cardinalatial_order_and_title VARCHAR) | SELECT elevated FROM table_name_75 WHERE cardinalatial_order_and_title = "cardinal-deacon of s. giorgio in velabro" |
What is the power, in kW, of channel TV-23, callsign DYCG-TV? | CREATE TABLE table_2610582_3 (power_kw__erp_ VARCHAR, ch__number VARCHAR, callsign VARCHAR) | SELECT power_kw__erp_ FROM table_2610582_3 WHERE ch__number = "TV-23" AND callsign = "DYCG-TV" |
How much money was scored for 73-71-70-73=287? | CREATE TABLE table_name_13 (money___$__ VARCHAR, score VARCHAR) | SELECT money___$__ FROM table_name_13 WHERE score = 73 - 71 - 70 - 73 = 287 |
What is the HDTV when the content shows a timeshift +1 di disney junior? | CREATE TABLE table_name_54 (hdtv VARCHAR, content VARCHAR) | SELECT hdtv FROM table_name_54 WHERE content = "timeshift +1 di disney junior" |
What were the years active of the player from New Zealand with more than 11 caps? | CREATE TABLE table_name_1 (years_active VARCHAR, caps VARCHAR, country VARCHAR) | SELECT years_active FROM table_name_1 WHERE caps > 11 AND country = "new zealand" |
What is the exit date of the player who transferred to Cardiff City? | CREATE TABLE table_name_9 (exit_date VARCHAR, to_club VARCHAR) | SELECT exit_date FROM table_name_9 WHERE to_club = "cardiff city" |
What Viewers (m) has an Episode of school council? | CREATE TABLE table_name_82 (viewers__m_ INTEGER, episode VARCHAR) | SELECT AVG(viewers__m_) FROM table_name_82 WHERE episode = "school council" |
How many distinct transaction types are used in the transactions? | CREATE TABLE TRANSACTIONS (transaction_type_code VARCHAR) | SELECT COUNT(DISTINCT transaction_type_code) FROM TRANSACTIONS |
When was pedro rodríguez the winning driver? | CREATE TABLE table_name_77 (date VARCHAR, winning_driver VARCHAR) | SELECT date FROM table_name_77 WHERE winning_driver = "pedro rodríguez" |
What cover has a published date of May 27, 2009 (hc) May 20, 2009 (tpb)? | CREATE TABLE table_name_12 (cover VARCHAR, published VARCHAR) | SELECT cover FROM table_name_12 WHERE published = "may 27, 2009 (hc) may 20, 2009 (tpb)" |
What's the record of the team who played the Cleveland Browns? | CREATE TABLE table_name_56 (record VARCHAR, opponent VARCHAR) | SELECT record FROM table_name_56 WHERE opponent = "cleveland browns" |
Find the number of the products that have their color described as "red" and have a characteristic named "slow". | CREATE TABLE CHARACTERISTICS (characteristic_id VARCHAR, characteristic_name VARCHAR); CREATE TABLE ref_colors (color_code VARCHAR, color_description VARCHAR); CREATE TABLE products (product_id VARCHAR, color_code VARCHAR); CREATE TABLE product_characteristics (product_id VARCHAR, characteristic_id VARCHAR) | SELECT COUNT(*) FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id JOIN ref_colors AS t4 ON t1.color_code = t4.color_code WHERE t4.color_description = "red" AND t3.characteristic_name = "slow" |
Which payment method is used by most customers? | CREATE TABLE customers (payment_method VARCHAR) | SELECT payment_method FROM customers GROUP BY payment_method ORDER BY COUNT(*) DESC LIMIT 1 |
What is the team's record in 3a volleyball? | CREATE TABLE table_name_89 (record VARCHAR, class VARCHAR, sport VARCHAR) | SELECT record FROM table_name_89 WHERE class = "3a" AND sport = "volleyball" |
What is Winner, when Win # is greater than 1, and when Points is less than 94? | CREATE TABLE table_name_76 (winner VARCHAR, win__number VARCHAR, points VARCHAR) | SELECT winner FROM table_name_76 WHERE win__number > 1 AND points < 94 |
Who is team 1 with an agg of 2-5? | CREATE TABLE table_name_1 (team_1 VARCHAR, agg VARCHAR) | SELECT team_1 FROM table_name_1 WHERE agg = "2-5" |
What boat was laid down on 25 april 1887? | CREATE TABLE table_name_26 (name VARCHAR, laid_down VARCHAR) | SELECT name FROM table_name_26 WHERE laid_down = "25 april 1887" |
Name the first elected for re-elected and brian higgins | CREATE TABLE table_19753079_35 (first_elected VARCHAR, result VARCHAR, incumbent VARCHAR) | SELECT first_elected FROM table_19753079_35 WHERE result = "Re-elected" AND incumbent = "Brian Higgins" |
What is the local name given to the capital of Anguilla? | CREATE TABLE table_1008653_1 (capital___endonym__ VARCHAR, country___endonym__ VARCHAR) | SELECT capital___endonym__ FROM table_1008653_1 WHERE country___endonym__ = "Anguilla" |
How many tries did the club with a try bonus of correct as of 2 June 2009 have? | CREATE TABLE table_name_45 (tries_for VARCHAR, try_bonus VARCHAR) | SELECT tries_for FROM table_name_45 WHERE try_bonus = "correct as of 2 june 2009" |
What team has more than 49 laps and a grid of 8? | CREATE TABLE table_name_63 (team VARCHAR, laps VARCHAR, grid VARCHAR) | SELECT team FROM table_name_63 WHERE laps > 49 AND grid = 8 |
Show the top 3 most common colleges of players in match seasons. | CREATE TABLE match_season (College VARCHAR) | SELECT College FROM match_season GROUP BY College ORDER BY COUNT(*) DESC LIMIT 3 |
WHAT IS THE TV TIME FOR NOVEMBER 10, 1996? | CREATE TABLE table_name_93 (tv_time VARCHAR, date VARCHAR) | SELECT tv_time FROM table_name_93 WHERE date = "november 10, 1996" |
How many types are there for the measure where there were 312680 yes votes? | CREATE TABLE table_256286_45 (type VARCHAR, yes_votes VARCHAR) | SELECT COUNT(type) FROM table_256286_45 WHERE yes_votes = 312680 |
Name the number of black knights points for 3 game | CREATE TABLE table_21091145_1 (black_knights_points VARCHAR, game VARCHAR) | SELECT COUNT(black_knights_points) FROM table_21091145_1 WHERE game = 3 |
How many weeks have an attendance of 64,116? | CREATE TABLE table_name_40 (week VARCHAR, attendance VARCHAR) | SELECT COUNT(week) FROM table_name_40 WHERE attendance = "64,116" |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.