answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT writer FROM table_name_89 WHERE producer = "phil collinson" AND director = "alice troughton"
Who was the writer that the director was Alice Troughton and the producer was Phil Collinson?
CREATE TABLE table_name_89 (writer VARCHAR, producer VARCHAR, director VARCHAR)
SELECT area__km²_ FROM table_1691800_2 WHERE municipality = "Labrador"
what is th area where the municipaity is labrador?
CREATE TABLE table_1691800_2 (area__km²_ VARCHAR, municipality VARCHAR)
SELECT MAX(high_schools) FROM table_2367847_2 WHERE district_wide = 31851
Name the most high schools for 31851
CREATE TABLE table_2367847_2 (high_schools INTEGER, district_wide VARCHAR)
SELECT pronunciation_spelled_free FROM table_name_24 WHERE pronunciation_spelled_checked = "ɑ"
What is Pronunciation Spelled Free, when Pronunciation Spelled Checked is "ɑ"?
CREATE TABLE table_name_24 (pronunciation_spelled_free VARCHAR, pronunciation_spelled_checked VARCHAR)
SELECT driver FROM table_name_3 WHERE laps < 53 AND grid > 17 AND time_retired = "spin"
Who was the driver with less than 53 laps, Grid larger than 17, and a Time/Retired of spin?
CREATE TABLE table_name_3 (driver VARCHAR, time_retired VARCHAR, laps VARCHAR, grid VARCHAR)
SELECT city_location FROM table_name_38 WHERE race_name = "gould rex mays classic 150"
Where did the Gould Rex Mays Classic 150 occur?
CREATE TABLE table_name_38 (city_location VARCHAR, race_name VARCHAR)
SELECT formed_from FROM table_name_58 WHERE type = "4-cor"
Name the formed that has type of 4-cor
CREATE TABLE table_name_58 (formed_from VARCHAR, type VARCHAR)
SELECT vehicle_flight__number FROM table_name_31 WHERE pilot = "peterson" AND velocity__km_h_ = 649
What Vehicle Flight # has Pilot Peterson and Velocity (km/h) of 649?
CREATE TABLE table_name_31 (vehicle_flight__number VARCHAR, pilot VARCHAR, velocity__km_h_ VARCHAR)
SELECT won FROM table_15352382_1 WHERE against = 20
if Against is 20 how much is Won?
CREATE TABLE table_15352382_1 (won VARCHAR, against VARCHAR)
SELECT moving_to FROM table_name_18 WHERE name = "leon andreasen"
What is Moving To, when Name is "Leon Andreasen"?
CREATE TABLE table_name_18 (moving_to VARCHAR, name VARCHAR)
SELECT T2.Weight FROM entrepreneur AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID ORDER BY T1.Money_Requested DESC
What are the weights of entrepreneurs in descending order of money requested?
CREATE TABLE entrepreneur (People_ID VARCHAR, Money_Requested VARCHAR); CREATE TABLE people (Weight VARCHAR, People_ID VARCHAR)
SELECT venue FROM table_name_71 WHERE opponent = "queensland" AND batsmen = "jamie cox & daniel marsh"
Where did jamie cox & daniel marsh play against queensland?
CREATE TABLE table_name_71 (venue VARCHAR, opponent VARCHAR, batsmen VARCHAR)
SELECT AVG(_number_of_candidates) FROM table_name_36 WHERE _percentage_of_popular_vote = "41.37%"
What is the # of candidates that have a popular vote of 41.37%?
CREATE TABLE table_name_36 (_number_of_candidates INTEGER, _percentage_of_popular_vote VARCHAR)
SELECT SUM(races) FROM table_name_9 WHERE series = "toyota racing series" AND podiums > 3
What is the sum of Races, when Series is Toyota Racing Series, and when Podiums is greater than 3?
CREATE TABLE table_name_9 (races INTEGER, series VARCHAR, podiums VARCHAR)
SELECT percentage_of_total_area FROM table_15555661_2 WHERE percentage_protected = "8.06"
What is the percentage of total area in the ecozone that the percentage protected is 8.06?
CREATE TABLE table_15555661_2 (percentage_of_total_area VARCHAR, percentage_protected VARCHAR)
SELECT score FROM table_name_17 WHERE date = "november 10, 2006"
What is the score of the game on November 10, 2006?
CREATE TABLE table_name_17 (score VARCHAR, date VARCHAR)
SELECT AVG(T1.age) FROM student AS T1 JOIN lives_in AS T2 ON T1.stuid = T2.stuid JOIN dorm AS T3 ON T3.dormid = T2.dormid WHERE T3.student_capacity = (SELECT MAX(student_capacity) FROM dorm)
Find the average age of students who are living in the dorm with the largest capacity.
CREATE TABLE dorm (student_capacity INTEGER); CREATE TABLE student (age INTEGER, stuid VARCHAR); CREATE TABLE lives_in (stuid VARCHAR, dormid VARCHAR); CREATE TABLE dorm (dormid VARCHAR, student_capacity INTEGER)
SELECT origin FROM table_287159_1 WHERE other_abbreviation = "Tele"
What is the origin of the constellation that can be abbreviated to tele?
CREATE TABLE table_287159_1 (origin VARCHAR, other_abbreviation VARCHAR)
SELECT debut FROM table_name_35 WHERE country = "england" AND name = "sydney barnes"
When did Sydney Barnes debut in England?
CREATE TABLE table_name_35 (debut VARCHAR, country VARCHAR, name VARCHAR)
SELECT AVG(a_krajka) FROM table_name_60 WHERE r_magjistari < 6 AND d_tukiqi = 6 AND rank < 5
For R. Magjistari scores under 6, D. Tukiqi scores of 6, and ranks under 5, what is the average A. Krajka score?
CREATE TABLE table_name_60 (a_krajka INTEGER, rank VARCHAR, r_magjistari VARCHAR, d_tukiqi VARCHAR)
SELECT runner_up FROM table_name_25 WHERE year = 1915
who was the runner-up in the 1915 competition for 'Articles with HCards'?
CREATE TABLE table_name_25 (runner_up VARCHAR, year VARCHAR)
SELECT name FROM table_name_97 WHERE type = "loan" AND moving_to = "apollon kalamaria"
Which Name has a Type of loan, and a Moving to of apollon kalamaria?
CREATE TABLE table_name_97 (name VARCHAR, type VARCHAR, moving_to VARCHAR)
SELECT identifier FROM table_name_45 WHERE power = "50,000 watts"
What is the identifier that has 50,000 watts of power?
CREATE TABLE table_name_45 (identifier VARCHAR, power VARCHAR)
SELECT score FROM table_name_76 WHERE date = "11 march 2001"
What is the Score on 11 march 2001?
CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR)
SELECT MAX(age) FROM table_197638_6 WHERE player = "Roy Emerson"
At what age did Roy Emerson complete the Grand Slam?
CREATE TABLE table_197638_6 (age INTEGER, player VARCHAR)
SELECT density__pop_km²_ FROM table_1425958_1 WHERE _percentage_change = "8.8"
When the change is 8.8%, what is the density (pop/km²)?
CREATE TABLE table_1425958_1 (density__pop_km²_ VARCHAR, _percentage_change VARCHAR)
SELECT COUNT(against) FROM table_name_63 WHERE date = "27/02/2005"
What is the total number of Against, when Date is "27/02/2005"?
CREATE TABLE table_name_63 (against VARCHAR, date VARCHAR)
SELECT name FROM table_name_77 WHERE runner_up = "sania mirza elena vesnina"
What is the Name when the runner-up was Sania Mirza Elena Vesnina?
CREATE TABLE table_name_77 (name VARCHAR, runner_up VARCHAR)
SELECT position FROM table_name_45 WHERE overall > 147 AND pick__number = 21
Which Position has an Overall larger than 147, and a Pick # of 21?
CREATE TABLE table_name_45 (position VARCHAR, overall VARCHAR, pick__number VARCHAR)
SELECT drawn FROM table_name_24 WHERE played > 4 AND first_game = 2000
How many times was there a draw when played is more than 4 and the first game is in 2000?
CREATE TABLE table_name_24 (drawn VARCHAR, played VARCHAR, first_game VARCHAR)
SELECT population_in_millions FROM table_name_73 WHERE gdp_2012_millions_of_euro = "600,638"
What is Population in Millions, when GDP 2012 Millions of Euro is 600,638?
CREATE TABLE table_name_73 (population_in_millions VARCHAR, gdp_2012_millions_of_euro VARCHAR)
SELECT player FROM table_name_5 WHERE cfl_team = "saskatchewan roughriders"
Which player was drafted by the Saskatchewan Roughriders?
CREATE TABLE table_name_5 (player VARCHAR, cfl_team VARCHAR)
SELECT date FROM table_name_78 WHERE votes = "50,324"
On what date were there 50,324 votes?
CREATE TABLE table_name_78 (date VARCHAR, votes VARCHAR)
SELECT COUNT(year) FROM table_27441210_6 WHERE weeks_at__number1 = 8
How many years have a weeks at #1 value of exactly 8?
CREATE TABLE table_27441210_6 (year VARCHAR, weeks_at__number1 VARCHAR)
SELECT MIN(gold) FROM table_name_92 WHERE total < 5 AND bronze > 2
For countries with total number of medals less than 5 and more than 2 bronze medals, what's the lowest number of gold medals?
CREATE TABLE table_name_92 (gold INTEGER, total VARCHAR, bronze VARCHAR)
SELECT losing_bonus FROM table_12792876_4 WHERE points = "96"
Name the losing bonus of 96 points
CREATE TABLE table_12792876_4 (losing_bonus VARCHAR, points VARCHAR)
SELECT psip_short_name FROM table_name_55 WHERE channel > 63.4
What is the short name for a channelgreater than 63.4?
CREATE TABLE table_name_55 (psip_short_name VARCHAR, channel INTEGER)
SELECT MAX(attendance) FROM table_name_61 WHERE game_site = "milwaukee county stadium"
What is the highest attendance rate at Milwaukee County Stadium?
CREATE TABLE table_name_61 (attendance INTEGER, game_site VARCHAR)
SELECT SUM(crowd) FROM table_name_98 WHERE venue = "glenferrie oval"
How large was the crowd at Glenferrie Oval?
CREATE TABLE table_name_98 (crowd INTEGER, venue VARCHAR)
SELECT psip_short_name FROM table_name_70 WHERE channel < 51.6
What is the PSIP Short name for the Channel that is less than 51.6?
CREATE TABLE table_name_70 (psip_short_name VARCHAR, channel INTEGER)
SELECT result FROM table_name_63 WHERE lineup = "start" AND assist_pass = "carli lloyd" AND competition = "2011 fifa women’s world cup – group stage"
Name the Result of the Lineup of start, an Assist/pass of carli lloyd, and an Competition of 2011 fifa women’s world cup – group stage?
CREATE TABLE table_name_63 (result VARCHAR, competition VARCHAR, lineup VARCHAR, assist_pass VARCHAR)
SELECT MAX(attendance) FROM table_name_42 WHERE date = "january 15"
On January 15, what was the most in attendance?
CREATE TABLE table_name_42 (attendance INTEGER, date VARCHAR)
SELECT location FROM table_name_60 WHERE attendance = "51,212"
What location has 51,212 as the attendance?
CREATE TABLE table_name_60 (location VARCHAR, attendance VARCHAR)
SELECT SUM(total_cargo__metric_tonnes_) FROM table_name_13 WHERE code__iata_icao_ = "pvg/zspd" AND rank < 3
What is the full amount of Total Cargo (in Metric Tonnes) where the Code (IATA/ICAO) is pvg/zspd, and the rank is less than 3?
CREATE TABLE table_name_13 (total_cargo__metric_tonnes_ INTEGER, code__iata_icao_ VARCHAR, rank VARCHAR)
SELECT home_team AS score FROM table_name_21 WHERE home_team = "hawthorn"
What did Hawthorn score as the home team?
CREATE TABLE table_name_21 (home_team VARCHAR)
SELECT percentage_of_total_area FROM table_15555661_2 WHERE area__km²_ = 1782252
What is the percentage of total area in the ecozone that the area is 1782252 km2?
CREATE TABLE table_15555661_2 (percentage_of_total_area VARCHAR, area__km²_ VARCHAR)
SELECT record FROM table_23281862_10 WHERE team = "Charlotte"
Name the record for charlotte
CREATE TABLE table_23281862_10 (record VARCHAR, team VARCHAR)
SELECT home_team FROM table_name_58 WHERE date = "april 10"
What is Home Team, when Date is "April 10"?
CREATE TABLE table_name_58 (home_team VARCHAR, date VARCHAR)
SELECT party FROM table_1342198_38 WHERE first_elected = 1948 AND incumbent = "William T. Granahan"
What is the party for first elected 1948 for william t. granahan
CREATE TABLE table_1342198_38 (party VARCHAR, first_elected VARCHAR, incumbent VARCHAR)
SELECT team_2 FROM table_name_25 WHERE team_1 = "africa sports"
What is the second team that has first team of Africa sports?
CREATE TABLE table_name_25 (team_2 VARCHAR, team_1 VARCHAR)
SELECT road_team FROM table_name_17 WHERE home_team = "portland" AND date = "may 31"
Which Road team has a Home team of portland, and a Date of may 31?
CREATE TABLE table_name_17 (road_team VARCHAR, home_team VARCHAR, date VARCHAR)
SELECT t2.document_structure_description FROM documents AS t1 JOIN document_structures AS t2 ON t1.document_structure_code = t2.document_structure_code GROUP BY t1.document_structure_code ORDER BY COUNT(*) DESC LIMIT 1
What is the structure of the document with the least number of accesses?
CREATE TABLE document_structures (document_structure_description VARCHAR, document_structure_code VARCHAR); CREATE TABLE documents (document_structure_code VARCHAR)
SELECT COUNT(position) FROM table_11545282_11 WHERE school_club_team = "Creighton"
How many positions are for creighton?
CREATE TABLE table_11545282_11 (position VARCHAR, school_club_team VARCHAR)
SELECT name FROM table_name_87 WHERE market_value__bn$_ < 5.59 AND rank > 39 AND assets__bn$_ > 27.46
Which company had a market value less than $5.59 billion, assets greater than $27.46 billion, and a rank above 39?
CREATE TABLE table_name_87 (name VARCHAR, assets__bn$_ VARCHAR, market_value__bn$_ VARCHAR, rank VARCHAR)
SELECT MAX(against) FROM table_name_97 WHERE losses = 15 AND wins > 1
What is the highest number listed under against when there were 15 losses and more than 1 win?
CREATE TABLE table_name_97 (against INTEGER, losses VARCHAR, wins VARCHAR)
SELECT COUNT(points) FROM table_name_25 WHERE goals_conceded = 41 AND place > 10
How many points did the team have that conceded 41 goals and finish in a place larger than 10?
CREATE TABLE table_name_25 (points VARCHAR, goals_conceded VARCHAR, place VARCHAR)
SELECT chinese_title FROM table_name_57 WHERE album_number = "3rd"
Album # of 3rd is what chinese title?
CREATE TABLE table_name_57 (chinese_title VARCHAR, album_number VARCHAR)
SELECT winnings__$_ FROM table_28498999_4 WHERE score = 66 - 64 - 67 - 71 = 268
What were the winnings for the score of 66-64-67-71=268?
CREATE TABLE table_28498999_4 (winnings__$_ VARCHAR, score VARCHAR)
SELECT background FROM table_26263322_1 WHERE candidate = "Daniel Phillips"
What is the background of the candidate daniel phillips?
CREATE TABLE table_26263322_1 (background VARCHAR, candidate VARCHAR)
SELECT COUNT(rank) FROM table_name_1 WHERE bronze < 8 AND total < 7 AND gold < 1
How many ranks have a Bronze smaller than 8, and a Total smaller than 7, and a Gold smaller than 1?
CREATE TABLE table_name_1 (rank VARCHAR, gold VARCHAR, bronze VARCHAR, total VARCHAR)
SELECT venue FROM table_name_57 WHERE date = "20,21,22,23,24 november 1998"
Which venue has a Date of 20,21,22,23,24 november 1998?
CREATE TABLE table_name_57 (venue VARCHAR, date VARCHAR)
SELECT MIN(attendance) FROM table_name_37 WHERE week < 10 AND date = "november 12, 1967"
What is the lowest attendance for a game before 10 weeks on November 12, 1967
CREATE TABLE table_name_37 (attendance INTEGER, week VARCHAR, date VARCHAR)
SELECT film_title_used_in_nomination FROM table_name_27 WHERE original_title = "báng-kah (艋舺)"
What is Film Title Used In Nomination, when Original Title is "Báng-Kah (艋舺)"
CREATE TABLE table_name_27 (film_title_used_in_nomination VARCHAR, original_title VARCHAR)
SELECT score FROM table_name_17 WHERE series = "flyers lead 3–2"
Which Score has a Series of flyers lead 3–2?
CREATE TABLE table_name_17 (score VARCHAR, series VARCHAR)
SELECT T3.Name, T2.Course FROM course_arrange AS T1 JOIN course AS T2 ON T1.Course_ID = T2.Course_ID JOIN teacher AS T3 ON T1.Teacher_ID = T3.Teacher_ID
Show names of teachers and the courses they are arranged to teach.
CREATE TABLE course_arrange (Course_ID VARCHAR, Teacher_ID VARCHAR); CREATE TABLE teacher (Name VARCHAR, Teacher_ID VARCHAR); CREATE TABLE course (Course VARCHAR, Course_ID VARCHAR)
SELECT Airline FROM AIRLINES WHERE Abbreviation = "UAL"
Which airline has abbreviation 'UAL'?
CREATE TABLE AIRLINES (Airline VARCHAR, Abbreviation VARCHAR)
SELECT T2.first_name, T2.last_name, COUNT(T1.reports_to) FROM employees AS T1 JOIN employees AS T2 ON T1.reports_to = T2.id GROUP BY T1.reports_to ORDER BY COUNT(T1.reports_to) DESC LIMIT 1
Which employee manage most number of peoples? List employee's first and last name, and number of people report to that employee.
CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, id VARCHAR); CREATE TABLE employees (reports_to VARCHAR)
SELECT coach FROM table_name_36 WHERE team = "northamptonshire steelbacks"
Who is the coach for the Northamptonshire Steelbacks?
CREATE TABLE table_name_36 (coach VARCHAR, team VARCHAR)
SELECT venue FROM table_name_46 WHERE away_team = "hawthorn"
Where was the game held where Hawthorn was the away team?
CREATE TABLE table_name_46 (venue VARCHAR, away_team VARCHAR)
SELECT place FROM table_name_19 WHERE to_par = "–8"
Which Place has a To par of –8?
CREATE TABLE table_name_19 (place VARCHAR, to_par VARCHAR)
SELECT MIN(total) FROM table_name_26 WHERE silver > 0 AND nation = "italy" AND gold < 29
Tell me the total for silver more than 0 for italy with gold less than 29
CREATE TABLE table_name_26 (total INTEGER, gold VARCHAR, silver VARCHAR, nation VARCHAR)
SELECT COUNT(draws) FROM table_name_12 WHERE name = "ali said gouled"
what is the number of draws for ali said gouled?
CREATE TABLE table_name_12 (draws VARCHAR, name VARCHAR)
SELECT away_team AS score FROM table_name_62 WHERE venue = "western oval"
What was the away team's score at the match played at The Western Oval?
CREATE TABLE table_name_62 (away_team VARCHAR, venue VARCHAR)
SELECT irish_name FROM table_name_65 WHERE province = "leinster" AND county = "fingal"
Province of leinster, and a County of fingal has which irish name?
CREATE TABLE table_name_65 (irish_name VARCHAR, province VARCHAR, county VARCHAR)
SELECT supporting_actress FROM table_24225238_1 WHERE leading_actress = "Diane Keaton"
Who was the supporting actress in a film with Diane Keaton as the leading actress?
CREATE TABLE table_24225238_1 (supporting_actress VARCHAR, leading_actress VARCHAR)
SELECT urban_area FROM table_1940144_1 WHERE population_2011 = 21561
In what urban area is the 2011 population 21561?
CREATE TABLE table_1940144_1 (urban_area VARCHAR, population_2011 VARCHAR)
SELECT nominating_festival FROM table_name_35 WHERE country = "germany"
What Nominating Festival took place in Germany?
CREATE TABLE table_name_35 (nominating_festival VARCHAR, country VARCHAR)
SELECT result FROM table_1342270_42 WHERE district = "Tennessee 2"
What was the result of the Tennessee 2 district election?
CREATE TABLE table_1342270_42 (result VARCHAR, district VARCHAR)
SELECT score_in_the_final FROM table_name_94 WHERE date = "22 october 1990"
What is Score In The Final, when Date is "22 October 1990"?
CREATE TABLE table_name_94 (score_in_the_final VARCHAR, date VARCHAR)
SELECT opposing_teams FROM table_name_7 WHERE against = 11
What is the opposing team with 11 against?
CREATE TABLE table_name_7 (opposing_teams VARCHAR, against VARCHAR)
SELECT loser FROM table_name_24 WHERE location = "lincoln financial field" AND winner = "philadelphia eagles" AND date = "september 30"
Who lost when the philadelphia eagles won at lincoln financial field on september 30?
CREATE TABLE table_name_24 (loser VARCHAR, date VARCHAR, location VARCHAR, winner VARCHAR)
SELECT result FROM table_1342198_36 WHERE incumbent = "Tom Steed"
What was the result when incumbent Tom Steed was elected?
CREATE TABLE table_1342198_36 (result VARCHAR, incumbent VARCHAR)
SELECT SUM(rank) FROM table_name_86 WHERE silver = 0 AND total > 2
What is the rank for the nation with 0 silver medals and a total larger than 2?
CREATE TABLE table_name_86 (rank INTEGER, silver VARCHAR, total VARCHAR)
SELECT tournament_or_series FROM table_name_15 WHERE played_in = "england" AND games_played___tests__ = "4" AND points_for___tests__ = "121"
What tournament or series was played in England, when games played was 4, points for were 121?
CREATE TABLE table_name_15 (tournament_or_series VARCHAR, points_for___tests__ VARCHAR, played_in VARCHAR, games_played___tests__ VARCHAR)
SELECT MIN(age_on_mission) FROM table_name_81 WHERE name = "stu roosa"
What is the lowest age of an astronaut named Stu Roosa?
CREATE TABLE table_name_81 (age_on_mission INTEGER, name VARCHAR)
SELECT institution FROM table_261927_1 WHERE nickname = "Seahawks"
What is the institution with the nickname seahawks?
CREATE TABLE table_261927_1 (institution VARCHAR, nickname VARCHAR)
SELECT athlete FROM table_name_14 WHERE time = 9.78
What is the Athlete of the race with a Time of 9.78?
CREATE TABLE table_name_14 (athlete VARCHAR, time VARCHAR)
SELECT overall FROM table_name_74 WHERE plyff = "(0-0)" AND home = "(0-1)" AND opponent = "green bay blizzard"
Which team has an overall playoff of (0-0), a home record of (0-1) and played the Green Bay Blizzard team?
CREATE TABLE table_name_74 (overall VARCHAR, opponent VARCHAR, plyff VARCHAR, home VARCHAR)
SELECT MIN(dismissals) FROM table_23316034_23 WHERE player = "Sammy Carter"
Name the least dismissals for sammy carter
CREATE TABLE table_23316034_23 (dismissals INTEGER, player VARCHAR)
SELECT SUM(overall) FROM table_name_68 WHERE position = "running back" AND round > 1 AND college = "fresno state"
What is the overall draft number for the running back drafted after round 1 from fresno state?
CREATE TABLE table_name_68 (overall INTEGER, college VARCHAR, position VARCHAR, round VARCHAR)
SELECT part_1 FROM table_name_99 WHERE part_2 = "fraus"
What is Part 1, when Part 2 is "fraus"?
CREATE TABLE table_name_99 (part_1 VARCHAR, part_2 VARCHAR)
SELECT COUNT(_percentage_change) FROM table_29789_3 WHERE international_tourism_expenditure_2012 = "$83.7 billion"
How many countries spent $83.7 billion on international tourism in 2012?
CREATE TABLE table_29789_3 (_percentage_change VARCHAR, international_tourism_expenditure_2012 VARCHAR)
SELECT result FROM table_name_66 WHERE date = "2007-04-14"
Who won on 2007-04-14
CREATE TABLE table_name_66 (result VARCHAR, date VARCHAR)
SELECT family_families FROM table_19897294_11 WHERE no_in_series = "US14"
What family was featured in episode us14 of the series?
CREATE TABLE table_19897294_11 (family_families VARCHAR, no_in_series VARCHAR)
SELECT meet FROM table_name_33 WHERE time = "7:55.02"
What is the Meet of the Event with a Time of 7:55.02?
CREATE TABLE table_name_33 (meet VARCHAR, time VARCHAR)
SELECT gold FROM table_name_28 WHERE bronze > 1 AND total < 10 AND silver = 3
What is the gold for a bronze larger than 1, with a total smaller than 10, and a silver of 3?
CREATE TABLE table_name_28 (gold VARCHAR, silver VARCHAR, bronze VARCHAR, total VARCHAR)
SELECT tier FROM table_name_61 WHERE tournament = "mont de marson"
Which tier of the tournament has Mont de Marson in it?
CREATE TABLE table_name_61 (tier VARCHAR, tournament VARCHAR)
SELECT COUNT(value__) AS $m_ FROM table_name_36 WHERE rank > 6 AND _percentage_change_on_year = "-27"
What was the total amount of Value ($M), when the Rank was higher than 6, and the % change on year was -27?
CREATE TABLE table_name_36 (value__ VARCHAR, rank VARCHAR, _percentage_change_on_year VARCHAR)
SELECT MIN(crowd) FROM table_name_61 WHERE venue = "junction oval"
What was the smallest crowd at junction oval?
CREATE TABLE table_name_61 (crowd INTEGER, venue VARCHAR)
SELECT manager FROM table_25527255_2 WHERE team = "FK Andijan"
Who is the manager of FK Andijan?
CREATE TABLE table_25527255_2 (manager VARCHAR, team VARCHAR)