Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
47,600
<question>: Which method did pride bushido 10 have ? <context>: CREATE TABLE table_name_56 (method VARCHAR, event VARCHAR)
SELECT method FROM table_name_56 WHERE event = "pride bushido 10"
47,601
<question>: Which 2008–09 has an Event of autumn gold? <context>: CREATE TABLE table_name_13 (event VARCHAR)
SELECT 2008 AS _09 FROM table_name_13 WHERE event = "autumn gold"
47,602
<question>: Which Drawn has a Team of internacional-sp? <context>: CREATE TABLE table_name_77 (drawn INTEGER, team VARCHAR)
SELECT SUM(drawn) FROM table_name_77 WHERE team = "internacional-sp"
47,603
<question>: How much Lost has a Drawn larger than 5, and a Played larger than 18? <context>: CREATE TABLE table_name_78 (lost INTEGER, drawn VARCHAR, played VARCHAR)
SELECT SUM(lost) FROM table_name_78 WHERE drawn > 5 AND played > 18
47,604
<question>: Which Drawn is the highest one that has a Played smaller than 18? <context>: CREATE TABLE table_name_36 (drawn INTEGER, played INTEGER)
SELECT MAX(drawn) FROM table_name_36 WHERE played < 18
47,605
<question>: Which Drawn is the highest one that has an Against larger than 15, and Points smaller than 15, and a Lost smaller than 9? <context>: CREATE TABLE table_name_39 (drawn INTEGER, lost VARCHAR, against VARCHAR, points VARCHAR)
SELECT MAX(drawn) FROM table_name_39 WHERE against > 15 AND points < 15 AND lost < 9
47,606
<question>: What's the least amount of floors at 921 sw sixth avenue? <context>: CREATE TABLE table_name_41 (floors INTEGER, street_address VARCHAR)
SELECT MIN(floors) FROM table_name_41 WHERE street_address = "921 sw sixth avenue"
47,607
<question>: What's the address of the union bank of California tower? <context>: CREATE TABLE table_name_27 (street_address VARCHAR, name VARCHAR)
SELECT street_address FROM table_name_27 WHERE name = "union bank of california tower"
47,608
<question>: What were the years that the building at 200 sw harrison was considered to be the tallest building? <context>: CREATE TABLE table_name_3 (years_as_tallest VARCHAR, street_address VARCHAR)
SELECT years_as_tallest FROM table_name_3 WHERE street_address = "200 sw harrison"
47,609
<question>: What is the smallest position with less than 7 points piloted by Didier Hauss? <context>: CREATE TABLE table_name_29 (position INTEGER, points VARCHAR, pilot VARCHAR)
SELECT MIN(position) FROM table_name_29 WHERE points < 7 AND pilot = "didier hauss"
47,610
<question>: During what Season was the Final Venue at Sandy Lane with Kiveton Park as the Winner? <context>: CREATE TABLE table_name_62 (season VARCHAR, winner VARCHAR, final_venue VARCHAR)
SELECT season FROM table_name_62 WHERE winner = "kiveton park" AND final_venue = "sandy lane"
47,611
<question>: What was the Runner-up during the 2005-06 Season with Kiveton Park as the Winner? <context>: CREATE TABLE table_name_88 (runner_up VARCHAR, winner VARCHAR, season VARCHAR)
SELECT runner_up FROM table_name_88 WHERE winner = "kiveton park" AND season = "2005-06"
47,612
<question>: What was the Result in Green Lane with Kirkburton as the Runner-up? <context>: CREATE TABLE table_name_94 (result VARCHAR, runner_up VARCHAR, final_venue VARCHAR)
SELECT result FROM table_name_94 WHERE runner_up = "kirkburton" AND final_venue = "green lane"
47,613
<question>: What was the Result in the 2005-06 Season? <context>: CREATE TABLE table_name_9 (result VARCHAR, season VARCHAR)
SELECT result FROM table_name_9 WHERE season = "2005-06"
47,614
<question>: What was the Final Venue having Sheffield Reserves as the Winner? <context>: CREATE TABLE table_name_17 (final_venue VARCHAR, winner VARCHAR)
SELECT final_venue FROM table_name_17 WHERE winner = "sheffield reserves"
47,615
<question>: What is the total number of Round that has a Time of 6:04? <context>: CREATE TABLE table_name_85 (round INTEGER, time VARCHAR)
SELECT SUM(round) FROM table_name_85 WHERE time = "6:04"
47,616
<question>: What Round has the Method of Submission (Single Wing Choke)? <context>: CREATE TABLE table_name_55 (round VARCHAR, method VARCHAR)
SELECT round FROM table_name_55 WHERE method = "submission (single wing choke)"
47,617
<question>: Which Class has a Frequency MHz larger than 91.5, and a City of license of hyannis, nebraska? <context>: CREATE TABLE table_name_12 (class VARCHAR, frequency_mhz VARCHAR, city_of_license VARCHAR)
SELECT class FROM table_name_12 WHERE frequency_mhz > 91.5 AND city_of_license = "hyannis, nebraska"
47,618
<question>: Which Class has a ERP W larger than 205, and a Frequency MHz smaller than 93.9, and a Call sign of k210cb? <context>: CREATE TABLE table_name_54 (class VARCHAR, call_sign VARCHAR, erp_w VARCHAR, frequency_mhz VARCHAR)
SELECT class FROM table_name_54 WHERE erp_w > 205 AND frequency_mhz < 93.9 AND call_sign = "k210cb"
47,619
<question>: Which Frequency MHz that has a ERP W larger than 205, and a Call sign of k230ap? <context>: CREATE TABLE table_name_52 (frequency_mhz INTEGER, erp_w VARCHAR, call_sign VARCHAR)
SELECT MAX(frequency_mhz) FROM table_name_52 WHERE erp_w > 205 AND call_sign = "k230ap"
47,620
<question>: Which Frequency MHz has a ERP W of 250? <context>: CREATE TABLE table_name_36 (frequency_mhz INTEGER, erp_w VARCHAR)
SELECT MAX(frequency_mhz) FROM table_name_36 WHERE erp_w = 250
47,621
<question>: What was the date of game 81? <context>: CREATE TABLE table_name_40 (date VARCHAR, game VARCHAR)
SELECT date FROM table_name_40 WHERE game = 81
47,622
<question>: WHich Surface has an Opponent of gustavo kuerten? <context>: CREATE TABLE table_name_13 (surface VARCHAR, opponent VARCHAR)
SELECT surface FROM table_name_13 WHERE opponent = "gustavo kuerten"
47,623
<question>: Which Surface has a Tournament of st. petersburg , russia? <context>: CREATE TABLE table_name_53 (surface VARCHAR, tournament VARCHAR)
SELECT surface FROM table_name_53 WHERE tournament = "st. petersburg , russia"
47,624
<question>: When is the Surface of hard (i), and a Tournament of brighton , united kingdom taken? <context>: CREATE TABLE table_name_11 (date VARCHAR, surface VARCHAR, tournament VARCHAR)
SELECT date FROM table_name_11 WHERE surface = "hard (i)" AND tournament = "brighton , united kingdom"
47,625
<question>: Which Opponent has a Score of 3–6, 5–7? <context>: CREATE TABLE table_name_52 (opponent VARCHAR, score VARCHAR)
SELECT opponent FROM table_name_52 WHERE score = "3–6, 5–7"
47,626
<question>: When has a Tournament of palermo , italy? <context>: CREATE TABLE table_name_17 (date VARCHAR, tournament VARCHAR)
SELECT date FROM table_name_17 WHERE tournament = "palermo , italy"
47,627
<question>: Which Opponent is on 29 september 1997? <context>: CREATE TABLE table_name_70 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_70 WHERE date = "29 september 1997"
47,628
<question>: Which constellation has hd 75732 as a destignation HD? <context>: CREATE TABLE table_name_38 (constellation VARCHAR, designation_hd VARCHAR)
SELECT constellation FROM table_name_38 WHERE designation_hd = "hd 75732"
47,629
<question>: What message has hd 186408 as a designation HD? <context>: CREATE TABLE table_name_75 (message VARCHAR, designation_hd VARCHAR)
SELECT message FROM table_name_75 WHERE designation_hd = "hd 186408"
47,630
<question>: What date sent has cygnus as a constellation, and hd 190360 as a designation HD? <context>: CREATE TABLE table_name_65 (date_sent VARCHAR, constellation VARCHAR, designation_hd VARCHAR)
SELECT date_sent FROM table_name_65 WHERE constellation = "cygnus" AND designation_hd = "hd 190360"
47,631
<question>: What date sent has orion as the constellation? <context>: CREATE TABLE table_name_63 (date_sent VARCHAR, constellation VARCHAR)
SELECT date_sent FROM table_name_63 WHERE constellation = "orion"
47,632
<question>: Which constellation has cosmic call 1 as the message, and an arrival date of october 2067? <context>: CREATE TABLE table_name_27 (constellation VARCHAR, message VARCHAR, arrival_date VARCHAR)
SELECT constellation FROM table_name_27 WHERE message = "cosmic call 1" AND arrival_date = "october 2067"
47,633
<question>: What date sent has cancer as the constellation? <context>: CREATE TABLE table_name_29 (date_sent VARCHAR, constellation VARCHAR)
SELECT date_sent FROM table_name_29 WHERE constellation = "cancer"
47,634
<question>: Which Conceded is the highest one that has Points larger than 17, and a Team of guaraní, and Losses smaller than 6? <context>: CREATE TABLE table_name_39 (conceded INTEGER, losses VARCHAR, points VARCHAR, team VARCHAR)
SELECT MAX(conceded) FROM table_name_39 WHERE points > 17 AND team = "guaraní" AND losses < 6
47,635
<question>: Which Conceded has Draws smaller than 5, and a Position larger than 6? <context>: CREATE TABLE table_name_39 (conceded INTEGER, draws VARCHAR, position VARCHAR)
SELECT SUM(conceded) FROM table_name_39 WHERE draws < 5 AND position > 6
47,636
<question>: How many Points have a Played larger than 18? <context>: CREATE TABLE table_name_65 (points VARCHAR, played INTEGER)
SELECT COUNT(points) FROM table_name_65 WHERE played > 18
47,637
<question>: Which Scored has a Team of recoleta? <context>: CREATE TABLE table_name_81 (scored INTEGER, team VARCHAR)
SELECT SUM(scored) FROM table_name_81 WHERE team = "recoleta"
47,638
<question>: Which Notes have a Date of 2008-01-27? <context>: CREATE TABLE table_name_21 (notes VARCHAR, date VARCHAR)
SELECT notes FROM table_name_21 WHERE date = "2008-01-27"
47,639
<question>: Which Date has a Distance of 3,000 m? <context>: CREATE TABLE table_name_63 (date VARCHAR, distance VARCHAR)
SELECT date FROM table_name_63 WHERE distance = "3,000 m"
47,640
<question>: Which Distance has a Time of men's speed skating? <context>: CREATE TABLE table_name_46 (distance VARCHAR, time VARCHAR)
SELECT distance FROM table_name_46 WHERE time = "men's speed skating"
47,641
<question>: Which Location has a Time of time? <context>: CREATE TABLE table_name_89 (location VARCHAR)
SELECT location FROM table_name_89 WHERE "time" = "time"
47,642
<question>: Which Location has a Distance of 10,000 m? <context>: CREATE TABLE table_name_59 (location VARCHAR, distance VARCHAR)
SELECT location FROM table_name_59 WHERE distance = "10,000 m"
47,643
<question>: Which Date has a Distance of 500 m? <context>: CREATE TABLE table_name_3 (date VARCHAR, distance VARCHAR)
SELECT date FROM table_name_3 WHERE distance = "500 m"
47,644
<question>: What was the score for the June 22 game with attendance 0? <context>: CREATE TABLE table_name_44 (score VARCHAR, date VARCHAR, attendance VARCHAR)
SELECT score FROM table_name_44 WHERE date = "june 22" AND attendance = 0
47,645
<question>: What type of surface was used for the carthage tournament on august 14, 1994? <context>: CREATE TABLE table_name_97 (surface VARCHAR, tournament VARCHAR, date VARCHAR)
SELECT surface FROM table_name_97 WHERE tournament = "carthage" AND date = "august 14, 1994"
47,646
<question>: Which tournament has marielle bruens for the opponent in the final? <context>: CREATE TABLE table_name_81 (tournament VARCHAR, opponent_in_the_final VARCHAR)
SELECT tournament FROM table_name_81 WHERE opponent_in_the_final = "marielle bruens"
47,647
<question>: What surface was used on may 13, 2007? <context>: CREATE TABLE table_name_19 (surface VARCHAR, date VARCHAR)
SELECT surface FROM table_name_19 WHERE date = "may 13, 2007"
47,648
<question>: Frequency MHz of 93.7 has what class? <context>: CREATE TABLE table_name_4 (class VARCHAR, frequency_mhz VARCHAR)
SELECT class FROM table_name_4 WHERE frequency_mhz = 93.7
47,649
<question>: What is the average Entre Ríos Municipality with less than 9 Pojo Municipalities? <context>: CREATE TABLE table_name_99 (entre_ríos_municipality INTEGER, pojo_municipality INTEGER)
SELECT AVG(entre_ríos_municipality) FROM table_name_99 WHERE pojo_municipality < 9
47,650
<question>: What is Pocona Municipalities with 72 Totora municipalities and more than 74 pojo municipalities? <context>: CREATE TABLE table_name_98 (pocona_municipality VARCHAR, totora_municipality VARCHAR, pojo_municipality VARCHAR)
SELECT COUNT(pocona_municipality) FROM table_name_98 WHERE totora_municipality = 72 AND pojo_municipality > 74
47,651
<question>: What is the highest chimore municipalities with 9 pojo municipalities and less than 7 totora municipalities? <context>: CREATE TABLE table_name_76 (chimoré_municipality INTEGER, pojo_municipality VARCHAR, totora_municipality VARCHAR)
SELECT MAX(chimoré_municipality) FROM table_name_76 WHERE pojo_municipality = 9 AND totora_municipality < 7
47,652
<question>: Which Copa Libertadores 1996 has a Team of estudiantes? <context>: CREATE TABLE table_name_10 (copa_libertadores_1996 VARCHAR, team VARCHAR)
SELECT copa_libertadores_1996 FROM table_name_10 WHERE team = "estudiantes"
47,653
<question>: which CONMEBOL 1995 has a Supercopa 1995 of sf? <context>: CREATE TABLE table_name_86 (conmebol_1995 VARCHAR, supercopa_1995 VARCHAR)
SELECT conmebol_1995 FROM table_name_86 WHERE supercopa_1995 = "sf"
47,654
<question>: which Copa Libertadores 1996 has round 1 Supercopa 1995 and argentinos juniors team ? <context>: CREATE TABLE table_name_10 (copa_libertadores_1996 VARCHAR, supercopa_1995 VARCHAR, team VARCHAR)
SELECT copa_libertadores_1996 FROM table_name_10 WHERE supercopa_1995 = "round 1" AND team = "argentinos juniors"
47,655
<question>: Which CONMEBOL 1995 has river plate team? <context>: CREATE TABLE table_name_61 (conmebol_1995 VARCHAR, team VARCHAR)
SELECT conmebol_1995 FROM table_name_61 WHERE team = "river plate"
47,656
<question>: Which Team has a round 1 CONMEBOL 1995? <context>: CREATE TABLE table_name_28 (team VARCHAR, conmebol_1995 VARCHAR)
SELECT team FROM table_name_28 WHERE conmebol_1995 = "round 1"
47,657
<question>: Which Date has an Attendance of 57,013? <context>: CREATE TABLE table_name_36 (date VARCHAR, attendance VARCHAR)
SELECT date FROM table_name_36 WHERE attendance = "57,013"
47,658
<question>: Which Date has a TV Time of cbs 1:00pm, and a Game Site of rca dome, and an Opponent of cincinnati bengals? <context>: CREATE TABLE table_name_7 (date VARCHAR, opponent VARCHAR, tv_time VARCHAR, game_site VARCHAR)
SELECT date FROM table_name_7 WHERE tv_time = "cbs 1:00pm" AND game_site = "rca dome" AND opponent = "cincinnati bengals"
47,659
<question>: Which TV Time has a Date of december 26, 1999? <context>: CREATE TABLE table_name_63 (tv_time VARCHAR, date VARCHAR)
SELECT tv_time FROM table_name_63 WHERE date = "december 26, 1999"
47,660
<question>: Which Game Site has a Date of october 17, 1999? <context>: CREATE TABLE table_name_1 (game_site VARCHAR, date VARCHAR)
SELECT game_site FROM table_name_1 WHERE date = "october 17, 1999"
47,661
<question>: what's the result with streak of won 6? <context>: CREATE TABLE table_name_21 (result VARCHAR, streak VARCHAR)
SELECT result FROM table_name_21 WHERE streak = "won 6"
47,662
<question>: What was the 2nd leg score having an aggregate score of 4-2? <context>: CREATE TABLE table_name_88 (aggregate VARCHAR)
SELECT 2 AS nd_leg FROM table_name_88 WHERE aggregate = "4-2"
47,663
<question>: What was the home team for the 2nd leg of the match having an aggregate of 2-3? <context>: CREATE TABLE table_name_59 (home__2nd_leg_ VARCHAR, aggregate VARCHAR)
SELECT home__2nd_leg_ FROM table_name_59 WHERE aggregate = "2-3"
47,664
<question>: What is the lowest number of played games of the team with less than 12 drawns, 41 against, and less than 69 points? <context>: CREATE TABLE table_name_58 (played INTEGER, points VARCHAR, drawn VARCHAR, against VARCHAR)
SELECT MIN(played) FROM table_name_58 WHERE drawn < 12 AND against = 41 AND points < 69
47,665
<question>: What is the highest number of played of the team with less than 11 losses and less than 12 drawns? <context>: CREATE TABLE table_name_9 (played INTEGER, lost VARCHAR, drawn VARCHAR)
SELECT MAX(played) FROM table_name_9 WHERE lost < 11 AND drawn < 12
47,666
<question>: What is the sum of againsts the team with less than 38 played had? <context>: CREATE TABLE table_name_86 (against INTEGER, played INTEGER)
SELECT SUM(against) FROM table_name_86 WHERE played < 38
47,667
<question>: What is the average drawn of the team with a difference of 4 and more than 13 losses? <context>: CREATE TABLE table_name_30 (drawn INTEGER, difference VARCHAR, lost VARCHAR)
SELECT AVG(drawn) FROM table_name_30 WHERE difference = "4" AND lost > 13
47,668
<question>: What is the position of the team with more than 16 losses and an against greater than 74? <context>: CREATE TABLE table_name_43 (position INTEGER, lost VARCHAR, against VARCHAR)
SELECT SUM(position) FROM table_name_43 WHERE lost > 16 AND against > 74
47,669
<question>: What is the highest number of points team vitória, which had more than 38 played, had? <context>: CREATE TABLE table_name_92 (points INTEGER, team VARCHAR, played VARCHAR)
SELECT MAX(points) FROM table_name_92 WHERE team = "vitória" AND played > 38
47,670
<question>: When the A Score was larger than 5.933 with a total of 19.833, what nation was this? <context>: CREATE TABLE table_name_40 (nation VARCHAR, a_score VARCHAR, total VARCHAR)
SELECT nation FROM table_name_40 WHERE a_score > 5.933 AND total = 19.833
47,671
<question>: How large was the total when the E Score was greater than 9.35 and T Score was less than 4? <context>: CREATE TABLE table_name_35 (total INTEGER, e_score VARCHAR, t_score VARCHAR)
SELECT MAX(total) FROM table_name_35 WHERE e_score > 9.35 AND t_score < 4
47,672
<question>: What was the quantity of the A Score when the E Score was larger than 9.566 in the Greece and the T score was more than 4? <context>: CREATE TABLE table_name_54 (a_score INTEGER, t_score VARCHAR, e_score VARCHAR, nation VARCHAR)
SELECT SUM(a_score) FROM table_name_54 WHERE e_score > 9.566 AND nation = "greece" AND t_score > 4
47,673
<question>: What was the total of A Score when the E Score was greater than 9.383, total was less than 19.716 and the T Score was larger than 4? <context>: CREATE TABLE table_name_74 (a_score INTEGER, t_score VARCHAR, e_score VARCHAR, total VARCHAR)
SELECT SUM(a_score) FROM table_name_74 WHERE e_score > 9.383 AND total < 19.716 AND t_score > 4
47,674
<question>: Which city has a frequency of 104.5 fm? <context>: CREATE TABLE table_name_1 (city_of_license VARCHAR, frequency_mhz VARCHAR)
SELECT city_of_license FROM table_name_1 WHERE frequency_mhz = "104.5 fm"
47,675
<question>: What is the frequency of Walterboro, SC? <context>: CREATE TABLE table_name_74 (frequency_mhz VARCHAR, city_of_license VARCHAR)
SELECT frequency_mhz FROM table_name_74 WHERE city_of_license = "walterboro, sc"
47,676
<question>: What is the FCC information of 104.5 fm frequency? <context>: CREATE TABLE table_name_68 (fcc_info VARCHAR, frequency_mhz VARCHAR)
SELECT fcc_info FROM table_name_68 WHERE frequency_mhz = "104.5 fm"
47,677
<question>: What is Charleston, SC ERP W? <context>: CREATE TABLE table_name_2 (erp_w VARCHAR, city_of_license VARCHAR)
SELECT erp_w FROM table_name_2 WHERE city_of_license = "charleston, sc"
47,678
<question>: What does the ERP W sum equal for 105.1 fm frequency? <context>: CREATE TABLE table_name_66 (erp_w INTEGER, frequency_mhz VARCHAR)
SELECT SUM(erp_w) FROM table_name_66 WHERE frequency_mhz = "105.1 fm"
47,679
<question>: What is surfside beach, SC frequency? <context>: CREATE TABLE table_name_79 (frequency_mhz VARCHAR, city_of_license VARCHAR)
SELECT frequency_mhz FROM table_name_79 WHERE city_of_license = "surfside beach, sc"
47,680
<question>: What is the player from Japan's To Par? <context>: CREATE TABLE table_name_30 (to_par VARCHAR, country VARCHAR)
SELECT to_par FROM table_name_30 WHERE country = "japan"
47,681
<question>: What is the player from England's To Par? <context>: CREATE TABLE table_name_68 (to_par VARCHAR, country VARCHAR)
SELECT to_par FROM table_name_68 WHERE country = "england"
47,682
<question>: What is the player from England's score? <context>: CREATE TABLE table_name_98 (score VARCHAR, country VARCHAR)
SELECT score FROM table_name_98 WHERE country = "england"
47,683
<question>: Which country does Adam Scott play for? <context>: CREATE TABLE table_name_39 (country VARCHAR, player VARCHAR)
SELECT country FROM table_name_39 WHERE player = "adam scott"
47,684
<question>: Name the ICAO for lilongwe international airport <context>: CREATE TABLE table_name_43 (icao VARCHAR, airport VARCHAR)
SELECT icao FROM table_name_43 WHERE airport = "lilongwe international airport"
47,685
<question>: Name the airport for ICAO of flls <context>: CREATE TABLE table_name_6 (airport VARCHAR, icao VARCHAR)
SELECT airport FROM table_name_6 WHERE icao = "flls"
47,686
<question>: Name the ICAO for lilongwe international airport <context>: CREATE TABLE table_name_74 (icao VARCHAR, airport VARCHAR)
SELECT icao FROM table_name_74 WHERE airport = "lilongwe international airport"
47,687
<question>: Name the ICAO for julius nyerere international airport <context>: CREATE TABLE table_name_79 (icao VARCHAR, airport VARCHAR)
SELECT icao FROM table_name_79 WHERE airport = "julius nyerere international airport"
47,688
<question>: Name the country for johannesburg <context>: CREATE TABLE table_name_35 (country VARCHAR, city VARCHAR)
SELECT country FROM table_name_35 WHERE city = "johannesburg"
47,689
<question>: Name the city for IATA of llw <context>: CREATE TABLE table_name_32 (city VARCHAR, iata VARCHAR)
SELECT city FROM table_name_32 WHERE iata = "llw"
47,690
<question>: What is the name of the home time with a 10 tie no? <context>: CREATE TABLE table_name_5 (home_team VARCHAR, tie_no VARCHAR)
SELECT home_team FROM table_name_5 WHERE tie_no = "10"
47,691
<question>: What was the date of the game that was played against the away team of York City? <context>: CREATE TABLE table_name_7 (attendance VARCHAR, away_team VARCHAR)
SELECT attendance FROM table_name_7 WHERE away_team = "york city"
47,692
<question>: What group of juventus had an attendance larger than 47,786? <context>: CREATE TABLE table_name_2 (group_position VARCHAR, opponents VARCHAR, attendance VARCHAR)
SELECT group_position FROM table_name_2 WHERE opponents = "juventus" AND attendance > 47 OFFSET 786
47,693
<question>: Name the average week for result of l 28–17 <context>: CREATE TABLE table_name_56 (week INTEGER, result VARCHAR)
SELECT AVG(week) FROM table_name_56 WHERE result = "l 28–17"
47,694
<question>: What was the score on April 12? <context>: CREATE TABLE table_name_48 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_48 WHERE date = "april 12"
47,695
<question>: Which 2009 has a 2008 of A, and a 2010 of 4r? <context>: CREATE TABLE table_name_84 (Id VARCHAR)
SELECT 2009 FROM table_name_84 WHERE 2008 = "a" AND 2010 = "4r"
47,696
<question>: Which 2009 has a 2008 of wta premier mandatory tournaments? <context>: CREATE TABLE table_name_64 (Id VARCHAR)
SELECT 2009 FROM table_name_64 WHERE 2008 = "wta premier mandatory tournaments"
47,697
<question>: Which 2010 has a Tournament of australian open? <context>: CREATE TABLE table_name_80 (tournament VARCHAR)
SELECT 2010 FROM table_name_80 WHERE tournament = "australian open"
47,698
<question>: Which 2007 has a 2006 of A, and a Tournament of canada? <context>: CREATE TABLE table_name_8 (tournament VARCHAR)
SELECT 2007 FROM table_name_8 WHERE 2006 = "a" AND tournament = "canada"
47,699
<question>: Which 2009 has a 2006 of A, and a 2011 of sf? <context>: CREATE TABLE table_name_83 (Id VARCHAR)
SELECT 2009 FROM table_name_83 WHERE 2006 = "a" AND 2011 = "sf"