question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What was the home team's score that played Geelong?
CREATE TABLE table_name_44 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team AS score FROM table_name_44 WHERE away_team = "geelong"
What is the average number of points of the game after January 3 against the Cleveland Barons?
CREATE TABLE table_name_23 (points INTEGER, opponent VARCHAR, january VARCHAR)
SELECT AVG(points) FROM table_name_23 WHERE opponent = "cleveland barons" AND january > 3
What is the average to par for a score of 78-67-73=218?
CREATE TABLE table_name_2 (to_par INTEGER, score VARCHAR)
SELECT AVG(to_par) FROM table_name_2 WHERE score = 78 - 67 - 73 = 218
Report the distinct registration date and the election cycle.
CREATE TABLE VOTING_RECORD (Registration_Date VARCHAR, Election_Cycle VARCHAR)
SELECT DISTINCT Registration_Date, Election_Cycle FROM VOTING_RECORD
How much money was spent in 2Q when the total receipts were $1,117,566?
CREATE TABLE table_name_69 (money_spent VARCHAR, _2q VARCHAR, total_receipts VARCHAR)
SELECT money_spent, _2q FROM table_name_69 WHERE total_receipts = "$1,117,566"
What's the title of the episode that Rob Heyland wrote?
CREATE TABLE table_14330096_3 (title VARCHAR, writer VARCHAR)
SELECT title FROM table_14330096_3 WHERE writer = "Rob Heyland"
What was nominee nominated for outstanding featured actor in a musical?
CREATE TABLE table_name_65 (nominee VARCHAR, category VARCHAR, result VARCHAR)
SELECT nominee FROM table_name_65 WHERE category = "outstanding featured actor in a musical" AND result = "nominated"
A list of the top 10 countries by average invoice size. List country name and average invoice size.
CREATE TABLE invoices (billing_country VARCHAR, total INTEGER)
SELECT billing_country, AVG(total) FROM invoices GROUP BY billing_country ORDER BY AVG(total) DESC LIMIT 10
What's the exponent field that has 255 exp and value of +∞?
CREATE TABLE table_name_93 (exponent_field VARCHAR, exp__biased_ VARCHAR, value VARCHAR)
SELECT exponent_field FROM table_name_93 WHERE exp__biased_ = "255" AND value = "+∞"
Show all party names and the number of members in each party.
CREATE TABLE party (party_name VARCHAR, party_id VARCHAR); CREATE TABLE Member (party_id VARCHAR)
SELECT T2.party_name, COUNT(*) FROM Member AS T1 JOIN party AS T2 ON T1.party_id = T2.party_id GROUP BY T1.party_id
When did the course Vasto to Campitello Matese took place?
CREATE TABLE table_name_25 (date VARCHAR, course VARCHAR)
SELECT date FROM table_name_25 WHERE course = "vasto to campitello matese"
What are the names of tourist attraction that Alison visited but Rosalind did not visit?
CREATE TABLE VISITS (Tourist_Attraction_ID VARCHAR, Tourist_ID VARCHAR); CREATE TABLE VISITORS (Tourist_Details VARCHAR, Tourist_ID VARCHAR); CREATE TABLE Tourist_Attractions (Name VARCHAR, Tourist_Attraction_ID VARCHAR)
SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN VISITORS AS T2 JOIN VISITS AS T3 ON T1.Tourist_Attraction_ID = T3.Tourist_Attraction_ID AND T2.Tourist_ID = T3.Tourist_ID WHERE T2.Tourist_Details = "Alison" EXCEPT SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN VISITORS AS T2 JOIN VISITS AS T3 ON T1.Tourist_Attraction_ID = T3.Tourist_Attraction_ID AND T2.Tourist_ID = T3.Tourist_ID WHERE T2.Tourist_Details = "Rosalind"
what is the owner of the c501
CREATE TABLE table_name_2 (owner VARCHAR, locomotive VARCHAR)
SELECT owner FROM table_name_2 WHERE locomotive = "c501"
What round had a time of 0:39?
CREATE TABLE table_name_21 (round INTEGER, time VARCHAR)
SELECT MIN(round) FROM table_name_21 WHERE time = "0:39"
When was satsuki dd-27 completed?
CREATE TABLE table_name_25 (completed VARCHAR, name VARCHAR)
SELECT completed FROM table_name_25 WHERE name = "satsuki dd-27"
what's the date of completion where deadline for completion is september 30, 2007
CREATE TABLE table_12078626_1 (date_of_completion VARCHAR, deadline_for_completion VARCHAR)
SELECT date_of_completion FROM table_12078626_1 WHERE deadline_for_completion = "September 30, 2007"
Name the most female life expectancy for djibouti
CREATE TABLE table_2701625_1 (female_life_expectancy INTEGER, country VARCHAR)
SELECT MAX(female_life_expectancy) FROM table_2701625_1 WHERE country = "Djibouti"
What was the average attendance when the record was 19-13?
CREATE TABLE table_name_23 (attendance INTEGER, record VARCHAR)
SELECT AVG(attendance) FROM table_name_23 WHERE record = "19-13"
What score(s) were recorded on april 28?
CREATE TABLE table_17140608_11 (score VARCHAR, date VARCHAR)
SELECT score FROM table_17140608_11 WHERE date = "April 28"
How many people in 1991 have a Village (German) of rupertiberg?
CREATE TABLE table_name_72 (number_of_people_1991 VARCHAR, village__german_ VARCHAR)
SELECT COUNT(number_of_people_1991) FROM table_name_72 WHERE village__german_ = "rupertiberg"
Date of october 5 had what score?
CREATE TABLE table_name_15 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_15 WHERE date = "october 5"
What was the money list rank for Reid in the year that she had 0 top 10s?
CREATE TABLE table_29506171_2 (money_list_rank VARCHAR, top_10s VARCHAR)
SELECT money_list_rank FROM table_29506171_2 WHERE top_10s = 0
How many themes are there where the order # is 9?
CREATE TABLE table_26250253_1 (theme VARCHAR, order__number VARCHAR)
SELECT COUNT(theme) FROM table_26250253_1 WHERE order__number = "9"
Who had an Ipsos of 27%?
CREATE TABLE table_name_69 (party VARCHAR, ipsos_6_3_09 VARCHAR)
SELECT party FROM table_name_69 WHERE ipsos_6_3_09 = "27%"
Which Condition has a Bleeding time of unaffected, and a Partial thromboplastin time of prolonged, and a Prothrombin time of unaffected?
CREATE TABLE table_name_53 (condition VARCHAR, prothrombin_time VARCHAR, bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR)
SELECT condition FROM table_name_53 WHERE bleeding_time = "unaffected" AND partial_thromboplastin_time = "prolonged" AND prothrombin_time = "unaffected"
On 9/3/97, what was the score that resulted in a w?
CREATE TABLE table_name_72 (score VARCHAR, result VARCHAR, date VARCHAR)
SELECT score FROM table_name_72 WHERE result = "w" AND date = "9/3/97"
What player's hometown is Abilene, Texas?
CREATE TABLE table_11677691_3 (player VARCHAR, hometown VARCHAR)
SELECT player FROM table_11677691_3 WHERE hometown = "Abilene, Texas"
Which state is the location of 39.1178°n 106.4454°w in?
CREATE TABLE table_name_55 (state VARCHAR, location VARCHAR)
SELECT state FROM table_name_55 WHERE location = "39.1178°n 106.4454°w"
Who was on the pole position at the monaco grand prix?
CREATE TABLE table_1137695_3 (pole_position VARCHAR, grand_prix VARCHAR)
SELECT pole_position FROM table_1137695_3 WHERE grand_prix = "Monaco grand_prix"
What is the effective date of the claim that has the largest amount of total settlement?
CREATE TABLE settlements (claim_id VARCHAR, settlement_amount INTEGER); CREATE TABLE claims (Effective_Date VARCHAR, claim_id VARCHAR)
SELECT t1.Effective_Date FROM claims AS t1 JOIN settlements AS t2 ON t1.claim_id = t2.claim_id GROUP BY t1.claim_id ORDER BY SUM(t2.settlement_amount) DESC LIMIT 1
what is the minimum voted no where percent no is 56.6
CREATE TABLE table_120778_2 (voted_no INTEGER, percent_no VARCHAR)
SELECT MIN(voted_no) FROM table_120778_2 WHERE percent_no = "56.6"
how many maximum # when viewers (m) is 8.01
CREATE TABLE table_27374740_2 (_number INTEGER, viewers__m_ VARCHAR)
SELECT MAX(_number) FROM table_27374740_2 WHERE viewers__m_ = "8.01"
What rank has less than 22 wins
CREATE TABLE table_name_88 (rank VARCHAR, wins INTEGER)
SELECT COUNT(rank) FROM table_name_88 WHERE wins < 22
What is the number of matches with an average larger than 6.33, with a rank of 1?
CREATE TABLE table_name_78 (matches INTEGER, average VARCHAR, rank VARCHAR)
SELECT SUM(matches) FROM table_name_78 WHERE average > 6.33 AND rank = 1
Which Run 4 has a Run 1 of 1:25.82?
CREATE TABLE table_name_59 (run_4 VARCHAR, run_1 VARCHAR)
SELECT run_4 FROM table_name_59 WHERE run_1 = "1:25.82"
What is the Average for South Carolina with an Interview less than 9.626?
CREATE TABLE table_name_21 (average INTEGER, state VARCHAR, interview VARCHAR)
SELECT SUM(average) FROM table_name_21 WHERE state = "south carolina" AND interview < 9.626
Who had the high points at the United Center 20,389?
CREATE TABLE table_name_42 (high_points VARCHAR, location_attendance VARCHAR)
SELECT high_points FROM table_name_42 WHERE location_attendance = "united center 20,389"
What is the lowest year for an engine of ford zetec-r v8, and points greater than 0?
CREATE TABLE table_name_47 (year INTEGER, engine VARCHAR, points VARCHAR)
SELECT MIN(year) FROM table_name_47 WHERE engine = "ford zetec-r v8" AND points > 0
Who had the high rebounds for the game on april 23?
CREATE TABLE table_11961582_10 (high_rebounds VARCHAR, date VARCHAR)
SELECT high_rebounds FROM table_11961582_10 WHERE date = "April 23"
On July 15, 1984 what surface was used?
CREATE TABLE table_name_15 (surface VARCHAR, date VARCHAR)
SELECT surface FROM table_name_15 WHERE date = "july 15, 1984"
What are the months in Tamil that has an english transliteration of Mun-pani?
CREATE TABLE table_name_89 (tamil_months VARCHAR, english_transliteration VARCHAR)
SELECT tamil_months FROM table_name_89 WHERE english_transliteration = "mun-pani"
Which air date had an 11 share
CREATE TABLE table_11244302_1 (air_date VARCHAR, share VARCHAR)
SELECT air_date FROM table_11244302_1 WHERE share = 11
What is the smallest draws value with 21 points?
CREATE TABLE table_14871601_1 (draws INTEGER, points VARCHAR)
SELECT MIN(draws) FROM table_14871601_1 WHERE points = 21
What is the Height of the Player with a Date of Birth of 1979-06-12?
CREATE TABLE table_name_23 (height VARCHAR, date_of_birth VARCHAR)
SELECT height FROM table_name_23 WHERE date_of_birth = "1979-06-12"
what is the score for the 5th position and a score less than 7
CREATE TABLE table_name_40 (b_score INTEGER, position VARCHAR, a_score VARCHAR)
SELECT MIN(b_score) FROM table_name_40 WHERE position = "5th" AND a_score < 7
Add up all the Ends columns that have goals smaller than 0.
CREATE TABLE table_name_65 (ends INTEGER, goals INTEGER)
SELECT SUM(ends) FROM table_name_65 WHERE goals < 0
What was the outcome of the game when the opponent was Magdaléna Rybáriková?
CREATE TABLE table_18183850_12 (outcome VARCHAR, opponent VARCHAR)
SELECT outcome FROM table_18183850_12 WHERE opponent = "Magdaléna Rybáriková"
Show the id, name of each editor and the number of journal committees they are on.
CREATE TABLE editor (editor_id VARCHAR, Name VARCHAR, Editor_ID VARCHAR); CREATE TABLE journal_committee (Editor_ID VARCHAR)
SELECT T1.editor_id, T1.Name, COUNT(*) FROM editor AS T1 JOIN journal_committee AS T2 ON T1.Editor_ID = T2.Editor_ID GROUP BY T1.editor_id
What is the 1st Edition for Episode 11?
CREATE TABLE table_name_16 (episode VARCHAR)
SELECT 1 AS st_edition FROM table_name_16 WHERE episode = "11"
What team visited the Jacksonville Municipal Stadium?
CREATE TABLE table_name_10 (visiting_team VARCHAR, stadium VARCHAR)
SELECT visiting_team FROM table_name_10 WHERE stadium = "jacksonville municipal stadium"
what's the rank for iceland
CREATE TABLE table_145439_1 (rank VARCHAR, country VARCHAR)
SELECT rank FROM table_145439_1 WHERE country = "Iceland"
Who were the candidates in the election where John Beatty was the incumbent?
CREATE TABLE table_1434788_5 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1434788_5 WHERE incumbent = "John Beatty"
What's the Points average with a Lost of 21, and Position of 22?
CREATE TABLE table_name_36 (points INTEGER, lost VARCHAR, position VARCHAR)
SELECT AVG(points) FROM table_name_36 WHERE lost = 21 AND position = 22
What is the sum of all crowds present at the Glenferrie Oval venue?
CREATE TABLE table_name_35 (crowd INTEGER, venue VARCHAR)
SELECT SUM(crowd) FROM table_name_35 WHERE venue = "glenferrie oval"
Who got the game high rebounds in game 46?
CREATE TABLE table_17001658_7 (high_rebounds VARCHAR, game VARCHAR)
SELECT high_rebounds FROM table_17001658_7 WHERE game = 46
What was the result of W. Jasper Talbert who was first elected in 1892?
CREATE TABLE table_name_83 (result VARCHAR, first_elected VARCHAR, incumbent VARCHAR)
SELECT result FROM table_name_83 WHERE first_elected = "1892" AND incumbent = "w. jasper talbert"
Who is the cyber girl in week 3 when Ashley Lowe was the cyber girl in week 2?
CREATE TABLE table_name_54 (week_3 VARCHAR, week_2 VARCHAR)
SELECT week_3 FROM table_name_54 WHERE week_2 = "ashley lowe"
What is the most stolen ends?
CREATE TABLE table_29704430_1 (stolen_ends INTEGER)
SELECT MAX(stolen_ends) FROM table_29704430_1
Russia has films in which category?
CREATE TABLE table_name_45 (category VARCHAR, country VARCHAR)
SELECT category FROM table_name_45 WHERE country = "russia"
What is the margin when k. balathandayutham is the winner?
CREATE TABLE table_22754491_1 (margin INTEGER, winner VARCHAR)
SELECT MAX(margin) FROM table_22754491_1 WHERE winner = "K. Balathandayutham"
how many times is march 27-29 is 129?
CREATE TABLE table_25355392_2 (november_3 VARCHAR, march_27_29 VARCHAR)
SELECT COUNT(november_3) FROM table_25355392_2 WHERE march_27_29 = "129"
How many episodes had celebrity guest stars Frank Skinner and Lee Mack?
CREATE TABLE table_24725951_1 (episode VARCHAR, celebrities VARCHAR)
SELECT COUNT(episode) FROM table_24725951_1 WHERE celebrities = "Frank Skinner and Lee Mack"
Which percentage has a first game before 1997, fewer than 2 losses, and fewer than 5 matches played?
CREATE TABLE table_name_27 (percentage VARCHAR, played VARCHAR, first_game VARCHAR, lost VARCHAR)
SELECT percentage FROM table_name_27 WHERE first_game < 1997 AND lost < 2 AND played < 5
what is the release date when the sspec number is sr15h(c0)?
CREATE TABLE table_name_98 (release_date VARCHAR, sspec_number VARCHAR)
SELECT release_date FROM table_name_98 WHERE sspec_number = "sr15h(c0)"
what is the average silver when the total is more than 20?
CREATE TABLE table_name_66 (silver INTEGER, total INTEGER)
SELECT AVG(silver) FROM table_name_66 WHERE total > 20
Name the leading scorer for 12 january 2008
CREATE TABLE table_name_40 (leading_scorer VARCHAR, date VARCHAR)
SELECT leading_scorer FROM table_name_40 WHERE date = "12 january 2008"
What was the result in the game broadcast on the SEC Network?
CREATE TABLE table_26842217_12 (result VARCHAR, broadcast VARCHAR)
SELECT result FROM table_26842217_12 WHERE broadcast = "SEC Network"
Which rider had less than 342 points in no more than 76 rides in 7 matches with more than 2 bonus points?
CREATE TABLE table_name_37 (rider VARCHAR, bonus_pts VARCHAR, matches VARCHAR, total_points VARCHAR, rides VARCHAR)
SELECT rider FROM table_name_37 WHERE total_points < 342 AND rides < 76 AND matches = 7 AND bonus_pts > 2
What is the height of the player from Gulfport, MS?
CREATE TABLE table_20785990_2 (height VARCHAR, home_town VARCHAR)
SELECT height FROM table_20785990_2 WHERE home_town = "Gulfport, MS"
State pensions of 7%, and a Self employed of 7%, and a Other income sources of 2% has what investment income?
CREATE TABLE table_name_67 (investment_income VARCHAR, other_income_sources VARCHAR, state_pensions VARCHAR, self_employed VARCHAR)
SELECT investment_income FROM table_name_67 WHERE state_pensions = "7%" AND self_employed = "7%" AND other_income_sources = "2%"
List the episode whose number in the series is 111.
CREATE TABLE table_11562149_1 (no_in_season VARCHAR, no_in_series VARCHAR)
SELECT no_in_season FROM table_11562149_1 WHERE no_in_series = "111"
Which points classification has 4 as the stage?
CREATE TABLE table_22464308_2 (points_classification VARCHAR, stage VARCHAR)
SELECT points_classification FROM table_22464308_2 WHERE stage = 4
When were the Houston Texans the visiting team later in the season?
CREATE TABLE table_name_29 (week INTEGER, visiting_team VARCHAR)
SELECT MAX(week) FROM table_name_29 WHERE visiting_team = "houston texans"
Which chassis had an entrant of John Mecom?
CREATE TABLE table_name_37 (chassis VARCHAR, entrant VARCHAR)
SELECT chassis FROM table_name_37 WHERE entrant = "john mecom"
What is the maximum length in meters for the bridges and what are the architects' names?
CREATE TABLE architect (name VARCHAR, id VARCHAR); CREATE TABLE bridge (length_meters INTEGER, architect_id VARCHAR)
SELECT MAX(T1.length_meters), T2.name FROM bridge AS T1 JOIN architect AS T2 ON T1.architect_id = T2.id
What was the game edition when they played on the clay (i) surface and the outcome was a winner?
CREATE TABLE table_18183850_12 (edition VARCHAR, surface VARCHAR, outcome VARCHAR)
SELECT edition FROM table_18183850_12 WHERE surface = "Clay (i)" AND outcome = "Winner"
Name the Rider which has Laps smaller than 11 and a Bike of kawasaki zx-10r, and a Grid of 8?
CREATE TABLE table_name_98 (rider VARCHAR, grid VARCHAR, laps VARCHAR, bike VARCHAR)
SELECT rider FROM table_name_98 WHERE laps < 11 AND bike = "kawasaki zx-10r" AND grid = 8
What team had a race time of 2:53:57?
CREATE TABLE table_2268216_1 (team VARCHAR, race_time VARCHAR)
SELECT team FROM table_2268216_1 WHERE race_time = "2:53:57"
What is the highest CPC blend Kazakhstan number when Barrow Island Australia is smaller than 12?
CREATE TABLE table_name_48 (cpc_blend_kazakhstan INTEGER, barrow_island_australia INTEGER)
SELECT MAX(cpc_blend_kazakhstan) FROM table_name_48 WHERE barrow_island_australia < 12
What was the score of the 2014 World Cup Qualification?
CREATE TABLE table_name_91 (score VARCHAR, competition VARCHAR)
SELECT score FROM table_name_91 WHERE competition = "2014 world cup qualification"
What was the result of the Georgia 8 district?
CREATE TABLE table_19753079_13 (result VARCHAR, district VARCHAR)
SELECT result FROM table_19753079_13 WHERE district = "Georgia 8"
If the security issues is 99-025 and the distribution mechanism is the Microsoft website, what is the release date total number?
CREATE TABLE table_2263152_1 (release_date VARCHAR, security_issues VARCHAR, distribution_mechanism VARCHAR)
SELECT COUNT(release_date) FROM table_2263152_1 WHERE security_issues = "99-025" AND distribution_mechanism = "Microsoft website"
What is the name of the driver of the vehicle constructed by Bugatti in Anfa?
CREATE TABLE table_name_2 (driver VARCHAR, constructor VARCHAR, location VARCHAR)
SELECT driver FROM table_name_2 WHERE constructor = "bugatti" AND location = "anfa"
what is the earliest year when the author is reki kawahara?
CREATE TABLE table_name_42 (year INTEGER, author VARCHAR)
SELECT MIN(year) FROM table_name_42 WHERE author = "reki kawahara"
Who is the driver of the european grand prix?
CREATE TABLE table_1137696_3 (winning_driver VARCHAR, grand_prix VARCHAR)
SELECT winning_driver FROM table_1137696_3 WHERE grand_prix = "European grand_prix"
What was the location of the Ju-52 aircraft?
CREATE TABLE table_name_61 (location VARCHAR, aircraft VARCHAR)
SELECT location FROM table_name_61 WHERE aircraft = "ju-52"
How many games were lost when the club got 34 points
CREATE TABLE table_19179465_1 (lost INTEGER, points VARCHAR)
SELECT MIN(lost) FROM table_19179465_1 WHERE points = 34
What was the total number of games where A. Johnson (6) gave the most high assists?
CREATE TABLE table_11961582_4 (game VARCHAR, high_assists VARCHAR)
SELECT COUNT(game) FROM table_11961582_4 WHERE high_assists = "A. Johnson (6)"
What is the name of the artist with a Single / Pack of guitar hero track pack 1?
CREATE TABLE table_name_41 (artist VARCHAR, single___pack VARCHAR)
SELECT artist FROM table_name_41 WHERE single___pack = "guitar hero track pack 1"
Tell me the host for midwest thomas assembly center
CREATE TABLE table_name_85 (host VARCHAR, region VARCHAR, venue VARCHAR)
SELECT host FROM table_name_85 WHERE region = "midwest" AND venue = "thomas assembly center"
What's the most number of byes for Longwood having less than 1944 against?
CREATE TABLE table_name_13 (byes INTEGER, benalla_dfl VARCHAR, against VARCHAR)
SELECT MAX(byes) FROM table_name_13 WHERE benalla_dfl = "longwood" AND against < 1944
What's the score for Toronto Maple Leafs on November 10?
CREATE TABLE table_name_49 (score VARCHAR, home VARCHAR, date VARCHAR)
SELECT score FROM table_name_49 WHERE home = "toronto maple leafs" AND date = "november 10"
Name the most stage for alejandro valverde and astana greg henderson
CREATE TABLE table_22713796_14 (stage INTEGER, winner VARCHAR, general_classification VARCHAR, team_classification VARCHAR)
SELECT MAX(stage) FROM table_22713796_14 WHERE general_classification = "Alejandro Valverde" AND team_classification = "Astana" AND winner = "Greg Henderson"
Name the % asian american for 23526
CREATE TABLE table_18963843_1 (_percentage_asian_american VARCHAR, indian_american_population__2010_ VARCHAR)
SELECT _percentage_asian_american FROM table_18963843_1 WHERE indian_american_population__2010_ = 23526
How many world rankings are after Aug 5, 1980 ?
CREATE TABLE table_name_80 (world_ranking INTEGER, date VARCHAR, year VARCHAR)
SELECT SUM(world_ranking) FROM table_name_80 WHERE date = "aug 5" AND year > 1980
What is the identity of the brighton works built train?
CREATE TABLE table_name_48 (identity VARCHAR, builder VARCHAR)
SELECT identity FROM table_name_48 WHERE builder = "brighton works"
Who beat the Marlins with a score of 4-0?
CREATE TABLE table_name_68 (winning_team VARCHAR, losing_team VARCHAR, score VARCHAR)
SELECT winning_team FROM table_name_68 WHERE losing_team = "marlins" AND score = "4-0"
What nation has 28 bronze medals?
CREATE TABLE table_name_63 (nation VARCHAR, bronze VARCHAR)
SELECT nation FROM table_name_63 WHERE bronze = "28"
What was the attendance at the game on December 11, 1966?
CREATE TABLE table_name_66 (attendance VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_66 WHERE date = "december 11, 1966"
What code is used to represent the currency of Croatian Kuna?
CREATE TABLE table_name_34 (code VARCHAR, currency VARCHAR)
SELECT code FROM table_name_34 WHERE currency = "croatian kuna"