Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
48,000
<question>: When is the Competition of friendly match with a Result of 2–1? <context>: CREATE TABLE table_name_47 (date VARCHAR, competition VARCHAR, result VARCHAR)
SELECT date FROM table_name_47 WHERE competition = "friendly match" AND result = "2–1"
48,001
<question>: Which Venue has a Result of 2–0? <context>: CREATE TABLE table_name_2 (venue VARCHAR, result VARCHAR)
SELECT venue FROM table_name_2 WHERE result = "2–0"
48,002
<question>: What is the Score of 2007 afc asian cup qualification with a Result of 8–0? <context>: CREATE TABLE table_name_81 (score VARCHAR, competition VARCHAR, result VARCHAR)
SELECT score FROM table_name_81 WHERE competition = "2007 afc asian cup qualification" AND result = "8–0"
48,003
<question>: Which Competition has a Result of 3–1? <context>: CREATE TABLE table_name_54 (competition VARCHAR, result VARCHAR)
SELECT competition FROM table_name_54 WHERE result = "3–1"
48,004
<question>: What was the Indians' record during the game that had 31,467 in attendance? <context>: CREATE TABLE table_name_82 (record VARCHAR, attendance VARCHAR)
SELECT record FROM table_name_82 WHERE attendance = "31,467"
48,005
<question>: what year is 4:00 long <context>: CREATE TABLE table_name_16 (year VARCHAR, length VARCHAR)
SELECT COUNT(year) FROM table_name_16 WHERE length = "4:00"
48,006
<question>: What round on average was a defensive tackle selected? <context>: CREATE TABLE table_name_87 (round INTEGER, position VARCHAR)
SELECT AVG(round) FROM table_name_87 WHERE position = "defensive tackle"
48,007
<question>: What is the lowest total for the silver less than 1, and a rank more than 5, more than 1 bronze? <context>: CREATE TABLE table_name_71 (total INTEGER, bronze VARCHAR, silver VARCHAR, rank VARCHAR)
SELECT MIN(total) FROM table_name_71 WHERE silver < 1 AND rank > 5 AND bronze > 1
48,008
<question>: Who ha the gold and 1 bronze, and more than 0 silver? <context>: CREATE TABLE table_name_58 (gold VARCHAR, bronze VARCHAR, silver VARCHAR)
SELECT gold FROM table_name_58 WHERE bronze = 1 AND silver > 0
48,009
<question>: Who has a total of the Bronze less than 4, gold more than 0, and no silver? <context>: CREATE TABLE table_name_30 (bronze INTEGER, silver VARCHAR, total VARCHAR, gold VARCHAR)
SELECT SUM(bronze) FROM table_name_30 WHERE total < 4 AND gold > 0 AND silver = 0
48,010
<question>: What's the Points average with a Lost of 21, and Position of 22? <context>: CREATE TABLE table_name_36 (points INTEGER, lost VARCHAR, position VARCHAR)
SELECT AVG(points) FROM table_name_36 WHERE lost = 21 AND position = 22
48,011
<question>: What's the total Lost that has a Played that's larger than 42? <context>: CREATE TABLE table_name_35 (lost INTEGER, played INTEGER)
SELECT SUM(lost) FROM table_name_35 WHERE played > 42
48,012
<question>: what's the relative value that contains a jyutping of daam3? <context>: CREATE TABLE table_name_72 (relative_value VARCHAR, jyutping VARCHAR)
SELECT relative_value FROM table_name_72 WHERE jyutping = "daam3"
48,013
<question>: What metric value has a jyutping of lei4? <context>: CREATE TABLE table_name_11 (metric_value VARCHAR, jyutping VARCHAR)
SELECT metric_value FROM table_name_11 WHERE jyutping = "lei4"
48,014
<question>: what's the imperial that contains a jyutping of cin4? <context>: CREATE TABLE table_name_51 (imperial_value VARCHAR, jyutping VARCHAR)
SELECT imperial_value FROM table_name_51 WHERE jyutping = "cin4"
48,015
<question>: What was the location that led to a record of 9-0-0? <context>: CREATE TABLE table_name_95 (location VARCHAR, record VARCHAR)
SELECT location FROM table_name_95 WHERE record = "9-0-0"
48,016
<question>: What is the lowest number of bronze medals with less than 2 silver medals and more than 1 medal in total for Uzbekistan? <context>: CREATE TABLE table_name_95 (bronze INTEGER, nation VARCHAR, silver VARCHAR, total VARCHAR)
SELECT MIN(bronze) FROM table_name_95 WHERE silver < 2 AND total > 1 AND nation = "uzbekistan"
48,017
<question>: What is the highest round with a pick# of 11, a position of offensive tackle, and overall less than 414? <context>: CREATE TABLE table_name_24 (round INTEGER, position VARCHAR, pick__number VARCHAR, overall VARCHAR)
SELECT MAX(round) FROM table_name_24 WHERE pick__number = 11 AND overall < 414 AND position = "offensive tackle"
48,018
<question>: What is the highest round with a pick# of 9, overll less than 468, and position of defensive back? <context>: CREATE TABLE table_name_77 (round INTEGER, overall VARCHAR, pick__number VARCHAR, position VARCHAR)
SELECT MAX(round) FROM table_name_77 WHERE pick__number = 9 AND position = "defensive back" AND overall < 468
48,019
<question>: What is the highest round with a guard position and an overall greater than 71? <context>: CREATE TABLE table_name_21 (round INTEGER, position VARCHAR, overall VARCHAR)
SELECT MAX(round) FROM table_name_21 WHERE position = "guard" AND overall > 71
48,020
<question>: Who has an overall greater than 414 with a pick# bigger than 9? <context>: CREATE TABLE table_name_81 (name VARCHAR, overall VARCHAR, pick__number VARCHAR)
SELECT name FROM table_name_81 WHERE overall > 414 AND pick__number > 9
48,021
<question>: What is the Gaelic name for an area less than 127 in Kintyre? <context>: CREATE TABLE table_name_63 (gaelic_name VARCHAR, area___ha__ VARCHAR, location VARCHAR)
SELECT gaelic_name FROM table_name_63 WHERE area___ha__ < 127 AND location = "kintyre"
48,022
<question>: What was the score on 7 february 2008? <context>: CREATE TABLE table_name_42 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_42 WHERE date = "7 february 2008"
48,023
<question>: What was the outcome on 13 may 2007? <context>: CREATE TABLE table_name_80 (outcome VARCHAR, date VARCHAR)
SELECT outcome FROM table_name_80 WHERE date = "13 may 2007"
48,024
<question>: What was the score on 3 may 2009? <context>: CREATE TABLE table_name_82 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_82 WHERE date = "3 may 2009"
48,025
<question>: Name the score for venue of jalan besar, singapore <context>: CREATE TABLE table_name_81 (score VARCHAR, venue VARCHAR)
SELECT score FROM table_name_81 WHERE venue = "jalan besar, singapore"
48,026
<question>: Name the score for 2 june 2008 <context>: CREATE TABLE table_name_97 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_97 WHERE date = "2 june 2008"
48,027
<question>: Which Opponent has a Game of 63? <context>: CREATE TABLE table_name_33 (opponent VARCHAR, game VARCHAR)
SELECT opponent FROM table_name_33 WHERE game = 63
48,028
<question>: which Record has a Score of 1–4? <context>: CREATE TABLE table_name_30 (record VARCHAR, score VARCHAR)
SELECT record FROM table_name_30 WHERE score = "1–4"
48,029
<question>: Which Record has a Points smaller than 62 and a February larger than 16, and a Score of 8–7? <context>: CREATE TABLE table_name_81 (record VARCHAR, score VARCHAR, points VARCHAR, february VARCHAR)
SELECT record FROM table_name_81 WHERE points < 62 AND february > 16 AND score = "8–7"
48,030
<question>: What is the total number of Issues has a End month of oct-80? <context>: CREATE TABLE table_name_60 (number_of_issues VARCHAR, end_month VARCHAR)
SELECT COUNT(number_of_issues) FROM table_name_60 WHERE end_month = "oct-80"
48,031
<question>: Which Indicia has anEnd month in feb-75? <context>: CREATE TABLE table_name_52 (indicia VARCHAR, end_month VARCHAR)
SELECT indicia FROM table_name_52 WHERE end_month = "feb-75"
48,032
<question>: Which HAAT has a Channels TV / RF of 31 (psip) 44 (uhf) <context>: CREATE TABLE table_name_17 (haat VARCHAR, channels_tv___rf VARCHAR)
SELECT haat FROM table_name_17 WHERE channels_tv___rf = "31 (psip) 44 (uhf)"
48,033
<question>: Which City of license has a Channels TV / RF of 67 ( psip ) 29 ( uhf ) <context>: CREATE TABLE table_name_4 (city_of_license VARCHAR, channels_tv___rf VARCHAR)
SELECT city_of_license FROM table_name_4 WHERE channels_tv___rf = "67 ( psip ) 29 ( uhf )"
48,034
<question>: Which Station has hagerstown? <context>: CREATE TABLE table_name_28 (station VARCHAR, city_of_license VARCHAR)
SELECT station FROM table_name_28 WHERE city_of_license = "hagerstown"
48,035
<question>: Which HAAT has 65944? <context>: CREATE TABLE table_name_34 (haat VARCHAR, facility_id VARCHAR)
SELECT haat FROM table_name_34 WHERE facility_id = 65944
48,036
<question>: Which City of license has a Channels TV / RF of 36 (psip) 36 (uhf)? Question 5 <context>: CREATE TABLE table_name_3 (city_of_license VARCHAR, channels_tv___rf VARCHAR)
SELECT city_of_license FROM table_name_3 WHERE channels_tv___rf = "36 (psip) 36 (uhf)"
48,037
<question>: What format is dated October 29, 2004? <context>: CREATE TABLE table_name_8 (format VARCHAR, date VARCHAR)
SELECT format FROM table_name_8 WHERE date = "october 29, 2004"
48,038
<question>: What is the date with the catalogue number ptcd-1015-6? <context>: CREATE TABLE table_name_59 (date VARCHAR, catalogue__number VARCHAR)
SELECT date FROM table_name_59 WHERE catalogue__number = "ptcd-1015-6"
48,039
<question>: What is the label for December 2004? <context>: CREATE TABLE table_name_73 (label VARCHAR, date VARCHAR)
SELECT label FROM table_name_73 WHERE date = "december 2004"
48,040
<question>: What is the date for Hydra Head Records with a CD format? <context>: CREATE TABLE table_name_21 (date VARCHAR, label VARCHAR, format VARCHAR)
SELECT date FROM table_name_21 WHERE label = "hydra head records" AND format = "cd"
48,041
<question>: Which country has Hydra Head Records on February 2005? <context>: CREATE TABLE table_name_96 (country VARCHAR, label VARCHAR, date VARCHAR)
SELECT country FROM table_name_96 WHERE label = "hydra head records" AND date = "february 2005"
48,042
<question>: Which country has Hydra Head Records with a 2lp format? <context>: CREATE TABLE table_name_97 (country VARCHAR, format VARCHAR, label VARCHAR)
SELECT country FROM table_name_97 WHERE format = "2lp" AND label = "hydra head records"
48,043
<question>: Who rode mad rush? <context>: CREATE TABLE table_name_44 (jockey VARCHAR, horse VARCHAR)
SELECT jockey FROM table_name_44 WHERE horse = "mad rush"
48,044
<question>: What place was the horse with a barrier of 20 and weighing less than 54 kg <context>: CREATE TABLE table_name_35 (placing VARCHAR, weight__kg_ VARCHAR, barrier_ VARCHAR, b_ VARCHAR)
SELECT placing FROM table_name_35 WHERE weight__kg_ < 54 AND barrier_[b_] = "20"
48,045
<question>: What place was the viewed horse? <context>: CREATE TABLE table_name_13 (placing VARCHAR, horse VARCHAR)
SELECT placing FROM table_name_13 WHERE horse = "viewed"
48,046
<question>: What is the average number of wins of the year with less than 5 top 10s, a winning of $39,190 and less than 2 starts? <context>: CREATE TABLE table_name_17 (wins INTEGER, starts VARCHAR, top_10 VARCHAR, winnings VARCHAR)
SELECT AVG(wins) FROM table_name_17 WHERE top_10 < 5 AND winnings = "$39,190" AND starts < 2
48,047
<question>: What is the highest number of poles of the year before 1992 with more than 18 starts and winnings of $125,102? <context>: CREATE TABLE table_name_81 (poles INTEGER, year VARCHAR, starts VARCHAR, winnings VARCHAR)
SELECT MAX(poles) FROM table_name_81 WHERE starts > 18 AND winnings = "$125,102" AND year < 1992
48,048
<question>: Author of stanisław wyspiański, and a Year of 1969 happened in what theatre? <context>: CREATE TABLE table_name_5 (theatre VARCHAR, author VARCHAR, year VARCHAR)
SELECT theatre FROM table_name_5 WHERE author = "stanisław wyspiański" AND year = 1969
48,049
<question>: Which game did New Jersey Devils played in? <context>: CREATE TABLE table_name_54 (game VARCHAR, opponent VARCHAR)
SELECT game FROM table_name_54 WHERE opponent = "new jersey devils"
48,050
<question>: What score has a record of 21-25-7-4? <context>: CREATE TABLE table_name_92 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_92 WHERE record = "21-25-7-4"
48,051
<question>: What score has a record of 22-28-7-4? <context>: CREATE TABLE table_name_9 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_9 WHERE record = "22-28-7-4"
48,052
<question>: What group has 1200 m as the distance? <context>: CREATE TABLE table_name_82 (group VARCHAR, distance VARCHAR)
SELECT group FROM table_name_82 WHERE distance = "1200 m"
48,053
<question>: What venue has g1 as the group? <context>: CREATE TABLE table_name_45 (venue VARCHAR, group VARCHAR)
SELECT venue FROM table_name_45 WHERE group = "g1"
48,054
<question>: What's the highest Points with the Team of Tacuary, and has Losses that's smaller than 4? <context>: CREATE TABLE table_name_56 (points INTEGER, team VARCHAR, losses VARCHAR)
SELECT MAX(points) FROM table_name_56 WHERE team = "tacuary" AND losses < 4
48,055
<question>: What's the sum of Losses that Scored larger than 15, has Points that's larger than 16, and Played that's larger than 9? <context>: CREATE TABLE table_name_15 (losses INTEGER, played VARCHAR, scored VARCHAR, points VARCHAR)
SELECT SUM(losses) FROM table_name_15 WHERE scored > 15 AND points > 16 AND played > 9
48,056
<question>: What's the highest Played with a Scored of 15, and Draws that's less than 1? <context>: CREATE TABLE table_name_80 (played INTEGER, scored VARCHAR, draws VARCHAR)
SELECT MAX(played) FROM table_name_80 WHERE scored = 15 AND draws < 1
48,057
<question>: What's the sum of WIns with Draws that's larger than 1, Losses that's smaller than 4, and Conceded of 20? <context>: CREATE TABLE table_name_82 (wins INTEGER, conceded VARCHAR, draws VARCHAR, losses VARCHAR)
SELECT SUM(wins) FROM table_name_82 WHERE draws > 1 AND losses < 4 AND conceded = 20
48,058
<question>: What's the lowest Position with a Conceded that's larger than 16, Draws of 3, and Losses that's larger than 3? <context>: CREATE TABLE table_name_6 (position INTEGER, losses VARCHAR, conceded VARCHAR, draws VARCHAR)
SELECT MIN(position) FROM table_name_6 WHERE conceded > 16 AND draws = 3 AND losses > 3
48,059
<question>: Which processors are supported with a PCI-express of x16: 1 slot x1: 4 slots and the nforce 550 model? <context>: CREATE TABLE table_name_82 (processors_supported VARCHAR, pci_express VARCHAR, model VARCHAR)
SELECT processors_supported FROM table_name_82 WHERE pci_express = "x16: 1 slot x1: 4 slots" AND model = "nforce 550"
48,060
<question>: What are the processors supported by a ddr2 memory and the nforce 550 model? <context>: CREATE TABLE table_name_91 (processors_supported VARCHAR, memory VARCHAR, model VARCHAR)
SELECT processors_supported FROM table_name_91 WHERE memory = "ddr2" AND model = "nforce 550"
48,061
<question>: What is the PCI-express with a ddr2 memory and a nforce 520 model? <context>: CREATE TABLE table_name_80 (pci_express VARCHAR, memory VARCHAR, model VARCHAR)
SELECT pci_express FROM table_name_80 WHERE memory = "ddr2" AND model = "nforce 520"
48,062
<question>: What is the Russian word for wine glass that contains 4.16 fl. oz.? <context>: CREATE TABLE table_name_14 (russian VARCHAR, us_customary VARCHAR)
SELECT russian FROM table_name_14 WHERE us_customary = "4.16 fl. oz."
48,063
<question>: What are the imperial size for the unit that has a ratio of 1/20? <context>: CREATE TABLE table_name_11 (imperial VARCHAR, ratio VARCHAR)
SELECT imperial FROM table_name_11 WHERE ratio = "1/20"
48,064
<question>: How big in metric terms is the unit that has a ratio of 1/20? <context>: CREATE TABLE table_name_54 (metric_value VARCHAR, ratio VARCHAR)
SELECT metric_value FROM table_name_54 WHERE ratio = "1/20"
48,065
<question>: How large in US customary terms is the unit called butylka (vodochnaya)? <context>: CREATE TABLE table_name_33 (us_customary VARCHAR, unit VARCHAR)
SELECT us_customary FROM table_name_33 WHERE unit = "butylka (vodochnaya)"
48,066
<question>: What is the translation of chetvert? <context>: CREATE TABLE table_name_81 (translation VARCHAR, unit VARCHAR)
SELECT translation FROM table_name_81 WHERE unit = "chetvert"
48,067
<question>: What Russian word translates to bucket? <context>: CREATE TABLE table_name_34 (russian VARCHAR, translation VARCHAR)
SELECT russian FROM table_name_34 WHERE translation = "bucket"
48,068
<question>: Points larger than 6, and a Results of 522:443 had what lowest matches? <context>: CREATE TABLE table_name_44 (matches INTEGER, points VARCHAR, results VARCHAR)
SELECT MIN(matches) FROM table_name_44 WHERE points > 6 AND results = "522:443"
48,069
<question>: Loses of 2, and a Pos. smaller than 2 had how many highest matches? <context>: CREATE TABLE table_name_75 (matches INTEGER, loses VARCHAR, pos VARCHAR)
SELECT MAX(matches) FROM table_name_75 WHERE loses = 2 AND pos < 2
48,070
<question>: What was the outcome when the game was played on clay and on 2 May 2009? <context>: CREATE TABLE table_name_49 (outcome VARCHAR, surface VARCHAR, date VARCHAR)
SELECT outcome FROM table_name_49 WHERE surface = "clay" AND date = "2 may 2009"
48,071
<question>: What person was played against when the playing surface was hard? <context>: CREATE TABLE table_name_42 (opponent VARCHAR, surface VARCHAR)
SELECT opponent FROM table_name_42 WHERE surface = "hard"
48,072
<question>: With the score of 6–3, 2–6, [10–8] and played on clay who was the opponent? <context>: CREATE TABLE table_name_69 (opponent VARCHAR, surface VARCHAR, score VARCHAR)
SELECT opponent FROM table_name_69 WHERE surface = "clay" AND score = "6–3, 2–6, [10–8]"
48,073
<question>: What is the rank of the park in pigeon forge, tennessee in the best food category? <context>: CREATE TABLE table_name_57 (rank VARCHAR, location VARCHAR, category VARCHAR)
SELECT COUNT(rank) FROM table_name_57 WHERE location = "pigeon forge, tennessee" AND category = "best food"
48,074
<question>: What building is in Shenzhen, have less than 115 floors, and was completed before 2017? <context>: CREATE TABLE table_name_79 (name VARCHAR, floors VARCHAR, city VARCHAR, completion VARCHAR)
SELECT name FROM table_name_79 WHERE city = "shenzhen" AND completion < 2017 AND floors < 115
48,075
<question>: What is the earliest year having a length of 11:25? <context>: CREATE TABLE table_name_21 (year INTEGER, length VARCHAR)
SELECT MIN(year) FROM table_name_21 WHERE length = "11:25"
48,076
<question>: What year had a version called Wolf Mix? <context>: CREATE TABLE table_name_11 (year INTEGER, version VARCHAR)
SELECT AVG(year) FROM table_name_11 WHERE version = "wolf mix"
48,077
<question>: In 1978 what is the NFL team? <context>: CREATE TABLE table_name_30 (nfl_team VARCHAR, draft_year VARCHAR)
SELECT nfl_team FROM table_name_30 WHERE draft_year = 1978
48,078
<question>: Who was the opponent with attendance at 64,002? <context>: CREATE TABLE table_name_87 (opponent VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_87 WHERE attendance = "64,002"
48,079
<question>: What was the highest week with 84,856 in attendance? <context>: CREATE TABLE table_name_96 (week INTEGER, attendance VARCHAR)
SELECT MAX(week) FROM table_name_96 WHERE attendance = "84,856"
48,080
<question>: What was the record in a week less than 13 on November 9, 2003? <context>: CREATE TABLE table_name_69 (record VARCHAR, week VARCHAR, date VARCHAR)
SELECT record FROM table_name_69 WHERE week < 13 AND date = "november 9, 2003"
48,081
<question>: On what date was the result w 20-17? <context>: CREATE TABLE table_name_43 (date VARCHAR, result VARCHAR)
SELECT date FROM table_name_43 WHERE result = "w 20-17"
48,082
<question>: What was the attendance for record 2-0? <context>: CREATE TABLE table_name_52 (attendance VARCHAR, record VARCHAR)
SELECT attendance FROM table_name_52 WHERE record = "2-0"
48,083
<question>: On what date was the game at Lincoln Financial Field? <context>: CREATE TABLE table_name_40 (date VARCHAR, game_site VARCHAR)
SELECT date FROM table_name_40 WHERE game_site = "lincoln financial field"
48,084
<question>: Which player has a pick of 175? <context>: CREATE TABLE table_name_58 (player VARCHAR, pick VARCHAR)
SELECT player FROM table_name_58 WHERE pick = 175
48,085
<question>: Zack Jordan has the lowest pick and a round of less than 28? <context>: CREATE TABLE table_name_69 (pick INTEGER, player VARCHAR, round VARCHAR)
SELECT MIN(pick) FROM table_name_69 WHERE player = "zack jordan" AND round < 28
48,086
<question>: What is the sum of the pick for player roger zatkoff? <context>: CREATE TABLE table_name_24 (pick INTEGER, player VARCHAR)
SELECT SUM(pick) FROM table_name_24 WHERE player = "roger zatkoff"
48,087
<question>: Which metal has a size that is 26mm (across scallops)? <context>: CREATE TABLE table_name_56 (metal VARCHAR, size VARCHAR)
SELECT metal FROM table_name_56 WHERE size = "26mm (across scallops)"
48,088
<question>: What is the weight with the shape of scalloped, and that is a size of 20mm (across scallops)? <context>: CREATE TABLE table_name_92 (weight VARCHAR, shape VARCHAR, size VARCHAR)
SELECT weight FROM table_name_92 WHERE shape = "scalloped" AND size = "20mm (across scallops)"
48,089
<question>: What is the weight with a denomination that is three paise? <context>: CREATE TABLE table_name_41 (weight VARCHAR, denomination VARCHAR)
SELECT weight FROM table_name_41 WHERE denomination = "three paise"
48,090
<question>: What is the weight with a denomination that is ten paise? <context>: CREATE TABLE table_name_53 (weight VARCHAR, denomination VARCHAR)
SELECT weight FROM table_name_53 WHERE denomination = "ten paise"
48,091
<question>: What is the highest number of games drawn, where the games played was less than 7? <context>: CREATE TABLE table_name_86 (drawn INTEGER, games INTEGER)
SELECT MAX(drawn) FROM table_name_86 WHERE games < 7
48,092
<question>: Which October is the lowest one that has an Opponent of washington capitals? <context>: CREATE TABLE table_name_38 (october INTEGER, opponent VARCHAR)
SELECT MIN(october) FROM table_name_38 WHERE opponent = "washington capitals"
48,093
<question>: Which Score has a Game larger than 7, and Points smaller than 14? <context>: CREATE TABLE table_name_17 (score VARCHAR, game VARCHAR, points VARCHAR)
SELECT score FROM table_name_17 WHERE game > 7 AND points < 14
48,094
<question>: How many Points have an Opponent of @ calgary flames? <context>: CREATE TABLE table_name_77 (points INTEGER, opponent VARCHAR)
SELECT SUM(points) FROM table_name_77 WHERE opponent = "@ calgary flames"
48,095
<question>: What is the mean number of events where the rank is 1 and there are more than 3 wins? <context>: CREATE TABLE table_name_50 (events INTEGER, rank VARCHAR, wins VARCHAR)
SELECT AVG(events) FROM table_name_50 WHERE rank = 1 AND wins > 3
48,096
<question>: Which Supercopa 1994 has a Team of estudiantes? <context>: CREATE TABLE table_name_10 (supercopa_1994 VARCHAR, team VARCHAR)
SELECT supercopa_1994 FROM table_name_10 WHERE team = "estudiantes"
48,097
<question>: Which CONMEBOL 1994 has a Supercopa 1994 of n/a, and a Recopa 1994 of n/a, and a Team of san lorenzo? <context>: CREATE TABLE table_name_12 (conmebol_1994 VARCHAR, team VARCHAR, supercopa_1994 VARCHAR, recopa_1994 VARCHAR)
SELECT conmebol_1994 FROM table_name_12 WHERE supercopa_1994 = "n/a" AND recopa_1994 = "n/a" AND team = "san lorenzo"
48,098
<question>: Which Recopa 1994 has a Supercopa 1994 of 1st round, and a Team of argentinos juniors? <context>: CREATE TABLE table_name_54 (recopa_1994 VARCHAR, supercopa_1994 VARCHAR, team VARCHAR)
SELECT recopa_1994 FROM table_name_54 WHERE supercopa_1994 = "1st round" AND team = "argentinos juniors"
48,099
<question>: Which Team has a Recopa 1994 of n/a and a CONMEBOL 1994 of 1st round? <context>: CREATE TABLE table_name_92 (team VARCHAR, recopa_1994 VARCHAR, conmebol_1994 VARCHAR)
SELECT team FROM table_name_92 WHERE recopa_1994 = "n/a" AND conmebol_1994 = "1st round"