answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT name FROM table_name_40 WHERE year_appointed = 2009 AND years_until_mandatory_retirement = "13 years"
what name has an appointed year of 2009 and years until mandatory retirement of 13 years?
CREATE TABLE table_name_40 (name VARCHAR, year_appointed VARCHAR, years_until_mandatory_retirement VARCHAR)
SELECT runner_up FROM table_name_69 WHERE winning_score = −20(70 - 69 - 64 - 65 = 268)
Which Runner-up has a Winning score of −20 (70-69-64-65=268)?
CREATE TABLE table_name_69 (runner_up VARCHAR, winning_score VARCHAR)
SELECT u15_4th_quad FROM table_name_68 WHERE u15_3rd_quad = "bbc" AND u15_6th_quad = "gt"
Which U15 4th Quad had a U15 3rd Quad of BBC and U15 6th Quad of GT?
CREATE TABLE table_name_68 (u15_4th_quad VARCHAR, u15_3rd_quad VARCHAR, u15_6th_quad VARCHAR)
SELECT games FROM table_name_87 WHERE total < 4 AND sport = "swimming" AND years = "1968"
Tell me the games for total less than 4 for swimming 1968
CREATE TABLE table_name_87 (games VARCHAR, years VARCHAR, total VARCHAR, sport VARCHAR)
SELECT game_title FROM table_name_48 WHERE metacritic = "85/100" AND year_released < 2010
What game was released before 2010 with a Metacritic of 85/100?
CREATE TABLE table_name_48 (game_title VARCHAR, metacritic VARCHAR, year_released VARCHAR)
SELECT player FROM table_name_42 WHERE year_s__won < 1961 AND to_par = 6
What is Player, when Year(s) Won is before 1961, and when To Par is 6?
CREATE TABLE table_name_42 (player VARCHAR, year_s__won VARCHAR, to_par VARCHAR)
SELECT no FROM table_1827690_4 WHERE elected = "1462/63"
When 1462/63 was the elected what was the no.?
CREATE TABLE table_1827690_4 (no VARCHAR, elected VARCHAR)
SELECT MAX(col__m_) FROM table_18946749_4 WHERE island = "North island"
What is the highest value for col(m) at North Island?
CREATE TABLE table_18946749_4 (col__m_ INTEGER, island VARCHAR)
SELECT COUNT(total) FROM table_name_37 WHERE player = "ahmad fouzee masuri" AND fa_cup > 0
How many totals have a Player of ahmad fouzee masuri, and an FA Cup larger than 0?
CREATE TABLE table_name_37 (total VARCHAR, player VARCHAR, fa_cup VARCHAR)
SELECT 2007 FROM table_name_89 WHERE 2011 = "4r" AND 2009 = "2r"
How many sets were played in 2007 at the tournament that had 4R in 2011 and 2R in 2009?
CREATE TABLE table_name_89 (Id VARCHAR)
SELECT hanja___kanji FROM table_name_10 WHERE kana = "ちゅうせいほくどう"
What is the Hanja/Kanji of the Province with a Kana of ちゅうせいほくどう?
CREATE TABLE table_name_10 (hanja___kanji VARCHAR, kana VARCHAR)
SELECT place_of_birth FROM table_name_65 WHERE elevator = "lucius iii" AND cardinalatial_title = "deacon of s. giorgio in velabro"
What is the birth place for someone elevated by Lucius III, and has the Cardinalatial title of Deacon of S. Giorgio in Velabro?
CREATE TABLE table_name_65 (place_of_birth VARCHAR, elevator VARCHAR, cardinalatial_title VARCHAR)
SELECT date FROM table_name_63 WHERE decision = "osgood" AND score = "3 – 4"
What date has a Decision of osgood, and a Score of 3 – 4?
CREATE TABLE table_name_63 (date VARCHAR, decision VARCHAR, score VARCHAR)
SELECT island FROM table_name_73 WHERE age___ma__ = "1.0"
Name the island with age ma of 1.0
CREATE TABLE table_name_73 (island VARCHAR, age___ma__ VARCHAR)
SELECT Name FROM country ORDER BY Population DESC LIMIT 3
What are names of countries with the top 3 largest population?
CREATE TABLE country (Name VARCHAR, Population VARCHAR)
SELECT MAX(capacity) FROM table_name_1 WHERE location = "varna" AND venue = "ticha stadium"
What is the highest capacity for the venue, ticha stadium, located in varna?
CREATE TABLE table_name_1 (capacity INTEGER, location VARCHAR, venue VARCHAR)
SELECT position FROM table_name_84 WHERE mls_team = "metrostars"
What position did the MLS team metrostars pick?
CREATE TABLE table_name_84 (position VARCHAR, mls_team VARCHAR)
SELECT to_par FROM table_name_64 WHERE player = "momoko ueda"
Which To par has a Player of momoko ueda?
CREATE TABLE table_name_64 (to_par VARCHAR, player VARCHAR)
SELECT pronunciation_b FROM table_name_56 WHERE meaning_a = "grind"
Name the pronunciation b for meaning of grind
CREATE TABLE table_name_56 (pronunciation_b VARCHAR, meaning_a VARCHAR)
SELECT winner FROM table_name_33 WHERE loser = "baltimore colts" AND location = "schaefer stadium" AND result = "42-3"
Who is the Winner, when the Loser is the Baltimore Colts, when the Location is Schaefer Stadium, and when the Result is 42-3?
CREATE TABLE table_name_33 (winner VARCHAR, result VARCHAR, loser VARCHAR, location VARCHAR)
SELECT away_team FROM table_name_11 WHERE venue = "moorabbin oval"
What is moorabbin oval's away team?
CREATE TABLE table_name_11 (away_team VARCHAR, venue VARCHAR)
SELECT date FROM table_name_72 WHERE opposing_team = "mid-districts"
When has an Opposing Team of mid-districts?
CREATE TABLE table_name_72 (date VARCHAR, opposing_team VARCHAR)
SELECT outcome FROM table_name_39 WHERE date = "01/07/2007"
What was the outcome of the match on 01/07/2007?
CREATE TABLE table_name_39 (outcome VARCHAR, date VARCHAR)
SELECT MAX(rank_final) FROM table_26681728_1 WHERE score_final = "14.975"
What was the maximum rank-final value for a score of 14.975?
CREATE TABLE table_26681728_1 (rank_final INTEGER, score_final VARCHAR)
SELECT COUNT(*) FROM item WHERE NOT i_id IN (SELECT i_id FROM review)
Find the number of items that did not receive any review.
CREATE TABLE review (i_id VARCHAR); CREATE TABLE item (i_id VARCHAR)
SELECT largest_ethnic_group__2002_ FROM table_2562572_39 WHERE cyrillic_name_other_names = "Конак"
What is the ethnic group is конак?
CREATE TABLE table_2562572_39 (largest_ethnic_group__2002_ VARCHAR, cyrillic_name_other_names VARCHAR)
SELECT no_in_series FROM table_1876825_3 WHERE original_air_date = "February 25, 2001"
What episode number in the series originally aired on February 25, 2001?
CREATE TABLE table_1876825_3 (no_in_series VARCHAR, original_air_date VARCHAR)
SELECT result FROM table_name_98 WHERE category = "best musical revival"
What was the result for the best musical revival category?
CREATE TABLE table_name_98 (result VARCHAR, category VARCHAR)
SELECT AVG(total) FROM table_name_85 WHERE rank > 11 AND nation = "switzerland" AND silver < 0
What is the average total with a Rank larger than 11, a Nation of switzerland, and a Silver smaller than 0?
CREATE TABLE table_name_85 (total INTEGER, silver VARCHAR, rank VARCHAR, nation VARCHAR)
SELECT date FROM table_name_78 WHERE visitor = "toronto"
What was the date of the match against the visiting team, Toronto?
CREATE TABLE table_name_78 (date VARCHAR, visitor VARCHAR)
SELECT hr_no FROM table_name_75 WHERE built = "9/1915" AND lms_no = 14757
What's the HR Number when the LMS number is 14757 and has a built of 9/1915?
CREATE TABLE table_name_75 (hr_no VARCHAR, built VARCHAR, lms_no VARCHAR)
SELECT T1.part_id, T1.part_name FROM Parts AS T1 JOIN Part_Faults AS T2 ON T1.part_id = T2.part_id JOIN Skills_Required_To_Fix AS T3 ON T2.part_fault_id = T3.part_fault_id GROUP BY T1.part_id ORDER BY COUNT(*) DESC LIMIT 1
Which part fault requires the most number of skills to fix? List part id and name.
CREATE TABLE Part_Faults (part_id VARCHAR, part_fault_id VARCHAR); CREATE TABLE Skills_Required_To_Fix (part_fault_id VARCHAR); CREATE TABLE Parts (part_id VARCHAR, part_name VARCHAR)
SELECT name AS origin FROM table_16799784_9 WHERE name = "Morrigan Linea"
What is the name origin of Morrigan Linea?
CREATE TABLE table_16799784_9 (name VARCHAR)
SELECT opponent FROM table_name_49 WHERE attendance = "23,150"
Attendance of 23,150 had what opponent?
CREATE TABLE table_name_49 (opponent VARCHAR, attendance VARCHAR)
SELECT MAX(year) FROM table_name_59 WHERE rank < 28 AND accolade = "the 100 greatest metal albums of the decade"
What is the highest Year, when Rank is less than 28, and when Accolade is "The 100 greatest metal albums of the decade"?
CREATE TABLE table_name_59 (year INTEGER, rank VARCHAR, accolade VARCHAR)
SELECT Team FROM Elimination WHERE Eliminated_By = "Orton" INTERSECT SELECT Team FROM Elimination WHERE Eliminated_By = "Benjamin"
Show the teams that have both wrestlers eliminated by "Orton" and wrestlers eliminated by "Benjamin".
CREATE TABLE Elimination (Team VARCHAR, Eliminated_By VARCHAR)
SELECT MIN(year) FROM table_28232443_1 WHERE artist = "Kid Creole and the Coconuts"
what was the first year that kid creole and the coconuts recorded with I Too Have Seen The Woods / Sire Records?
CREATE TABLE table_28232443_1 (year INTEGER, artist VARCHAR)
SELECT MAX(first_elected) FROM table_name_52 WHERE district = "illinois 3"
Which First elected has a District of illinois 3?
CREATE TABLE table_name_52 (first_elected INTEGER, district VARCHAR)
SELECT gdp__ppp__$m_usd FROM table_name_86 WHERE area__km²_ = "61,395"
How much is the GDP for an area of 61,395?
CREATE TABLE table_name_86 (gdp__ppp__$m_usd VARCHAR, area__km²_ VARCHAR)
SELECT away_team AS score FROM table_name_37 WHERE away_team = "north melbourne"
What is the score of away team, North Melbourne?
CREATE TABLE table_name_37 (away_team VARCHAR)
SELECT total FROM table_name_39 WHERE league_a = "79 (221)"
What is the Total when the league shows 79 (221)?
CREATE TABLE table_name_39 (total VARCHAR, league_a VARCHAR)
SELECT genre FROM table_27529608_21 WHERE age_s_ = "29-30"
What is the genre for the group with ages 29-30?
CREATE TABLE table_27529608_21 (genre VARCHAR, age_s_ VARCHAR)
SELECT score FROM table_name_48 WHERE to_par = "–1" AND player = "henrik stenson"
With a To par of –1, what is Player Henrik Stenson's Score?
CREATE TABLE table_name_48 (score VARCHAR, to_par VARCHAR, player VARCHAR)
SELECT d_42_√ FROM table_name_67 WHERE d_44_√ = "r 36 √"
Name the D 42 √ when it has D 44 √ of r 36 √
CREATE TABLE table_name_67 (d_42_√ VARCHAR, d_44_√ VARCHAR)
SELECT association_agreement FROM table_name_69 WHERE state = "bosnia and herzegovina"
What is the association agreement for bosnia and herzegovina?
CREATE TABLE table_name_69 (association_agreement VARCHAR, state VARCHAR)
SELECT director FROM table_name_85 WHERE title = "“some lapse of time”"
What is the Director for the episode titled “some lapse of time”?
CREATE TABLE table_name_85 (director VARCHAR, title VARCHAR)
SELECT COUNT(*) FROM customers AS t1 JOIN customer_addresses AS t2 ON t1.customer_id = t2.customer_id JOIN addresses AS t3 ON t2.address_id = t3.address_id WHERE t3.city = "Lake Geovannyton"
How many customers are living in city "Lake Geovannyton"?
CREATE TABLE customers (customer_id VARCHAR); CREATE TABLE addresses (address_id VARCHAR, city VARCHAR); CREATE TABLE customer_addresses (customer_id VARCHAR, address_id VARCHAR)
SELECT away_team AS score FROM table_name_38 WHERE venue = "junction oval"
What was the away team's score in Junction Oval?
CREATE TABLE table_name_38 (away_team VARCHAR, venue VARCHAR)
SELECT original_air_date FROM table_26824484_1 WHERE production_code = "3AKY05"
What date did the episode with production code 3aky05 air?
CREATE TABLE table_26824484_1 (original_air_date VARCHAR, production_code VARCHAR)
SELECT score FROM table_name_92 WHERE country = "south africa"
What score has south africa as the country?
CREATE TABLE table_name_92 (score VARCHAR, country VARCHAR)
SELECT tie_no FROM table_name_21 WHERE away_team = "northwich victoria"
What was the tie no when the away team was northwich victoria?
CREATE TABLE table_name_21 (tie_no VARCHAR, away_team VARCHAR)
SELECT result FROM table_1346118_5 WHERE incumbent = "Clarence F. Lea"
What was the result of the election when Clarence F. Lea was the incumbent?
CREATE TABLE table_1346118_5 (result VARCHAR, incumbent VARCHAR)
SELECT high_rebounds FROM table_27734769_9 WHERE team = "Minnesota"
Who did the high rebounds for the team Minnesota?
CREATE TABLE table_27734769_9 (high_rebounds VARCHAR, team VARCHAR)
SELECT MAX(home_att) FROM table_26816495_26 WHERE avg = "11,322"
What is the maximum home attendance if the average is 11,322?
CREATE TABLE table_26816495_26 (home_att INTEGER, avg VARCHAR)
SELECT points FROM table_10748727_1 WHERE series = "British Formula Three" AND team_name = "Fortec Motorsport"
how much did the british formula three called "fortec motorsport" score?
CREATE TABLE table_10748727_1 (points VARCHAR, series VARCHAR, team_name VARCHAR)
SELECT podiums FROM table_name_11 WHERE races = "1" AND final_placing = "5th"
Which Podium has 1 Race and a Final Place of 5th?
CREATE TABLE table_name_11 (podiums VARCHAR, races VARCHAR, final_placing VARCHAR)
SELECT position FROM table_15592941_1 WHERE college = "Florida State"
What position(s) do players from florida state play?
CREATE TABLE table_15592941_1 (position VARCHAR, college VARCHAR)
SELECT MIN(ties) FROM table_name_12 WHERE league = "nfl" AND losses < 2 AND wins < 15
What is the lowest number of ties in the NFL, with less than 2 losses and less than 15 wins?
CREATE TABLE table_name_12 (ties INTEGER, wins VARCHAR, league VARCHAR, losses VARCHAR)
SELECT construction_completed FROM table_name_76 WHERE name = "nelson tunnel/commodore waste rock"
What construction completed is named nelson tunnel/commodore waste rock?
CREATE TABLE table_name_76 (construction_completed VARCHAR, name VARCHAR)
SELECT losses FROM table_name_92 WHERE pct = ".451" AND finish = "6th"
Which Losses have a Pct of .451 and Finished 6th?
CREATE TABLE table_name_92 (losses VARCHAR, pct VARCHAR, finish VARCHAR)
SELECT machine FROM table_name_59 WHERE rank = "4th" AND wins = 2
What is the name of the machine that ranked 4th and has 2 wins?
CREATE TABLE table_name_59 (machine VARCHAR, rank VARCHAR, wins VARCHAR)
SELECT record FROM table_name_30 WHERE visitor = "calgary"
Visitor of calgary has what record?
CREATE TABLE table_name_30 (record VARCHAR, visitor VARCHAR)
SELECT club FROM table_name_34 WHERE stadium = "stc krymteplitsia"
What club does the stadium stc krymteplitsia belong to?
CREATE TABLE table_name_34 (club VARCHAR, stadium VARCHAR)
SELECT AVG(time) FROM table_name_8 WHERE nationality = "united states" AND lane < 5
The swimmer from the United States in a lane less than 5, had what as the average time?
CREATE TABLE table_name_8 (time INTEGER, nationality VARCHAR, lane VARCHAR)
SELECT MIN(series_no) FROM table_19236587_4 WHERE season_no = 2
What's the series number of the episode with season number 2?
CREATE TABLE table_19236587_4 (series_no INTEGER, season_no VARCHAR)
SELECT captain FROM table_25794138_1 WHERE team = "North East Stars"
Wh owas the captian of the north east stars?
CREATE TABLE table_25794138_1 (captain VARCHAR, team VARCHAR)
SELECT platform FROM table_name_97 WHERE system = "nintendo ds" AND name = "nds4droid"
What platform is nds4droid on for the nintendo ds?
CREATE TABLE table_name_97 (platform VARCHAR, system VARCHAR, name VARCHAR)
SELECT team FROM table_17802778_1 WHERE year = 2003
What team(s) were in 2003?
CREATE TABLE table_17802778_1 (team VARCHAR, year VARCHAR)
SELECT MAX(mpg) FROM cars_data WHERE cylinders = 8 OR year < 1980
What is the maximum miles per gallon of the car with 8 cylinders or produced before 1980 ?
CREATE TABLE cars_data (mpg INTEGER, cylinders VARCHAR, year VARCHAR)
SELECT SUM(january) FROM table_name_70 WHERE opponent = "@ montreal canadiens" AND game > 49
What day in January was the game greater than 49 and had @ Montreal Canadiens as opponents?
CREATE TABLE table_name_70 (january INTEGER, opponent VARCHAR, game VARCHAR)
SELECT genes FROM table_name_13 WHERE species = "burkholderia pseudomallei" AND base_pairs = "4,126,292"
How many genes are in species burkholderia pseudomallei with 4,126,292 base pairs?
CREATE TABLE table_name_13 (genes VARCHAR, species VARCHAR, base_pairs VARCHAR)
SELECT SUM(losses) FROM table_name_56 WHERE against > 1412 AND wins = 10 AND draws < 0
What is the total losses against 1412, and 10 wins, but draws less than 0?
CREATE TABLE table_name_56 (losses INTEGER, draws VARCHAR, against VARCHAR, wins VARCHAR)
SELECT MAX(meas_num) FROM table_256286_13 WHERE description = "Extending Eminent Domain Over Roads and Ways"
When extending eminent domain over roads and ways is the description what is the highest means number?
CREATE TABLE table_256286_13 (meas_num INTEGER, description VARCHAR)
SELECT guest FROM table_name_25 WHERE date = "24.11.07" AND result = "0:1" AND time = "16:00"
Who was the guest on 24.11.07 when the result was 0:1 at 16:00?
CREATE TABLE table_name_25 (guest VARCHAR, time VARCHAR, date VARCHAR, result VARCHAR)
SELECT district FROM table_1342451_16 WHERE incumbent = "James O'Connor"
What district did James O'Connor belong to?
CREATE TABLE table_1342451_16 (district VARCHAR, incumbent VARCHAR)
SELECT login_name FROM Students WHERE family_name = "Ward"
What are the login names of the students with family name "Ward"?
CREATE TABLE Students (login_name VARCHAR, family_name VARCHAR)
SELECT MIN(bronze) FROM table_name_35 WHERE silver = 2 AND total = 8
What is the lowest bronze number when silver shows 2, and the total is 8?
CREATE TABLE table_name_35 (bronze INTEGER, silver VARCHAR, total VARCHAR)
SELECT MIN(enrollment) FROM table_2562113_1 WHERE joined = 1987
What is the enrollment for the institution that joined in 1987?
CREATE TABLE table_2562113_1 (enrollment INTEGER, joined VARCHAR)
SELECT runner_up FROM table_name_26 WHERE winning_score = −16(68 - 70 - 65 - 65 = 268)
who is the runner-up when the winning score is −16 (68-70-65-65=268)?
CREATE TABLE table_name_26 (runner_up VARCHAR, winning_score VARCHAR)
SELECT AVG(crowd) FROM table_name_2 WHERE home_team = "richmond"
What is the average crowd size for Richmond home games?
CREATE TABLE table_name_2 (crowd INTEGER, home_team VARCHAR)
SELECT title, director FROM film WHERE NOT film_id IN (SELECT film_id FROM film_market_estimation AS T1 JOIN market AS T2 ON T1.market_id = T2.Market_ID WHERE country = 'China')
What are the titles and directors of the films were never presented in China?
CREATE TABLE film (title VARCHAR, director VARCHAR, film_id VARCHAR, country VARCHAR); CREATE TABLE market (Market_ID VARCHAR); CREATE TABLE film_market_estimation (market_id VARCHAR)
SELECT nickname FROM table_11658094_3 WHERE institution = "Newberry College"
What is the nickname of the newberry college?
CREATE TABLE table_11658094_3 (nickname VARCHAR, institution VARCHAR)
SELECT MIN(total) FROM table_name_92 WHERE bronze = 0 AND rank < 2
What is the lowest Total containing a Bronze of 0 and Rank smaller than 2?
CREATE TABLE table_name_92 (total INTEGER, bronze VARCHAR, rank VARCHAR)
SELECT MIN(losses) FROM table_name_92 WHERE wins < 0
Which Losses is the lowest one that has Wins smaller than 0?
CREATE TABLE table_name_92 (losses INTEGER, wins INTEGER)
SELECT payment_method_code, party_phone FROM parties WHERE party_email = "enrico09@example.com"
Find the payment method and phone of the party with email "enrico09@example.com".
CREATE TABLE parties (payment_method_code VARCHAR, party_phone VARCHAR, party_email VARCHAR)
SELECT AVG(apps) FROM table_name_43 WHERE league = "major league soccer" AND club = "seattle sounders fc" AND goals < 0
What are the average apps for the Major League Soccer team club for the Seattle Sounders FC that has goals less than 0?
CREATE TABLE table_name_43 (apps INTEGER, goals VARCHAR, league VARCHAR, club VARCHAR)
SELECT event_date FROM table_28003469_1 WHERE event_day = "Sunday" AND starting_time = "9:30 am"
What is every event date on Sunday with a starting time of 9:30 am?
CREATE TABLE table_28003469_1 (event_date VARCHAR, event_day VARCHAR, starting_time VARCHAR)
SELECT main_legion_base FROM table_242785_3 WHERE date_disband = "70 XX"
What is the main legion base that disbanded 70 xx?
CREATE TABLE table_242785_3 (main_legion_base VARCHAR, date_disband VARCHAR)
SELECT home__1st_leg_ FROM table_14219514_2 WHERE home__2nd_leg_ = "Temperley"
When temperley is the home (2nd leg) what is the home (1st leg)?
CREATE TABLE table_14219514_2 (home__1st_leg_ VARCHAR, home__2nd_leg_ VARCHAR)
SELECT average_speed__mph_ FROM table_17802778_1 WHERE race_time = "1:45:00"
What was the average speed (mph) for the racer who finished in 1:45:00?
CREATE TABLE table_17802778_1 (average_speed__mph_ VARCHAR, race_time VARCHAR)
SELECT position FROM table_16494599_1 WHERE years_for_grizzlies = "1995-1996"
What position is the player who was on the Grizzlies from 1995-1996?
CREATE TABLE table_16494599_1 (position VARCHAR, years_for_grizzlies VARCHAR)
SELECT season FROM table_name_2 WHERE home = "2-3"
Which season had a home 2-3?
CREATE TABLE table_name_2 (season VARCHAR, home VARCHAR)
SELECT type FROM table_name_49 WHERE title = "so alive"
which Type has a Title of so alive?
CREATE TABLE table_name_49 (type VARCHAR, title VARCHAR)
SELECT playoffs FROM table_name_70 WHERE year = "2007-08"
What Playoffs were held during the years of 2007-08?
CREATE TABLE table_name_70 (playoffs VARCHAR, year VARCHAR)
SELECT nominee FROM table_name_86 WHERE category = "best supporting actress"
What's the nominee for best supporting actress?
CREATE TABLE table_name_86 (nominee VARCHAR, category VARCHAR)
SELECT surface FROM table_name_59 WHERE opponent = "rafael nadal" AND NOT event = 2
Which Surface has an Opponent of rafael nadal, and an Event of 2?
CREATE TABLE table_name_59 (surface VARCHAR, opponent VARCHAR, event VARCHAR)
SELECT position FROM table_1004033_1 WHERE draft_pick__number = "10"
What position did the #10 draft pick play?
CREATE TABLE table_1004033_1 (position VARCHAR, draft_pick__number VARCHAR)
SELECT home_team AS score FROM table_name_6 WHERE venue = "victoria park"
What was the home team's score in the match at Victoria Park?
CREATE TABLE table_name_6 (home_team VARCHAR, venue VARCHAR)
SELECT transfer_window FROM table_name_21 WHERE moving_from = "fenerbahçe"
What was the transfer window with a moving from of fenerbahçe?
CREATE TABLE table_name_21 (transfer_window VARCHAR, moving_from VARCHAR)
SELECT city_district__stadtteil_ FROM table_10992_3 WHERE no = "47"
What is the city where the number is 47?
CREATE TABLE table_10992_3 (city_district__stadtteil_ VARCHAR, no VARCHAR)