answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT AVG(gold) FROM table_name_39 WHERE nation = "sri lanka" AND silver < 10
Which Gold has a Nation of sri lanka, and a Silver smaller than 10?
CREATE TABLE table_name_39 (gold INTEGER, nation VARCHAR, silver VARCHAR)
SELECT competition FROM table_name_27 WHERE date = "15 august 2008"
What is the competition on 15 August 2008?
CREATE TABLE table_name_27 (competition VARCHAR, date VARCHAR)
SELECT AVG(gold) FROM table_name_99 WHERE rank = "15" AND total < 2
Which Gold has a Rank of 15, and a Total smaller than 2?
CREATE TABLE table_name_99 (gold INTEGER, rank VARCHAR, total VARCHAR)
SELECT pictorials FROM table_1566852_8 WHERE cover_model = "Lindsey Roeper"
List the pictorals from issues when lindsey roeper was the cover model.
CREATE TABLE table_1566852_8 (pictorials VARCHAR, cover_model VARCHAR)
SELECT br_sr_no FROM table_name_25 WHERE withdrawn = 1967 AND built < 1892 AND to_iow > 1927 AND sr_name = "freshwater"
What is the BR/SR number of Freshwater which was withdrawn in 1967 and built before 1892 with a To LoW year after 1927?
CREATE TABLE table_name_25 (br_sr_no VARCHAR, sr_name VARCHAR, to_iow VARCHAR, withdrawn VARCHAR, built VARCHAR)
SELECT title FROM table_29102100_1 WHERE directed_by = "Rich Correll" AND written_by = "Dennis Rinsler"
What is the title of the episode directed by Rich Correll and written by Dennis Rinsler?
CREATE TABLE table_29102100_1 (title VARCHAR, directed_by VARCHAR, written_by VARCHAR)
SELECT mult_1 FROM table_27277284_27 WHERE frequency = "1900MHz"
What are the possible multipliers for 1900MHz processors?
CREATE TABLE table_27277284_27 (mult_1 VARCHAR, frequency VARCHAR)
SELECT distance FROM table_name_18 WHERE date = "2008-01-12"
What is Distance, when Date is "2008-01-12"?
CREATE TABLE table_name_18 (distance VARCHAR, date VARCHAR)
SELECT date FROM table_name_38 WHERE team = "m3 motorsport" AND circuit = "winton motor raceway"
what date did the m3 motorsport team compete at winton motor raceway?
CREATE TABLE table_name_38 (date VARCHAR, team VARCHAR, circuit VARCHAR)
SELECT date FROM table_27755784_8 WHERE team = "New Orleans"
What is the date when the team is listed as New Orleans?
CREATE TABLE table_27755784_8 (date VARCHAR, team VARCHAR)
SELECT mailing_date FROM Documents_Mailed WHERE document_id = 7
What is the mail date of the document with id 7?
CREATE TABLE Documents_Mailed (mailing_date VARCHAR, document_id VARCHAR)
SELECT DISTINCT T2.problem_id, T2.problem_log_id FROM staff AS T1 JOIN problem_log AS T2 ON T1.staff_id = T2.assigned_to_staff_id WHERE T1.staff_first_name = "Rylan" AND T1.staff_last_name = "Homenick"
List the problem id and log id which are assigned to the staff named Rylan Homenick.
CREATE TABLE problem_log (problem_id VARCHAR, problem_log_id VARCHAR, assigned_to_staff_id VARCHAR); CREATE TABLE staff (staff_id VARCHAR, staff_first_name VARCHAR, staff_last_name VARCHAR)
SELECT episode__number FROM table_17481974_1 WHERE original_airdate = "September 1, 2003"
What are the numbers of episodes that were broadcast on September 1, 2003
CREATE TABLE table_17481974_1 (episode__number VARCHAR, original_airdate VARCHAR)
SELECT COUNT(scoring_average) FROM table_name_56 WHERE wins < 0
What is the scoring average where the wins are 0?
CREATE TABLE table_name_56 (scoring_average VARCHAR, wins INTEGER)
SELECT akira FROM table_name_58 WHERE milano_collection_at = "milano (10:29)"
What is the corresponding Akira when Milano Collection A.T is Milano (10:29)?
CREATE TABLE table_name_58 (akira VARCHAR, milano_collection_at VARCHAR)
SELECT written_by FROM table_27914606_1 WHERE us_viewers__millions_ = "5.56"
who were the writers of the episode that had 5.56 millions of north american viewers?
CREATE TABLE table_27914606_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR)
SELECT MIN(pages) FROM table_name_39 WHERE title = "al-jiniral fi matahatihi"
What's the fewest number of pages for the title al-jiniral fi matahatihi?
CREATE TABLE table_name_39 (pages INTEGER, title VARCHAR)
SELECT date FROM table_name_88 WHERE opposing_pitcher = "jack morris" AND inning = "4th"
Which Date has an Opposing Pitcher of jack morris, and an Inning of 4th?
CREATE TABLE table_name_88 (date VARCHAR, opposing_pitcher VARCHAR, inning VARCHAR)
SELECT result FROM table_name_99 WHERE attendance = "bye"
Which Result has an Attendance of bye?
CREATE TABLE table_name_99 (result VARCHAR, attendance VARCHAR)
SELECT wheelbase__mm_inch_ FROM table_20866024_4 WHERE model_designation = "97300"
What is the Wheelbase for Model 97300?
CREATE TABLE table_20866024_4 (wheelbase__mm_inch_ VARCHAR, model_designation VARCHAR)
SELECT result FROM table_name_16 WHERE party = "republican" AND first_elected = "1886" AND district = "ohio 17"
Which republican was first elected in 1886 in the district of ohio 17?
CREATE TABLE table_name_16 (result VARCHAR, district VARCHAR, party VARCHAR, first_elected VARCHAR)
SELECT COUNT(rank) FROM table_26041144_16 WHERE catches = 131
If the catches is 131, what is the rank total number?
CREATE TABLE table_26041144_16 (rank VARCHAR, catches VARCHAR)
SELECT MIN(wins) FROM table_name_45 WHERE team = "reno aces" AND appearances > 1
With Appearances larger than 1, what is the Wins for the Reno Aces Team?
CREATE TABLE table_name_45 (wins INTEGER, team VARCHAR, appearances VARCHAR)
SELECT share_of_votes FROM table_name_95 WHERE electors > 56 AND year > 1950
What was the share of votes when there were more than 56 electors and the year was more recent than 1950?
CREATE TABLE table_name_95 (share_of_votes VARCHAR, electors VARCHAR, year VARCHAR)
SELECT COUNT(δs_) AS ‡__cal_mol_−1_k_−1 FROM table_2068719_1 WHERE _butadiene = "1,2-dimethylene-cyclohexane"
Name the number of δs ‡ /cal mol −1 k −1 for butadiene being 1,2-dimethylene-cyclohexane
CREATE TABLE table_2068719_1 (δs_ VARCHAR, _butadiene VARCHAR)
SELECT result FROM table_name_47 WHERE original_title = "tiānmǎ cháfáng (天馬茶房)"
What is Result, when Original Title is "Tiānmǎ Cháfáng (天馬茶房)"?
CREATE TABLE table_name_47 (result VARCHAR, original_title VARCHAR)
SELECT COUNT(series__number) FROM table_12159115_3 WHERE written_by = "William N. Fordes"
How many episodes were written only by William N. Fordes?
CREATE TABLE table_12159115_3 (series__number VARCHAR, written_by VARCHAR)
SELECT united_fc FROM table_28759261_5 WHERE pifa_colaba_fc_u_17 = "Maratha United"
what is the united fc wehre pifa colaba is maratha united?
CREATE TABLE table_28759261_5 (united_fc VARCHAR, pifa_colaba_fc_u_17 VARCHAR)
SELECT MIN(poles) FROM table_name_52 WHERE fastest_laps < 0
What is the smallest number of poles when the fastest laps are less than 0?
CREATE TABLE table_name_52 (poles INTEGER, fastest_laps INTEGER)
SELECT date_of_appointment FROM table_27114708_2 WHERE replaced_by = "Alfredo Aglietti"
Please mention those appointment dates those are replaced by alfredo aglietti
CREATE TABLE table_27114708_2 (date_of_appointment VARCHAR, replaced_by VARCHAR)
SELECT MIN(drawn) FROM table_name_1 WHERE lost < 0
What's the lowest Drawn that has a Lost that's less than 0?
CREATE TABLE table_name_1 (drawn INTEGER, lost INTEGER)
SELECT date FROM table_name_44 WHERE course = "rome to florence"
What is the date of the Rome to Florence course?
CREATE TABLE table_name_44 (date VARCHAR, course VARCHAR)
SELECT COUNT(end_date) FROM table_24057191_2 WHERE average_viewers__millions_ = "4.2"
How many different end dates are there for the series seen by 4.2 million people?
CREATE TABLE table_24057191_2 (end_date VARCHAR, average_viewers__millions_ VARCHAR)
SELECT AVG(draws) FROM table_name_23 WHERE goals_against > 30
When the goals against were higher than 30, what was the average number of draws?
CREATE TABLE table_name_23 (draws INTEGER, goals_against INTEGER)
SELECT score_in_the_final FROM table_22597626_1 WHERE championship = "US Open"
What were the US Open's final scores?
CREATE TABLE table_22597626_1 (score_in_the_final VARCHAR, championship VARCHAR)
SELECT MAX(martyred) FROM table_name_65 WHERE beatified > 1909 AND name = "laurent-marie-joseph imbert / st. imbert" AND canonised > 1984
When was Laurent-Marie-Joseph Imbert / St. Imbert, who was beatified after 1909 and canonised after 1984, martyred?
CREATE TABLE table_name_65 (martyred INTEGER, canonised VARCHAR, beatified VARCHAR, name VARCHAR)
SELECT save FROM table_name_55 WHERE date = "june 15"
Which Save is on June 15?
CREATE TABLE table_name_55 (save VARCHAR, date VARCHAR)
SELECT home_team FROM table_name_77 WHERE away_team = "carlton"
Name the home team for carlton away team
CREATE TABLE table_name_77 (home_team VARCHAR, away_team VARCHAR)
SELECT attendance FROM table_name_46 WHERE result = "l 20-14"
What is the Attendance of the game with a Result of L 20-14?
CREATE TABLE table_name_46 (attendance VARCHAR, result VARCHAR)
SELECT bulgarian_name FROM table_name_95 WHERE english_name = "january"
What's the bulgarian word for January?
CREATE TABLE table_name_95 (bulgarian_name VARCHAR, english_name VARCHAR)
SELECT date FROM table_name_10 WHERE undecided = "42%"
Which date had the undecided percentage at 42%?
CREATE TABLE table_name_10 (date VARCHAR, undecided VARCHAR)
SELECT COUNT(losses) FROM table_name_12 WHERE team = "cornwall hc" AND goals_for > 18
How many times has the Cornwall HC team, that has scored more than 18 goals, lost ?
CREATE TABLE table_name_12 (losses VARCHAR, team VARCHAR, goals_for VARCHAR)
SELECT MIN(attendance) FROM table_name_80 WHERE away_fans < 151 AND opponent = "bury"
What was the lowest attendance at a game when there were fewer than 151 away fans and an opponent of Bury?
CREATE TABLE table_name_80 (attendance INTEGER, away_fans VARCHAR, opponent VARCHAR)
SELECT high_rebounds FROM table_17140608_7 WHERE date = "January 6"
Who had the high rebound total on january 6?
CREATE TABLE table_17140608_7 (high_rebounds VARCHAR, date VARCHAR)
SELECT MIN(week) FROM table_name_3 WHERE date = "september 26, 1965"
What was the earliest week on September 26, 1965?
CREATE TABLE table_name_3 (week INTEGER, date VARCHAR)
SELECT english_title FROM table_27423508_1 WHERE spanish_title = "Ladrones y mentirosos"
What was the English title of Ladrones Y Mentirosos?
CREATE TABLE table_27423508_1 (english_title VARCHAR, spanish_title VARCHAR)
SELECT director_s_ FROM table_name_44 WHERE film = "antonio's breakfast"
Who directed the film Antonio's Breakfast?
CREATE TABLE table_name_44 (director_s_ VARCHAR, film VARCHAR)
SELECT SUM(silver) FROM table_name_2 WHERE nation = "china" AND bronze < 7
Which Silver has a Nation of china, and a Bronze smaller than 7?
CREATE TABLE table_name_2 (silver INTEGER, nation VARCHAR, bronze VARCHAR)
SELECT SUM(attendance) FROM table_name_9 WHERE date = "8 march 2008"
How many people attended the game on 8 March 2008?
CREATE TABLE table_name_9 (attendance INTEGER, date VARCHAR)
SELECT ram___mib__ FROM table_name_71 WHERE model = "x30 mid-range"
What is the RAM (MiB) value for the X30 Mid-Range model?
CREATE TABLE table_name_71 (ram___mib__ VARCHAR, model VARCHAR)
SELECT landesliga_nord FROM table_20181270_3 WHERE landesliga_mitte = "ASV Neumarkt"
Name the landesliga nord for asv neumarkt
CREATE TABLE table_20181270_3 (landesliga_nord VARCHAR, landesliga_mitte VARCHAR)
SELECT MAX(top_5) FROM table_name_32 WHERE tournament = "the open championship" AND top_25 < 9
What is the highest Top-5 when the Tournament is the open championship, with a Top-25 less than 9?
CREATE TABLE table_name_32 (top_5 INTEGER, tournament VARCHAR, top_25 VARCHAR)
SELECT COUNT(season) FROM table_29471472_1 WHERE position = "3rd"
How many seasons are there for the 3rd position?
CREATE TABLE table_29471472_1 (season VARCHAR, position VARCHAR)
SELECT colour_commentator_s_ FROM table_name_24 WHERE network = "cbc" AND year = 1987
On CBC, who was the colour commentator in 1987?
CREATE TABLE table_name_24 (colour_commentator_s_ VARCHAR, network VARCHAR, year VARCHAR)
SELECT 08 AS _pts FROM table_22011138_7 WHERE team = "Rubio Ñú"
If the team is Rubio ñú, what is the 08 points?
CREATE TABLE table_22011138_7 (team VARCHAR)
SELECT score_in_the_final FROM table_22597626_2 WHERE partner = "Woodforde"
What is the final score if the partner is Woodforde?
CREATE TABLE table_22597626_2 (score_in_the_final VARCHAR, partner VARCHAR)
SELECT score FROM table_name_70 WHERE opponent = "sergi bruguera"
What was the score in the match against Sergi Bruguera?
CREATE TABLE table_name_70 (score VARCHAR, opponent VARCHAR)
SELECT ihsaa_football_class FROM table_name_93 WHERE location = "culver"
What is the IHSAA Football class at Culver?
CREATE TABLE table_name_93 (ihsaa_football_class VARCHAR, location VARCHAR)
SELECT death_date FROM table_name_49 WHERE place_of_death_or_residence = "united states" AND age__as_of_1_february_2014_ = "111 years, 61 days"
Which Death date has a Place of death or residence of united states, and an Age (as of 1 February 2014) of 111 years, 61 days?
CREATE TABLE table_name_49 (death_date VARCHAR, place_of_death_or_residence VARCHAR, age__as_of_1_february_2014_ VARCHAR)
SELECT driver FROM table_name_99 WHERE laps > 78 AND time_retired = "+ 1:09.4"
Which Driver has Laps larger than 78, and a Time/Retired of + 1:09.4?
CREATE TABLE table_name_99 (driver VARCHAR, laps VARCHAR, time_retired VARCHAR)
SELECT daytime FROM table_name_5 WHERE saturday = "yes" AND name = "exmouth"
Name the Daytime which has Saturday of yes and a Name of exmouth?
CREATE TABLE table_name_5 (daytime VARCHAR, saturday VARCHAR, name VARCHAR)
SELECT cfl_team FROM table_name_54 WHERE position = "dl"
Which CFL Team has a Position of dl?
CREATE TABLE table_name_54 (cfl_team VARCHAR, position VARCHAR)
SELECT T1.name_first, T1.name_last, T1.player_id, COUNT(*) FROM player AS T1 JOIN all_star AS T2 ON T1.player_id = T2.player_id GROUP BY T1.player_id ORDER BY COUNT(*) DESC LIMIT 1
What are the first name, last name and id of the player with the most all star game experiences? Also list the count.
CREATE TABLE player (name_first VARCHAR, name_last VARCHAR, player_id VARCHAR); CREATE TABLE all_star (player_id VARCHAR)
SELECT MIN(grid) FROM table_name_72 WHERE time_retired = "retirement" AND laps > 17
WHAT IS THE LOWEST GRID FOR RETIREMENT, AND LAPS LARGER THAN 17?
CREATE TABLE table_name_72 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)
SELECT identifier FROM table_name_92 WHERE frequency = "90.3"
What identifier has 90.3 as the frequency?
CREATE TABLE table_name_92 (identifier VARCHAR, frequency VARCHAR)
SELECT MIN(arabs_2001) FROM table_1939367_1 WHERE _percentage_2001 = "0.1%"
If %2001 is 0.1%, what is the minimum Arabs 2001 number?
CREATE TABLE table_1939367_1 (arabs_2001 INTEGER, _percentage_2001 VARCHAR)
SELECT episode FROM table_27319183_7 WHERE share___percentage_ = "41.5"
What episode had a share percentage of 41.5%?
CREATE TABLE table_27319183_7 (episode VARCHAR, share___percentage_ VARCHAR)
SELECT losses FROM table_name_56 WHERE season = "playoffs"
What are the losses of the playoffs season?
CREATE TABLE table_name_56 (losses VARCHAR, season VARCHAR)
SELECT driver FROM table_name_72 WHERE grid < 17 AND points > 0 AND laps = 87 AND time_retired = "1:48:11.023"
Which Driver has a Grid smaller than 17, and Points larger than 0, and a Lapse of 87, and a Time/Retired of 1:48:11.023?
CREATE TABLE table_name_72 (driver VARCHAR, time_retired VARCHAR, laps VARCHAR, grid VARCHAR, points VARCHAR)
SELECT tie_no FROM table_name_28 WHERE away_team = "altrincham"
Which Tie no that has an Away team of altrincham?
CREATE TABLE table_name_28 (tie_no VARCHAR, away_team VARCHAR)
SELECT score FROM table_22654073_7 WHERE team = "Chicago Bulls"
Name the score for chicago bulls
CREATE TABLE table_22654073_7 (score VARCHAR, team VARCHAR)
SELECT software FROM table_name_78 WHERE cost___usd__ = "free" AND latest_stable_date__version_ = "1.1"
What is the free sotware with the latest stable date version of 1.1?
CREATE TABLE table_name_78 (software VARCHAR, cost___usd__ VARCHAR, latest_stable_date__version_ VARCHAR)
SELECT Marketing_Region_Code FROM Drama_Workshop_Groups GROUP BY Marketing_Region_Code ORDER BY COUNT(*) DESC LIMIT 1
What is the marketing region code that has the most drama workshop groups?
CREATE TABLE Drama_Workshop_Groups (Marketing_Region_Code VARCHAR)
SELECT high_rebounds FROM table_17190012_7 WHERE score = "W 105–88 (OT)"
who did highest rebounds in the game with score w 105–88 (ot)
CREATE TABLE table_17190012_7 (high_rebounds VARCHAR, score VARCHAR)
SELECT MAX(no) FROM table_15621965_17 WHERE position = "Guard" AND school_club_team = "Wake Forest"
What is the latest number of the guard position from the Wake Forest school team?
CREATE TABLE table_15621965_17 (no INTEGER, position VARCHAR, school_club_team VARCHAR)
SELECT high_points FROM table_17355408_5 WHERE date = "December 29"
Name the highh points for december 29
CREATE TABLE table_17355408_5 (high_points VARCHAR, date VARCHAR)
SELECT coach FROM table_name_95 WHERE team = "adelaide galaxy"
Who is the coach for the Adelaide Galaxy team?
CREATE TABLE table_name_95 (coach VARCHAR, team VARCHAR)
SELECT total_career_titles FROM table_23408094_14 WHERE player = "Roy Emerson"
How many career titles does roy emerson have?
CREATE TABLE table_23408094_14 (total_career_titles VARCHAR, player VARCHAR)
SELECT name FROM table_name_62 WHERE snatch > 140 AND bodyweight < 84.55 AND clean_ & _jerk = "192.5"
What's the name of the athlete with a Snatch larger than 140, Bodyweight smaller than 84.55, and Clean and Jerk of 192.5?
CREATE TABLE table_name_62 (name VARCHAR, snatch VARCHAR, bodyweight VARCHAR, clean_ VARCHAR, _jerk VARCHAR)
SELECT womens_doubles FROM table_15001572_1 WHERE mens_doubles = "No competition"
What was the competition when there was no competition for mens doubles?
CREATE TABLE table_15001572_1 (womens_doubles VARCHAR, mens_doubles VARCHAR)
SELECT MAX(laps) FROM table_name_24 WHERE driver = "pedro diniz"
What is the high lap total for pedro diniz?
CREATE TABLE table_name_24 (laps INTEGER, driver VARCHAR)
SELECT gender FROM table_name_76 WHERE authority = "state" AND years = "1–8" AND decile < 10 AND roll = 36
Which gender has an Authority of state, Years of 1–8, and a Decile smaller than 10, and a Roll of 36?
CREATE TABLE table_name_76 (gender VARCHAR, roll VARCHAR, decile VARCHAR, authority VARCHAR, years VARCHAR)
SELECT AVG(water__sqmi_) FROM table_name_8 WHERE pop__2010_ > 47 AND township = "brenna" AND longitude < -97.171507
what is the average water sqmi with a population (2010) more than 47 in the Brenna Township with Longitude less than -97.171507
CREATE TABLE table_name_8 (water__sqmi_ INTEGER, longitude VARCHAR, pop__2010_ VARCHAR, township VARCHAR)
SELECT place_of_birth FROM table_name_94 WHERE elector = "laborante de panormo"
What is the place of birth for the elector Laborante de Panormo?
CREATE TABLE table_name_94 (place_of_birth VARCHAR, elector VARCHAR)
SELECT weekly_winner FROM table_name_85 WHERE air_date = "july 4, 2008"
What is Weekly Winner, when Air Date is "July 4, 2008"?
CREATE TABLE table_name_85 (weekly_winner VARCHAR, air_date VARCHAR)
SELECT date FROM table_17288845_8 WHERE score = "L 89–91 (OT)"
Name the date for score l 89–91 (ot)
CREATE TABLE table_17288845_8 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_29 WHERE set_2 = "25-13"
What is Date, when Set 2 is 25-13?
CREATE TABLE table_name_29 (date VARCHAR, set_2 VARCHAR)
SELECT MAX(number) FROM table_name_81 WHERE long > 50 AND yards < 762
What is the highest number when there were more than 50 long and less than 762 yards?
CREATE TABLE table_name_81 (number INTEGER, long VARCHAR, yards VARCHAR)
SELECT written_by FROM table_22580855_1 WHERE series_no = 170
who are the writer of the series episode number 170?
CREATE TABLE table_22580855_1 (written_by VARCHAR, series_no VARCHAR)
SELECT outgoing_manager FROM table_name_22 WHERE manner_of_departure = "contract terminated" AND date_of_vacancy = "1 september 2008"
who is the outgoing manager when the manner of departure is contract terminated and the date of vacancy is 1 september 2008?
CREATE TABLE table_name_22 (outgoing_manager VARCHAR, manner_of_departure VARCHAR, date_of_vacancy VARCHAR)
SELECT represent FROM table_23495048_2 WHERE height__mtr_ = "1.76"
Which country had a contestant that was 1.76 meters tall?
CREATE TABLE table_23495048_2 (represent VARCHAR, height__mtr_ VARCHAR)
SELECT bronze FROM table_name_50 WHERE total > 2 AND gold = "1" AND silver = "4"
What is the bronze when silver is 4 and gold is 1 and the total is more than 2
CREATE TABLE table_name_50 (bronze VARCHAR, silver VARCHAR, total VARCHAR, gold VARCHAR)
SELECT COUNT(nhl_team) FROM table_2850912_7 WHERE college_junior_club_team = "Newton North High School (USHS-MA)"
How many nhl teams are listed when college/junior/club team is listed as newton north high school (ushs-ma)?
CREATE TABLE table_2850912_7 (nhl_team VARCHAR, college_junior_club_team VARCHAR)
SELECT player FROM table_name_94 WHERE school = "hoover high school"
Which player attended Hoover High School?
CREATE TABLE table_name_94 (player VARCHAR, school VARCHAR)
SELECT AVG(zone) FROM table_name_54 WHERE stations = "waddon railway station" AND platforms > 2
Name the average zone for waddon railway station and has more than 2 platforms
CREATE TABLE table_name_54 (zone INTEGER, stations VARCHAR, platforms VARCHAR)
SELECT place FROM table_name_32 WHERE score = 73 - 75 - 71 - 73 = 292
What is the Place of the Player with a Score of 73-75-71-73=292?
CREATE TABLE table_name_32 (place VARCHAR, score VARCHAR)
SELECT MAX(clubs_remaining) FROM table_1859269_1 WHERE leagues_entering_at_this_round = "Süper Lig"
If leagues entering this round is Süper Lig, what is the maximum amount of clubs remaining?
CREATE TABLE table_1859269_1 (clubs_remaining INTEGER, leagues_entering_at_this_round VARCHAR)
SELECT replaced_by FROM table_17275810_7 WHERE team = "Ascoli"
Name the replacced by with ascoli
CREATE TABLE table_17275810_7 (replaced_by VARCHAR, team VARCHAR)
SELECT date FROM table_name_26 WHERE opponent = "indianapolis colts"
On what day did the team play the Indianapolis Colts?
CREATE TABLE table_name_26 (date VARCHAR, opponent VARCHAR)
SELECT COUNT(total) FROM table_name_1 WHERE host_city = "mexico city" AND gold < 4 AND bronze < 2
What's the Total for a Mexico City game with a Gold of less than 4 and a Bronze of less than 2?
CREATE TABLE table_name_1 (total VARCHAR, bronze VARCHAR, host_city VARCHAR, gold VARCHAR)