answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT chassis FROM table_name_94 WHERE drivers = "rich vogler" | What Chassis did Rich Vogler use? | CREATE TABLE table_name_94 (chassis VARCHAR, drivers VARCHAR) |
SELECT name FROM table_name_47 WHERE transfer_window = "winter" | What is the name when winter is the transfer window? | CREATE TABLE table_name_47 (name VARCHAR, transfer_window VARCHAR) |
SELECT undecided FROM table_name_80 WHERE source = "suffolk university" AND murray = "11%" | What is the undecided percentage of the poll from Suffolk University with Murray at 11%? | CREATE TABLE table_name_80 (undecided VARCHAR, source VARCHAR, murray VARCHAR) |
SELECT set_2 FROM table_name_41 WHERE set_1 = "25–15" AND score = "3–0" | Which Set 2 has a Set 1 of 25–15, and a Score of 3–0? | CREATE TABLE table_name_41 (set_2 VARCHAR, set_1 VARCHAR, score VARCHAR) |
SELECT 2010 FROM table_name_84 WHERE 2012 = "2r" AND tournament = "us open" | If the US Open tournament had 2r in 2012, what was it in 2010? | CREATE TABLE table_name_84 (tournament VARCHAR) |
SELECT COUNT(year) FROM table_name_47 WHERE award = "mercury prize" | How many years has the Mercury Prize award been given? | CREATE TABLE table_name_47 (year VARCHAR, award VARCHAR) |
SELECT mission FROM table_name_3 WHERE apogee = "705 km" | Which Mission has a Apogee of 705 km? | CREATE TABLE table_name_3 (mission VARCHAR, apogee VARCHAR) |
SELECT date FROM table_name_41 WHERE opponent = "wales" | When did they play against Wales? | CREATE TABLE table_name_41 (date VARCHAR, opponent VARCHAR) |
SELECT away_team FROM table_name_32 WHERE home_team = "north melbourne" | When north melbourne was the home team who was the Away team? | CREATE TABLE table_name_32 (away_team VARCHAR, home_team VARCHAR) |
SELECT MAX(year) FROM table_name_33 WHERE extra = "pentathlon" | What is the highest Year, when Extra is Pentathlon? | CREATE TABLE table_name_33 (year INTEGER, extra VARCHAR) |
SELECT COUNT(arlenes_vote) FROM table_12305325_4 WHERE craigs_vote = "Brian and Karen" | What was the total of arlenes vote when craig voted for brian and karen? | CREATE TABLE table_12305325_4 (arlenes_vote VARCHAR, craigs_vote VARCHAR) |
SELECT attendance FROM table_name_36 WHERE date = "october 19, 2003" | what is the attendance on october 19, 2003? | CREATE TABLE table_name_36 (attendance VARCHAR, date VARCHAR) |
SELECT alpha_3_code FROM table_222771_1 WHERE alpha_2_code = "FO" | What is the Alpha 3 code for the area also known as FO? | CREATE TABLE table_222771_1 (alpha_3_code VARCHAR, alpha_2_code VARCHAR) |
SELECT home_away FROM table_name_96 WHERE opponent = "rattlers" AND field = "united sports training center" | Was the game against the Rattlers at the United Sports Training Center a home game or an away game? | CREATE TABLE table_name_96 (home_away VARCHAR, opponent VARCHAR, field VARCHAR) |
SELECT constituency FROM table_name_12 WHERE result = "labour hold" AND liberal_democrats = "elizabeth newton" | In what constituency was the result labour hold and Liberal democrat Elizabeth Newton won? | CREATE TABLE table_name_12 (constituency VARCHAR, result VARCHAR, liberal_democrats VARCHAR) |
SELECT location FROM table_name_52 WHERE res = "win" AND record = "8-5" | Tell me the location for win with record of 8-5 | CREATE TABLE table_name_52 (location VARCHAR, res VARCHAR, record VARCHAR) |
SELECT el_samurai FROM table_name_30 WHERE mazada = "x" AND ryuji_hijikata = "draw (30:00)" | Name the El samurai with MAZADA of x for Ryuji Hijikata of draw (30:00) | CREATE TABLE table_name_30 (el_samurai VARCHAR, mazada VARCHAR, ryuji_hijikata VARCHAR) |
SELECT record FROM table_name_84 WHERE attendance = "30,110" | What is Record, when Attendance is 30,110? | CREATE TABLE table_name_84 (record VARCHAR, attendance VARCHAR) |
SELECT T1.FullName, T1.Id FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker GROUP BY T1.Id HAVING COUNT(*) > 3 | Which makers designed more than 3 car models? List full name and the id. | CREATE TABLE MODEL_LIST (Maker VARCHAR); CREATE TABLE CAR_MAKERS (FullName VARCHAR, Id VARCHAR) |
SELECT SUM(pick) FROM table_name_58 WHERE name = "charley taylor" AND overall > 3 | What is the pick of Charley Taylor, who has an overall greater than 3? | CREATE TABLE table_name_58 (pick INTEGER, name VARCHAR, overall VARCHAR) |
SELECT lunar_landing_site FROM table_name_52 WHERE duration_on_lunar_surface = "21:31" | Where was the landing site when the duration on the lunar surface was 21:31? | CREATE TABLE table_name_52 (lunar_landing_site VARCHAR, duration_on_lunar_surface VARCHAR) |
SELECT electorate FROM table_name_16 WHERE term_of_office = "1955–1972" AND member = "peter howson" | What is the Electorate when the term of office was 1955–1972, for Peter Howson? | CREATE TABLE table_name_16 (electorate VARCHAR, term_of_office VARCHAR, member VARCHAR) |
SELECT 2006 FROM table_name_48 WHERE 2007 = "3r" | What is 2006 has a 2007 of 3r? | CREATE TABLE table_name_48 (Id VARCHAR) |
SELECT school FROM table_name_76 WHERE enrollment < 301 | What School has an Enrollement smaller than 301? | CREATE TABLE table_name_76 (school VARCHAR, enrollment INTEGER) |
SELECT singapore_gross FROM table_name_93 WHERE director = "siu wing" | How much is the Singapore Gross for the film that Siu Wing directed? | CREATE TABLE table_name_93 (singapore_gross VARCHAR, director VARCHAR) |
SELECT COUNT(fate) FROM table_1220125_4 WHERE pennant = "U33" | What is the total number of fate for pennant of u33? | CREATE TABLE table_1220125_4 (fate VARCHAR, pennant VARCHAR) |
SELECT Total_Points FROM gymnast ORDER BY Total_Points DESC | List the total points of gymnasts in descending order. | CREATE TABLE gymnast (Total_Points VARCHAR) |
SELECT COUNT(ppi__pixels_per_inch__) FROM table_27653752_1 WHERE ppcm__pixels_per_cm__ = 87 | How many different PPI does the model with ppcm of 87 have? | CREATE TABLE table_27653752_1 (ppi__pixels_per_inch__ VARCHAR, ppcm__pixels_per_cm__ VARCHAR) |
SELECT opponent FROM table_name_16 WHERE date = "june 3" | What team did the Red Sox play against on June 3? | CREATE TABLE table_name_16 (opponent VARCHAR, date VARCHAR) |
SELECT attendance FROM table_name_32 WHERE result = "l 41-37" | What is the attendance number when the result is l 41-37? | CREATE TABLE table_name_32 (attendance VARCHAR, result VARCHAR) |
SELECT T1.customer_id, T2.customer_first_name, T2.customer_last_name, COUNT(*) FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id | Show id, first name and last name for all customers and the number of accounts. | CREATE TABLE Accounts (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_id VARCHAR) |
SELECT iata FROM table_name_3 WHERE airportname = "esperadinha airport" | What is the IATA for Esperadinha Airport? | CREATE TABLE table_name_3 (iata VARCHAR, airportname VARCHAR) |
SELECT gender FROM table_26615633_3 WHERE species = "Holland Lop" | whatis the gender wher ethe species is holland lop? | CREATE TABLE table_26615633_3 (gender VARCHAR, species VARCHAR) |
SELECT player FROM table_name_13 WHERE position = "rw" AND league_from = "western hockey league" | Which Player has a Position of rw, and a League from of western hockey league? | CREATE TABLE table_name_13 (player VARCHAR, position VARCHAR, league_from VARCHAR) |
SELECT opponent FROM table_name_35 WHERE attendance = "65,554" | Who was the opposing team in the game attended by 65,554? | CREATE TABLE table_name_35 (opponent VARCHAR, attendance VARCHAR) |
SELECT away_team AS score FROM table_name_78 WHERE venue = "vfl park" | What was the away score at VFL Park? | CREATE TABLE table_name_78 (away_team VARCHAR, venue VARCHAR) |
SELECT opponent FROM table_name_45 WHERE result = "w 12-11" | Name the opponent when the resultwas w 12-11 | CREATE TABLE table_name_45 (opponent VARCHAR, result VARCHAR) |
SELECT overs FROM table_name_31 WHERE ground = "waca ground" AND opponent = "queensland" | How many overs occurred at Waca Ground against Queensland? | CREATE TABLE table_name_31 (overs VARCHAR, ground VARCHAR, opponent VARCHAR) |
SELECT detroit__dtw_ FROM table_1637981_7 WHERE grand_rapids__grr_ = "$377.29" | When Grand Rapids's fare was $377.29, what is the fare to Detroit? | CREATE TABLE table_1637981_7 (detroit__dtw_ VARCHAR, grand_rapids__grr_ VARCHAR) |
SELECT year FROM table_name_36 WHERE award = "kids' choice awards argentina" AND category = "best actress" | What year was there a nomination for Best Actress at the Kids' Choice Awards Argentina? | CREATE TABLE table_name_36 (year VARCHAR, award VARCHAR, category VARCHAR) |
SELECT MAX(gold) FROM table_name_33 WHERE total = 7 | what is the most gold when the total is 7? | CREATE TABLE table_name_33 (gold INTEGER, total VARCHAR) |
SELECT week_14__final__dec_7 FROM table_name_97 WHERE week_8_oct_26 = "florida (6-1)" | What is the week 14 (final) dec 7 standing with Florida (6-1) on week 8 Oct 26? | CREATE TABLE table_name_97 (week_14__final__dec_7 VARCHAR, week_8_oct_26 VARCHAR) |
SELECT COUNT(*), T1.dormid FROM dorm AS T1 JOIN has_amenity AS T2 ON T1.dormid = T2.dormid WHERE T1.student_capacity > 100 GROUP BY T1.dormid | Find the number of amenities for each of the dorms that can accommodate more than 100 students. | CREATE TABLE dorm (dormid VARCHAR, student_capacity INTEGER); CREATE TABLE has_amenity (dormid VARCHAR) |
SELECT report FROM table_name_64 WHERE date = "10 april" | Tell me the report for 10 april | CREATE TABLE table_name_64 (report VARCHAR, date VARCHAR) |
SELECT SUM(points) FROM table_name_43 WHERE goals_for < 33 AND draws > 9 | How many points have Goals for smaller than 33, and Draws larger than 9? | CREATE TABLE table_name_43 (points INTEGER, goals_for VARCHAR, draws VARCHAR) |
SELECT champion FROM table_name_28 WHERE engine = "ford" AND season = "1971" | Who was the champion that drove the car with the Ford engine in 1971? | CREATE TABLE table_name_28 (champion VARCHAR, engine VARCHAR, season VARCHAR) |
SELECT series_premiere FROM table_29799700_2 WHERE tv_network_s_ = "TV3" | What was the date of the series premiere whose TV network was TV3? | CREATE TABLE table_29799700_2 (series_premiere VARCHAR, tv_network_s_ VARCHAR) |
SELECT d_r_spread FROM table_25200461_9 WHERE no_party_preference = "31.8%" | What is the d-r spread if the no party preference is 31.8%? | CREATE TABLE table_25200461_9 (d_r_spread VARCHAR, no_party_preference VARCHAR) |
SELECT AVG(rank) FROM table_name_48 WHERE opposition = "tipperary" AND county = "limerick" AND total > 12 | In Limerick County, what is the Rank with a Total larger than 12 and Tipperary as the Opposition? | CREATE TABLE table_name_48 (rank INTEGER, total VARCHAR, opposition VARCHAR, county VARCHAR) |
SELECT MIN(year) FROM table_name_52 WHERE league = "usisl pro league" | What was the earliest year for the USISL Pro League? | CREATE TABLE table_name_52 (year INTEGER, league VARCHAR) |
SELECT place FROM table_name_50 WHERE country = "england" | What place did the player from England come in? | CREATE TABLE table_name_50 (place VARCHAR, country VARCHAR) |
SELECT AVG(mintage) FROM table_name_42 WHERE animal = "red breasted nuthatch" AND year < 2007 | How many Red Breasted Nuthatch coins created before 2007 were minted, on average? | CREATE TABLE table_name_42 (mintage INTEGER, animal VARCHAR, year VARCHAR) |
SELECT release_date FROM table_name_96 WHERE location = "germany" | What is the release in Germany? | CREATE TABLE table_name_96 (release_date VARCHAR, location VARCHAR) |
SELECT MIN(pos) FROM table_name_94 WHERE driver = "kyle busch" | What is the lowest position for driver Kyle Busch? | CREATE TABLE table_name_94 (pos INTEGER, driver VARCHAR) |
SELECT venue FROM table_17356873_1 WHERE head_coach = "Erdoğan Arıca" | Erdoğan Arıca is the head coach at what venue? | CREATE TABLE table_17356873_1 (venue VARCHAR, head_coach VARCHAR) |
SELECT series FROM table_name_78 WHERE title = "boyhood daze" | Which series had a title of Boyhood Daze? | CREATE TABLE table_name_78 (series VARCHAR, title VARCHAR) |
SELECT Lieutenant_Governor, Comptroller FROM party WHERE Party = "Democratic" | Show the lieutenant governor and comptroller from the democratic party. | CREATE TABLE party (Lieutenant_Governor VARCHAR, Comptroller VARCHAR, Party VARCHAR) |
SELECT occupational_pensions FROM table_name_34 WHERE other_income_sources = "2%" AND state_pensions = "7%" AND working_tax_credit = "2%" AND employment___salaries_ & _wages_ = "66%" | Other income sources of 2%, and a State pensions of 7%, and a Working tax credit of 2%, and a Employment ( salaries & wages) of 66% has what occupational pensions? | CREATE TABLE table_name_34 (occupational_pensions VARCHAR, working_tax_credit VARCHAR, employment___salaries_ VARCHAR, _wages_ VARCHAR, other_income_sources VARCHAR, state_pensions VARCHAR) |
SELECT AVG(overall) FROM table_name_47 WHERE position = "defensive tackle" AND round = 4 AND pick__number < 36 | Position of defensive tackle, and a Round of 4, and a Pick # smaller than 36 has what overall average? | CREATE TABLE table_name_47 (overall INTEGER, pick__number VARCHAR, position VARCHAR, round VARCHAR) |
SELECT finish FROM table_name_82 WHERE team = "chip ganassi racing" AND year > 2010 AND start = "17" | What is the finish for the chip ganassi racing team that was later than 2010 and a Start of 17? | CREATE TABLE table_name_82 (finish VARCHAR, start VARCHAR, team VARCHAR, year VARCHAR) |
SELECT network FROM table_name_99 WHERE name = "bbtv channel 7" | What's the network of BBTV Channel 7? | CREATE TABLE table_name_99 (network VARCHAR, name VARCHAR) |
SELECT visitor FROM table_name_58 WHERE date = "january 1" | What is the Visitor on January 1? | CREATE TABLE table_name_58 (visitor VARCHAR, date VARCHAR) |
SELECT MAX(wickets) FROM table_17900317_5 WHERE best = "4/22" | Name the most wickets for best is 4/22 | CREATE TABLE table_17900317_5 (wickets INTEGER, best VARCHAR) |
SELECT COUNT(year) FROM table_name_76 WHERE name = "prof. aditya naraian purohit" | What is the total number of years that prof. aditya naraian purohit won? | CREATE TABLE table_name_76 (year VARCHAR, name VARCHAR) |
SELECT fri_3_june FROM table_29218221_2 WHERE wed_1_june = "18' 22.66 123.182mph" | What is the Fri 3 June time for the rider with a Weds 1 June time of 18' 22.66 123.182mph? | CREATE TABLE table_29218221_2 (fri_3_june VARCHAR, wed_1_june VARCHAR) |
SELECT lost FROM table_name_26 WHERE points_for = "208" | How many losses were there with 208 points? | CREATE TABLE table_name_26 (lost VARCHAR, points_for VARCHAR) |
SELECT winnings FROM table_27781212_1 WHERE driver = "Jeff Gordon" | how many winnings does jeff gordon have? | CREATE TABLE table_27781212_1 (winnings VARCHAR, driver VARCHAR) |
SELECT tournament FROM table_name_87 WHERE 2010 = "a" | Which tournament had a 2010 result of A? | CREATE TABLE table_name_87 (tournament VARCHAR) |
SELECT east FROM table_name_83 WHERE west = "ev landsberg" | What is the east with ev landsberg as the west? | CREATE TABLE table_name_83 (east VARCHAR, west VARCHAR) |
SELECT MIN(attendance) FROM table_name_30 WHERE week = 14 | What is the lowest attendance with week 14? | CREATE TABLE table_name_30 (attendance INTEGER, week VARCHAR) |
SELECT SUM(bronze) FROM table_name_67 WHERE gold = 1 AND silver > 3 | What is the total amount of bronze medals a team with 1 gold and more than 3 silver medals has? | CREATE TABLE table_name_67 (bronze INTEGER, gold VARCHAR, silver VARCHAR) |
SELECT COUNT(district) FROM table_25030512_41 WHERE incumbent = "Tom Marino" | Name the number of district for tom marino | CREATE TABLE table_25030512_41 (district VARCHAR, incumbent VARCHAR) |
SELECT COUNT(no_in_season) FROM table_16581695_3 WHERE production_code = 204 | How many seasons have a production code of 204? | CREATE TABLE table_16581695_3 (no_in_season VARCHAR, production_code VARCHAR) |
SELECT date FROM table_name_79 WHERE venue = "lake oval" | When is the event at lake oval? | CREATE TABLE table_name_79 (date VARCHAR, venue VARCHAR) |
SELECT population__2011_ FROM table_2562572_22 WHERE cyrillic_name_other_names = "Бачки Моноштор (Croatian: Monoštor)" | Name the population for бачки моноштор (croatian: monoštor) | CREATE TABLE table_2562572_22 (population__2011_ VARCHAR, cyrillic_name_other_names VARCHAR) |
SELECT title FROM table_name_86 WHERE content = "mysticism, spiritualism" AND translation = "the minaret of light" | Which title has content including mysticism, spiritualism, and a translation of the minaret of light? | CREATE TABLE table_name_86 (title VARCHAR, content VARCHAR, translation VARCHAR) |
SELECT SUM(grid) FROM table_name_22 WHERE laps = 24 AND rider = "marco melandri" | Which Grid has Laps of 24, and a Rider of marco melandri? | CREATE TABLE table_name_22 (grid INTEGER, laps VARCHAR, rider VARCHAR) |
SELECT nationality FROM table_name_47 WHERE position = "guard" AND school_club_team = "bowling green" | What is the nationality for the guard position from Bowling Green? | CREATE TABLE table_name_47 (nationality VARCHAR, position VARCHAR, school_club_team VARCHAR) |
SELECT iata FROM table_name_56 WHERE city = "delhi" | What is the IATA code for Delhi? | CREATE TABLE table_name_56 (iata VARCHAR, city VARCHAR) |
SELECT time FROM table_name_5 WHERE event = "team pursuit (8 laps)" | What was the record setting time in the team pursuit (8 laps) event? | CREATE TABLE table_name_5 (time VARCHAR, event VARCHAR) |
SELECT 1994 FROM table_name_92 WHERE 1997 = "qf" AND 1995 = "3r" | What is the 1994 finish associated with a 1995 finish of 3R and 1997 of QF? | CREATE TABLE table_name_92 (Id VARCHAR) |
SELECT year FROM table_name_42 WHERE status = "nominated" AND film = "the last samurai" | What year was The Last Samurai nominated? | CREATE TABLE table_name_42 (year VARCHAR, status VARCHAR, film VARCHAR) |
SELECT score FROM table_name_66 WHERE date = "august 5" | What was the score of the game played on August 5? | CREATE TABLE table_name_66 (score VARCHAR, date VARCHAR) |
SELECT period FROM table_24565004_19 WHERE nationality² = "Uruguay" | Name the period for uruguay | CREATE TABLE table_24565004_19 (period VARCHAR, nationality² VARCHAR) |
SELECT finalists FROM table_name_79 WHERE tournament = "miami" | What is Finalists, when Tournament is Miami? | CREATE TABLE table_name_79 (finalists VARCHAR, tournament VARCHAR) |
SELECT player FROM table_name_71 WHERE nationality = "united states" AND position = "small forward" AND years_for_grizzlies = "1999-2002" | Who was the 1999-2002 Years for Grizzlies small forward Player who was from the United States? | CREATE TABLE table_name_71 (player VARCHAR, years_for_grizzlies VARCHAR, nationality VARCHAR, position VARCHAR) |
SELECT COUNT(population__2011_) FROM table_name_49 WHERE population__2006_ = 120 | What is the total number of people in 2011 speaking the mother tongue language spoken by 120 in 2006? | CREATE TABLE table_name_49 (population__2011_ VARCHAR, population__2006_ VARCHAR) |
SELECT country FROM table_name_67 WHERE base = "ljubljana" | what is the country when the base is ljubljana? | CREATE TABLE table_name_67 (country VARCHAR, base VARCHAR) |
SELECT league AS Rank FROM table_name_54 WHERE year > 2011 AND canada___usa_rank = "46th" | After the year 2011, when the Canada - USA Rank was 46th, what was the League Rank? | CREATE TABLE table_name_54 (league VARCHAR, year VARCHAR, canada___usa_rank VARCHAR) |
SELECT game_site FROM table_14984078_1 WHERE opponent = "Detroit Lions" | Where did the team play the Detroit Lions? | CREATE TABLE table_14984078_1 (game_site VARCHAR, opponent VARCHAR) |
SELECT COUNT(nationality_sponsors) FROM table_23851574_2 WHERE mirror_type = "Schmidt UV" | How many nationalities/sponsors for mirror/type schmidt uv? | CREATE TABLE table_23851574_2 (nationality_sponsors VARCHAR, mirror_type VARCHAR) |
SELECT MAX(founded) FROM table_name_81 WHERE enrollment = 42 OFFSET 708 | What is the most recent year founded with an enrollment of 42,708? | CREATE TABLE table_name_81 (founded INTEGER, enrollment VARCHAR) |
SELECT proto_oceanic FROM table_name_86 WHERE animal = "louse" | What proto-oceanic has louse as the animal? | CREATE TABLE table_name_86 (proto_oceanic VARCHAR, animal VARCHAR) |
SELECT visitor FROM table_name_39 WHERE home = "suns" | Who was the visiting team when the Suns were the home team? | CREATE TABLE table_name_39 (visitor VARCHAR, home VARCHAR) |
SELECT AVG(bronze) FROM table_name_78 WHERE rank > 6 AND nation = "italy (ita)" AND total < 1 | What is the average Bronze, when Rank is greater than 6, when Nation is Italy (ITA), and when Total is less than 1? | CREATE TABLE table_name_78 (bronze INTEGER, total VARCHAR, rank VARCHAR, nation VARCHAR) |
SELECT reason_for_change FROM table_1694492_2 WHERE district = "New York 10th" | In district New York 10th, what was the reason for change? | CREATE TABLE table_1694492_2 (reason_for_change VARCHAR, district VARCHAR) |
SELECT player FROM table_name_29 WHERE year_s__won = "1989" | What Player won the PGA in 1989? | CREATE TABLE table_name_29 (player VARCHAR, year_s__won VARCHAR) |
SELECT COUNT(grid) FROM table_name_11 WHERE manufacturer = "ducati" AND rider = "casey stoner" AND laps < 27 | How many grids does Ducati have with Casey Stoner as a rider with fewer than 27 laps? | CREATE TABLE table_name_11 (grid VARCHAR, laps VARCHAR, manufacturer VARCHAR, rider VARCHAR) |
SELECT kk___5 FROM table_name_38 WHERE kk___3 = "310" | What is KK -5 if KK - 3 is 310? | CREATE TABLE table_name_38 (kk___5 VARCHAR, kk___3 VARCHAR) |
SELECT week FROM table_name_4 WHERE date = "december 5, 1959" | Week that has a Date of december 5, 1959 had what week? | CREATE TABLE table_name_4 (week VARCHAR, date VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.