question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What was the result when the opponent was manchester united in venue h?
CREATE TABLE table_name_45 (result VARCHAR, opponent VARCHAR, venue VARCHAR)
SELECT result FROM table_name_45 WHERE opponent = "manchester united" AND venue = "h"
what is the attendance when the location is veterans stadium, the game is more than 3 and the time is 2:21?
CREATE TABLE table_name_39 (attendance INTEGER, time VARCHAR, location VARCHAR, game VARCHAR)
SELECT AVG(attendance) FROM table_name_39 WHERE location = "veterans stadium" AND game > 3 AND time = "2:21"
What is the highest number of wins for the team, Central District, who had less than 0 draws and took place during a season before 1995?
CREATE TABLE table_name_63 (wins INTEGER, draws VARCHAR, season VARCHAR, team VARCHAR)
SELECT MAX(wins) FROM table_name_63 WHERE season < 1995 AND team = "central district" AND draws < 0
What is the tyre for Yoshihisa Namekata?
CREATE TABLE table_name_97 (tyre VARCHAR, drivers VARCHAR)
SELECT tyre FROM table_name_97 WHERE drivers = "yoshihisa namekata"
Can you tell me the Record that has the Location of fleetcenter, and the Date of fri. apr. 5?
CREATE TABLE table_name_16 (record VARCHAR, location VARCHAR, date VARCHAR)
SELECT record FROM table_name_16 WHERE location = "fleetcenter" AND date = "fri. apr. 5"
What is the memory for ct80618005844ab?
CREATE TABLE table_name_78 (memory VARCHAR, part_number_s_ VARCHAR)
SELECT memory FROM table_name_78 WHERE part_number_s_ = "ct80618005844ab"
During which years was Marcus Banks in Toronto?
CREATE TABLE table_10015132_2 (years_in_toronto VARCHAR, player VARCHAR)
SELECT years_in_toronto FROM table_10015132_2 WHERE player = "Marcus Banks"
What is the sum of the losses by the Montreal Hockey Club, who have more than 15 Goals Against?
CREATE TABLE table_name_56 (losses INTEGER, team VARCHAR, goals_against VARCHAR)
SELECT SUM(losses) FROM table_name_56 WHERE team = "montreal hockey club" AND goals_against > 15
Name the missouri for 2002
CREATE TABLE table_19153842_1 (missouri VARCHAR, year VARCHAR)
SELECT missouri FROM table_19153842_1 WHERE year = 2002
What competition has 41 goals?
CREATE TABLE table_name_63 (competition VARCHAR, goal VARCHAR)
SELECT competition FROM table_name_63 WHERE goal = 41
What is the number of points when goals were 29–30?
CREATE TABLE table_name_98 (points INTEGER, goals VARCHAR)
SELECT SUM(points) FROM table_name_98 WHERE goals = "29–30"
Show the number of audience in year 2008 or 2010.
CREATE TABLE festival_detail (Num_of_Audience VARCHAR, YEAR VARCHAR)
SELECT Num_of_Audience FROM festival_detail WHERE YEAR = 2008 OR YEAR = 2010
What is Party, when Incumbent is "Rodney Alexander"?
CREATE TABLE table_name_52 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_name_52 WHERE incumbent = "rodney alexander"
What was the date of vacancy when Viorel Moldovan replaced a manager?
CREATE TABLE table_17115950_2 (date_of_vacancy VARCHAR, replaced_by VARCHAR)
SELECT date_of_vacancy FROM table_17115950_2 WHERE replaced_by = "Viorel Moldovan"
What team had a Ravg of 3.4?
CREATE TABLE table_name_72 (team VARCHAR, ravg VARCHAR)
SELECT team FROM table_name_72 WHERE ravg = "3.4"
What was Rich Voltzke's highest pick number?
CREATE TABLE table_name_79 (pick__number INTEGER, player VARCHAR)
SELECT MAX(pick__number) FROM table_name_79 WHERE player = "rich voltzke"
Name the lowest round for when pole position and winning driver is michael schumacher
CREATE TABLE table_name_27 (round INTEGER, pole_position VARCHAR, fastest_lap VARCHAR, winning_driver VARCHAR)
SELECT MIN(round) FROM table_name_27 WHERE fastest_lap = "michael schumacher" AND winning_driver = "michael schumacher" AND pole_position = "michael schumacher"
Name the IHSAA Class of Mascot of pioneers?
CREATE TABLE table_name_32 (ihsaa_class VARCHAR, mascot VARCHAR)
SELECT ihsaa_class FROM table_name_32 WHERE mascot = "pioneers"
How many distinct official languages are there among countries of players whose positions are defenders.
CREATE TABLE country (Official_native_language VARCHAR, Country_id VARCHAR); CREATE TABLE match_season (Country VARCHAR, Position VARCHAR)
SELECT COUNT(DISTINCT T1.Official_native_language) FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T2.Position = "Defender"
Name the least 10,000+ places for louisville
CREATE TABLE table_22916979_5 (_places VARCHAR, principal_city VARCHAR)
SELECT MIN(10), 000 + _places FROM table_22916979_5 WHERE principal_city = "Louisville"
In the venue Corio Oval, who was the away team?
CREATE TABLE table_name_97 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_97 WHERE venue = "corio oval"
On what date was the away team Bournemouth?
CREATE TABLE table_name_24 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_24 WHERE away_team = "bournemouth"
What is Daultan Leveille's Position?
CREATE TABLE table_name_68 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_68 WHERE player = "daultan leveille"
What is the tally when the opposition is Derry, and total is 14?
CREATE TABLE table_name_12 (tally VARCHAR, opposition VARCHAR, total VARCHAR)
SELECT tally FROM table_name_12 WHERE opposition = "derry" AND total = 14
Show the industries shared by companies whose headquarters are "USA" and companies whose headquarters are "China".
CREATE TABLE Companies (Industry VARCHAR, Headquarters VARCHAR)
SELECT Industry FROM Companies WHERE Headquarters = "USA" INTERSECT SELECT Industry FROM Companies WHERE Headquarters = "China"
Tell me who was the opponent on May 6
CREATE TABLE table_name_33 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_33 WHERE date = "may 6"
What is the Result of Venue of edmonton, canada?
CREATE TABLE table_name_54 (result VARCHAR, venue VARCHAR)
SELECT result FROM table_name_54 WHERE venue = "edmonton, canada"
What is the WPW freq with a day power of 250?
CREATE TABLE table_name_55 (freq INTEGER, owner VARCHAR, day_power___w__ VARCHAR)
SELECT SUM(freq) FROM table_name_55 WHERE owner = "wpw" AND day_power___w__ > 250
What is the first party for Lord John Hay earlier than 1857?
CREATE TABLE table_name_82 (first_party VARCHAR, year VARCHAR, first_member VARCHAR)
SELECT first_party FROM table_name_82 WHERE year < 1857 AND first_member = "lord john hay"
Which MLS team has the #41 pick?
CREATE TABLE table_name_86 (mls_team VARCHAR, pick__number VARCHAR)
SELECT mls_team FROM table_name_86 WHERE pick__number = 41
What is the Gauge of Builder Beyer, Peacock?
CREATE TABLE table_name_9 (gauge VARCHAR, builder VARCHAR)
SELECT gauge FROM table_name_9 WHERE builder = "beyer, peacock"
Which constructor had a grid number bigger than 14, laps of more than 93, and rank higher than 25?
CREATE TABLE table_name_2 (constructor VARCHAR, rank VARCHAR, grid VARCHAR, laps VARCHAR)
SELECT constructor FROM table_name_2 WHERE grid > 14 AND laps > 93 AND rank > 25
Which language does the film AIRPORT POLLOCK use? List the language name.
CREATE TABLE film (language_id VARCHAR, title VARCHAR); CREATE TABLE LANGUAGE (name VARCHAR, language_id VARCHAR)
SELECT T2.name FROM film AS T1 JOIN LANGUAGE AS T2 ON T1.language_id = T2.language_id WHERE T1.title = 'AIRPORT POLLOCK'
What number pick was the player drafted in round 3 at #28 overall?
CREATE TABLE table_name_51 (pick INTEGER, overall VARCHAR, round VARCHAR)
SELECT AVG(pick) FROM table_name_51 WHERE overall < 28 AND round = 3
Who had the most laps led in monterey, california when scott rarick won the race?
CREATE TABLE table_25668203_2 (most_laps_led VARCHAR, location VARCHAR, winning_driver VARCHAR)
SELECT most_laps_led FROM table_25668203_2 WHERE location = "Monterey, California" AND winning_driver = "Scott Rarick"
How much did jim colbert earned ranked above 2?
CREATE TABLE table_name_64 (earnings__ VARCHAR, player VARCHAR, rank VARCHAR)
SELECT COUNT(earnings__) AS $__ FROM table_name_64 WHERE player = "jim colbert" AND rank < 2
What years did the player from LaSalle play for the Rockets?
CREATE TABLE table_11734041_2 (years_for_rockets VARCHAR, school_club_team_country VARCHAR)
SELECT years_for_rockets FROM table_11734041_2 WHERE school_club_team_country = "LaSalle"
Which GWR numbers had a quantity less than 2 when the M&SWJ number was 9?
CREATE TABLE table_name_79 (gwr_nos VARCHAR, quantity VARCHAR, m VARCHAR, swj_nos VARCHAR)
SELECT gwr_nos FROM table_name_79 WHERE quantity < 2 AND m & swj_nos = "9"
What type of 3D game was released between 2008-2011?
CREATE TABLE table_name_87 (genre VARCHAR, type VARCHAR, release_date VARCHAR)
SELECT genre FROM table_name_87 WHERE type = "3d" AND release_date = "2008-2011"
Which Club/province has a Position of centre, and Caps of 27?
CREATE TABLE table_name_75 (club_province VARCHAR, position VARCHAR, caps VARCHAR)
SELECT club_province FROM table_name_75 WHERE position = "centre" AND caps = 27
What is the mark number when the lane for Rabangaki Nawai when it is greater than 2 and the heat is larger than 4?
CREATE TABLE table_name_44 (mark VARCHAR, name VARCHAR, lane VARCHAR, heat VARCHAR)
SELECT mark FROM table_name_44 WHERE lane > 2 AND heat > 4 AND name = "rabangaki nawai"
What is Lowest Rank, when Location is Rio De Janeiro, Brazil, and when Current Seating Capacity is less than 78,838?
CREATE TABLE table_name_42 (rank INTEGER, location VARCHAR, current_seating_capacity VARCHAR)
SELECT MIN(rank) FROM table_name_42 WHERE location = "rio de janeiro, brazil" AND current_seating_capacity < 78 OFFSET 838
Who all had the most assists in game 12?
CREATE TABLE table_17060277_5 (high_assists VARCHAR, game VARCHAR)
SELECT high_assists FROM table_17060277_5 WHERE game = 12
What is the Home with a Time that is 12:00?
CREATE TABLE table_name_34 (home VARCHAR, time VARCHAR)
SELECT home FROM table_name_34 WHERE time = "12:00"
Which state is Mount Chiginagak located in?
CREATE TABLE table_name_8 (state VARCHAR, mountain_peak VARCHAR)
SELECT state FROM table_name_8 WHERE mountain_peak = "mount chiginagak"
What is the Dismissals with a Venue with source: cricinfo.com?
CREATE TABLE table_name_43 (dismissals VARCHAR, venue VARCHAR)
SELECT dismissals FROM table_name_43 WHERE venue = "source: cricinfo.com"
What award did team 679 win?
CREATE TABLE table_15584199_2 (award_name VARCHAR, team_number VARCHAR)
SELECT award_name FROM table_15584199_2 WHERE team_number = 679
What is the power when ch# is tv-26 and dyfj-tv?
CREATE TABLE table_12379297_1 (power__kw_ VARCHAR, ch__number VARCHAR, callsign VARCHAR)
SELECT power__kw_ FROM table_12379297_1 WHERE ch__number = "TV-26" AND callsign = "DYFJ-TV"
Name the results for #23 lotus
CREATE TABLE table_27561503_2 (results VARCHAR, sports_20_winning_team VARCHAR)
SELECT COUNT(results) FROM table_27561503_2 WHERE sports_20_winning_team = "#23 Lotus"
Name the sum of year when start is less than 30
CREATE TABLE table_name_68 (year INTEGER, start INTEGER)
SELECT SUM(year) FROM table_name_68 WHERE start < 30
What class is volleyball in 2000?
CREATE TABLE table_name_40 (class VARCHAR, sport VARCHAR, year VARCHAR)
SELECT class FROM table_name_40 WHERE sport = "volleyball" AND year = 2000
What is the country that the player is from with +3 to par and score of 74-73=147?
CREATE TABLE table_name_30 (country VARCHAR, to_par VARCHAR, score VARCHAR)
SELECT country FROM table_name_30 WHERE to_par = "+3" AND score = 74 - 73 = 147
What integrated has an allied-related of centralized?
CREATE TABLE table_name_11 (integrated VARCHAR, allied_related VARCHAR)
SELECT integrated FROM table_name_11 WHERE allied_related = "centralized"
What horses does r. a. Scott own?
CREATE TABLE table_19624708_1 (horse VARCHAR, owner VARCHAR)
SELECT horse FROM table_19624708_1 WHERE owner = "R. A. Scott"
What was the latest Week on which the Result was l 17–0?
CREATE TABLE table_name_95 (week INTEGER, result VARCHAR)
SELECT MAX(week) FROM table_name_95 WHERE result = "l 17–0"
what is the location when the method is tko (punches) and the time is 2:48?
CREATE TABLE table_name_65 (location VARCHAR, method VARCHAR, time VARCHAR)
SELECT location FROM table_name_65 WHERE method = "tko (punches)" AND time = "2:48"
What is every high score for a strike rate of 84.88?
CREATE TABLE table_2985664_8 (high_score VARCHAR, strike_rate VARCHAR)
SELECT high_score FROM table_2985664_8 WHERE strike_rate = "84.88"
What was the delivery date when s2 (lst) type, s2 (frigate) type, c1-m type was delivered?
CREATE TABLE table_11552751_2 (ship_types_delivered VARCHAR)
SELECT 1 AS st_ship_delivery_date FROM table_11552751_2 WHERE ship_types_delivered = "S2 (LST) type, S2 (frigate) type, C1-M type"
Can you tell me the Host City that has the Games of vii?
CREATE TABLE table_name_35 (host_city VARCHAR, games VARCHAR)
SELECT host_city FROM table_name_35 WHERE games = "vii"
What is the result of the fight that had a tko (low kicks)?
CREATE TABLE table_name_98 (result VARCHAR, method VARCHAR)
SELECT result FROM table_name_98 WHERE method = "tko (low kicks)"
what's the score against crusaders
CREATE TABLE table_21256068_3 (score VARCHAR, opponent VARCHAR)
SELECT score FROM table_21256068_3 WHERE opponent = "Crusaders"
Which average overall has a Round of 1, and a Position of center?
CREATE TABLE table_name_80 (overall INTEGER, round VARCHAR, position VARCHAR)
SELECT AVG(overall) FROM table_name_80 WHERE round = 1 AND position = "center"
What was the expenditure (s$m) associated with an operating profit (s$m) of 717.1?
CREATE TABLE table_161591_2 (expenditure__s$m_ VARCHAR, operating_profit__s$m_ VARCHAR)
SELECT expenditure__s$m_ FROM table_161591_2 WHERE operating_profit__s$m_ = "717.1"
On which date was St Kilda the home team?
CREATE TABLE table_name_2 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_2 WHERE home_team = "st kilda"
What party is Peter Fisher from Vic serve in office?
CREATE TABLE table_name_65 (party VARCHAR, state VARCHAR, member VARCHAR)
SELECT party FROM table_name_65 WHERE state = "vic" AND member = "peter fisher"
What was the maximum fab (nm)?
CREATE TABLE table_26860595_2 (fab___nm__ INTEGER)
SELECT MAX(fab___nm__) FROM table_26860595_2
What score has wynne prakusya as the opponent in the final?
CREATE TABLE table_name_15 (score VARCHAR, opponent_in_the_final VARCHAR)
SELECT score FROM table_name_15 WHERE opponent_in_the_final = "wynne prakusya"
Find the first and last names of all the female (sex is F) students who have president votes.
CREATE TABLE STUDENT (Fname VARCHAR, LName VARCHAR, StuID VARCHAR, sex VARCHAR); CREATE TABLE VOTING_RECORD (President_VOTE VARCHAR)
SELECT DISTINCT T1.Fname, T1.LName FROM STUDENT AS T1 JOIN VOTING_RECORD AS T2 ON T1.StuID = T2.President_VOTE WHERE T1.sex = "F"
Name the winning party 2007 for result of labour hold and swing to gain less than 7.11 for wrexham
CREATE TABLE table_name_60 (winning_party_2007 VARCHAR, constituency VARCHAR, result VARCHAR, swing_to_gain VARCHAR)
SELECT winning_party_2007 FROM table_name_60 WHERE result = "labour hold" AND swing_to_gain < 7.11 AND constituency = "wrexham"
What was the score of the game against Charlotte?
CREATE TABLE table_name_42 (score VARCHAR, team VARCHAR)
SELECT score FROM table_name_42 WHERE team = "charlotte"
Tell me lived for name of 1994/2003
CREATE TABLE table_name_99 (lived_when___mya__ VARCHAR, discovery___publication_of_name VARCHAR)
SELECT lived_when___mya__ FROM table_name_99 WHERE discovery___publication_of_name = "1994/2003"
What's the tournamnet name that has a 2001 of 1r and 2011?
CREATE TABLE table_name_25 (tournament VARCHAR)
SELECT tournament FROM table_name_25 WHERE 2001 = "1r" AND 2011 = "a"
What County has a Median Family Income of $79,331?
CREATE TABLE table_name_3 (county VARCHAR, median_family_income VARCHAR)
SELECT county FROM table_name_3 WHERE median_family_income = "$79,331"
List all restaurant types.
CREATE TABLE Restaurant_Type (ResTypeName VARCHAR)
SELECT ResTypeName FROM Restaurant_Type
Which Points have a Game smaller than 60, and a Score of 2–0, and a February larger than 1?
CREATE TABLE table_name_99 (points INTEGER, february VARCHAR, game VARCHAR, score VARCHAR)
SELECT AVG(points) FROM table_name_99 WHERE game < 60 AND score = "2–0" AND february > 1
What year was incumbent Michael A. Feighan first elected?
CREATE TABLE table_1342218_35 (first_elected INTEGER, incumbent VARCHAR)
SELECT MIN(first_elected) FROM table_1342218_35 WHERE incumbent = "Michael A. Feighan"
What was the method of elimination for Kofi Kingston/
CREATE TABLE table_24628683_2 (method_of_elimination VARCHAR, wrestler VARCHAR)
SELECT method_of_elimination FROM table_24628683_2 WHERE wrestler = "Kofi Kingston"
What was the attendance for week 15?
CREATE TABLE table_name_25 (attendance VARCHAR, week VARCHAR)
SELECT attendance FROM table_name_25 WHERE week = 15
What was the record for the game on April 9, 2008?
CREATE TABLE table_name_9 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_9 WHERE date = "april 9, 2008"
What was the score for the tournament in Budapest?
CREATE TABLE table_name_14 (score VARCHAR, tournament VARCHAR)
SELECT score FROM table_name_14 WHERE tournament = "budapest"
What is the year when cable was 4.6%?
CREATE TABLE table_name_99 (year VARCHAR, cable VARCHAR)
SELECT year FROM table_name_99 WHERE cable = "4.6%"
Name all the tournaments that took place in Rhode Island.
CREATE TABLE table_11622840_1 (tournament VARCHAR, location VARCHAR)
SELECT tournament FROM table_11622840_1 WHERE location = "Rhode Island"
How much money has been raised that has $5,821,587 cash on hand?
CREATE TABLE table_name_75 (money_raised VARCHAR, _3q VARCHAR, cash_on_hand VARCHAR)
SELECT money_raised, _3q FROM table_name_75 WHERE cash_on_hand = "$5,821,587"
What is City, when State is California, when AAM Accredited is No, when ASTC Member is Yes, and when AAM Member is No?
CREATE TABLE table_name_30 (city VARCHAR, aam_member VARCHAR, astc_member VARCHAR, state VARCHAR, aam_accredited VARCHAR)
SELECT city FROM table_name_30 WHERE state = "california" AND aam_accredited = "no" AND astc_member = "yes" AND aam_member = "no"
What is Country, when Previous Team (League) is "Kingston Frontenacs ( OHL )", and when Player is "Anthony Stewart Category:Articles with hCards"?
CREATE TABLE table_name_45 (country VARCHAR, previous_team__league_ VARCHAR, player VARCHAR)
SELECT country FROM table_name_45 WHERE previous_team__league_ = "kingston frontenacs ( ohl )" AND player = "anthony stewart category:articles with hcards"
How much Total has a Bronze smaller than 13, and a Nation of netherlands (ned), and a Gold larger than 4?
CREATE TABLE table_name_20 (total VARCHAR, gold VARCHAR, bronze VARCHAR, nation VARCHAR)
SELECT COUNT(total) FROM table_name_20 WHERE bronze < 13 AND nation = "netherlands (ned)" AND gold > 4
What kind of Takuu has a North Marquesan of /vehine/?
CREATE TABLE table_name_83 (takuu VARCHAR, north_marquesan VARCHAR)
SELECT takuu FROM table_name_83 WHERE north_marquesan = "/vehine/"
What is the round for the Int. Adac-Preis Der Tourenwagen Von Sachsen-Anhalt?
CREATE TABLE table_name_92 (round VARCHAR, race VARCHAR)
SELECT round FROM table_name_92 WHERE race = "int. adac-preis der tourenwagen von sachsen-anhalt"
How many episodes had 9.90 million viewers?
CREATE TABLE table_12146637_1 (episode_title VARCHAR, us_viewers__millions_ VARCHAR)
SELECT COUNT(episode_title) FROM table_12146637_1 WHERE us_viewers__millions_ = "9.90"
What is the sum of forms with greater than 17 pages and a total of $1,801,154?
CREATE TABLE table_name_70 (form INTEGER, pages VARCHAR, total_assets VARCHAR)
SELECT SUM(form) FROM table_name_70 WHERE pages > 17 AND total_assets = "$1,801,154"
What week was the bye week?
CREATE TABLE table_name_46 (week INTEGER, opponent VARCHAR)
SELECT AVG(week) FROM table_name_46 WHERE opponent = "bye"
What is the fastest lap of the race where Giuseppe Farina was the winning driver?
CREATE TABLE table_name_76 (fastest_lap VARCHAR, winning_driver VARCHAR)
SELECT fastest_lap FROM table_name_76 WHERE winning_driver = "giuseppe farina"
What is the most series number with season 3?
CREATE TABLE table_11630008_6 (series__number INTEGER, season__number VARCHAR)
SELECT MAX(series__number) FROM table_11630008_6 WHERE season__number = 3
What is the public debt % of GDP in 2013 Q1 with a 4.7% GDP of EU in 2012?
CREATE TABLE table_1598533_8 (public_debt__percentage_of_gdp__2013_q1_ VARCHAR, gdp__percentage_of_eu__2012_ VARCHAR)
SELECT public_debt__percentage_of_gdp__2013_q1_ FROM table_1598533_8 WHERE gdp__percentage_of_eu__2012_ = "4.7%"
What is the position of the player with a height of m (ft 6in)?
CREATE TABLE table_name_53 (pos VARCHAR, height VARCHAR)
SELECT pos FROM table_name_53 WHERE height = "m (ft 6in)"
What was the Event for the prize of €850,000?
CREATE TABLE table_name_45 (event VARCHAR, prize VARCHAR)
SELECT event FROM table_name_45 WHERE prize = "€850,000"
What are the maximum fastest lap speed in races held after 2004 grouped by race name and ordered by year?
CREATE TABLE results (fastestlapspeed INTEGER, raceid VARCHAR); CREATE TABLE races (name VARCHAR, year INTEGER, raceid VARCHAR)
SELECT MAX(T2.fastestlapspeed), T1.name, T1.year FROM races AS T1 JOIN results AS T2 ON T1.raceid = T2.raceid WHERE T1.year > 2014 GROUP BY T1.name ORDER BY T1.year
Where did Carlton play?
CREATE TABLE table_name_9 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_9 WHERE away_team = "carlton"
What was the title in 1996?
CREATE TABLE table_name_26 (title VARCHAR, year VARCHAR)
SELECT title FROM table_name_26 WHERE year = "1996"
What are donor payments in the country where there are 12 children to 6 families (2 per family)?
CREATE TABLE table_16175217_1 (donor_payment VARCHAR, children_per_donor VARCHAR)
SELECT donor_payment FROM table_16175217_1 WHERE children_per_donor = "12 children to 6 families (2 per family)"