answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT result FROM table_name_7 WHERE venue = "away" AND game > 6
What is the result of the game with a game number greater than 6 and an away venue?
CREATE TABLE table_name_7 (result VARCHAR, venue VARCHAR, game VARCHAR)
SELECT losing_bonus FROM table_name_89 WHERE played = "20" AND points_for = "353"
What was the losing bonus for the 20 played, and 353 points?
CREATE TABLE table_name_89 (losing_bonus VARCHAR, played VARCHAR, points_for VARCHAR)
SELECT country FROM table_name_3 WHERE rank = 6
what is the country for rank 6?
CREATE TABLE table_name_3 (country VARCHAR, rank VARCHAR)
SELECT COUNT(cores) FROM table_name_33 WHERE clock_speed = "1.3ghz"
What is the total Cores with a Clock Speed of 1.3ghz?
CREATE TABLE table_name_33 (cores VARCHAR, clock_speed VARCHAR)
SELECT res FROM table_name_83 WHERE record = "25-15"
What was the result when his record was 25-15?
CREATE TABLE table_name_83 (res VARCHAR, record VARCHAR)
SELECT order_id FROM orders ORDER BY date_order_placed DESC LIMIT 1
What is the id of the most recent order?
CREATE TABLE orders (order_id VARCHAR, date_order_placed VARCHAR)
SELECT record FROM table_name_30 WHERE attendance = "28,135"
What is the record of the game with 28,135 people in attendance?
CREATE TABLE table_name_30 (record VARCHAR, attendance VARCHAR)
SELECT COUNT(no_in_season) FROM table_19897294_11 WHERE no_in_series = "US18"
What episode in the season was episode us18 in the series?
CREATE TABLE table_19897294_11 (no_in_season VARCHAR, no_in_series VARCHAR)
SELECT willow_canyon FROM table_11340432_1 WHERE shadow_ridge = "Stallion"
What is the willow canyon of Stallion?
CREATE TABLE table_11340432_1 (willow_canyon VARCHAR, shadow_ridge VARCHAR)
SELECT place FROM table_name_23 WHERE player = "darren clarke"
In what place did Darren Clarke finish?
CREATE TABLE table_name_23 (place VARCHAR, player VARCHAR)
SELECT preschool__0_5_years_ FROM table_25042332_22 WHERE primary__6_13_years_ = "93.10"
What is the enrollment ratio in preschool in the region where the enrollment ratio in primary is 93.10?
CREATE TABLE table_25042332_22 (preschool__0_5_years_ VARCHAR, primary__6_13_years_ VARCHAR)
SELECT chassis FROM table_name_95 WHERE year > 1964 AND engine = "ford" AND pts = 13
Which chassis has a year later than 1964, a Ford engine, and 13 points?
CREATE TABLE table_name_95 (chassis VARCHAR, pts VARCHAR, year VARCHAR, engine VARCHAR)
SELECT writer_s_ FROM table_25800134_2 WHERE season__number = 24
Who are all the writers of episodes in season 24?
CREATE TABLE table_25800134_2 (writer_s_ VARCHAR, season__number VARCHAR)
SELECT MAX(bronze) FROM table_name_84 WHERE gold > 0 AND total = 15 AND silver < 5
What is the highest total for bronze with a gold larger than 0, a silver smaller than 5, and a total of 15?
CREATE TABLE table_name_84 (bronze INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR)
SELECT COUNT(stellar_classification) FROM table_2296507_1 WHERE system = "3 Neptune planets < 1 AU"
Name number of stellar classification for 3 neptune planets < 1 au
CREATE TABLE table_2296507_1 (stellar_classification VARCHAR, system VARCHAR)
SELECT spouse FROM table_name_54 WHERE father = "ferdinand i of the two sicilies"
Who is the spouse of the queen who is the daughter of Ferdinand I of the two sicilies?
CREATE TABLE table_name_54 (spouse VARCHAR, father VARCHAR)
SELECT date FROM table_name_26 WHERE competition = "2014 fifa world cup qualification" AND score = "1–0"
What date was the Competition of 2014 fifa world cup qualification, with a Score of 1–0?
CREATE TABLE table_name_26 (date VARCHAR, competition VARCHAR, score VARCHAR)
SELECT AVG(value__) AS $m_ FROM table_name_95 WHERE country = "england" AND operating_income_$m_ > -5 AND revenue__$m_ < 103
What was the average Value ($M) when the Country was England, the Operating income($m) was greater than -5, and the Revenue ($M) was smaller than 103?
CREATE TABLE table_name_95 (value__ INTEGER, revenue__$m_ VARCHAR, country VARCHAR, operating_income_$m_ VARCHAR)
SELECT MAX(panchayat) FROM table_20403667_2 WHERE public_property_damaged__in_lakh_inr__ = "1,03,049.60"
What is the panchayat when the public property damage was 1,03,049.60
CREATE TABLE table_20403667_2 (panchayat INTEGER, public_property_damaged__in_lakh_inr__ VARCHAR)
SELECT opponent_in_final FROM table_name_72 WHERE surface = "hard" AND location = "wellington, new zealand" AND date = "6 february 2000"
What is Opponent In Final, when Surface is Hard, when Location is Wellington, New Zealand, and when Date is 6 February 2000?
CREATE TABLE table_name_72 (opponent_in_final VARCHAR, date VARCHAR, surface VARCHAR, location VARCHAR)
SELECT MAX(points) FROM table_name_1 WHERE goals_for > 48 AND wins < 19 AND goals_against < 44 AND draws > 5
WHAT ARE THE HIGHEST POINTS WITH GOALS LARGER THAN 48, WINS LESS THAN 19, GOALS AGAINST SMALLER THAN 44, DRAWS LARGER THAN 5?
CREATE TABLE table_name_1 (points INTEGER, draws VARCHAR, goals_against VARCHAR, goals_for VARCHAR, wins VARCHAR)
SELECT DISTINCT T1.customer_first_name, T1.customer_last_name, T1.phone_number FROM Customers AS T1 JOIN Accounts AS T2 ON T1.customer_id = T2.customer_id
Show the unique first names, last names, and phone numbers for all customers with any account.
CREATE TABLE Accounts (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, phone_number VARCHAR, customer_id VARCHAR)
SELECT year FROM table_13012165_1 WHERE maryland = "Railroaders LL Brunswick"
Which year did Maryland hold the title with Railroaders LL Brunswick?
CREATE TABLE table_13012165_1 (year VARCHAR, maryland VARCHAR)
SELECT pole_position FROM table_26267607_2 WHERE winning_driver = "Bruno Spengler" AND circuit = "Showevent Olympiastadion München"
In the circuit Showevent Olympiastadion München, where the winning driver is Bruno Spengler, what is the pole position?
CREATE TABLE table_26267607_2 (pole_position VARCHAR, winning_driver VARCHAR, circuit VARCHAR)
SELECT COUNT(periselene__km_) FROM table_206217_2 WHERE epoch__utc_ = "November 15, 2004, 17:47:12.1"
How many values of periselene when epoch is November 15, 2004, 17:47:12.1?
CREATE TABLE table_206217_2 (periselene__km_ VARCHAR, epoch__utc_ VARCHAR)
SELECT time FROM table_name_95 WHERE name = "derek graham"
What was Derek Graham's time?
CREATE TABLE table_name_95 (time VARCHAR, name VARCHAR)
SELECT first_broadcast FROM table_29141354_5 WHERE andrew_and_jacks_guest = "Jessica Ennis"
When were episodes first broadcast with jessica ennis as andrew and jacks guest?
CREATE TABLE table_29141354_5 (first_broadcast VARCHAR, andrew_and_jacks_guest VARCHAR)
SELECT MAX(total_population__2010_census_) FROM table_name_11 WHERE area__km_2__ < 147 OFFSET 307.00
Which Total population (2010 census) has an Area (km 2) smaller than 147,307.00?
CREATE TABLE table_name_11 (total_population__2010_census_ INTEGER, area__km_2__ INTEGER)
SELECT venue FROM table_name_89 WHERE competition = "friendly" AND date = "october 16, 2012"
Name the venue for friendly competition october 16, 2012
CREATE TABLE table_name_89 (venue VARCHAR, competition VARCHAR, date VARCHAR)
SELECT game FROM table_13557843_7 WHERE date = "March 7"
what's the game with date being march 7
CREATE TABLE table_13557843_7 (game VARCHAR, date VARCHAR)
SELECT target FROM table_name_90 WHERE antibody = "rituximab"
What's the target of the antibody rituximab?
CREATE TABLE table_name_90 (target VARCHAR, antibody VARCHAR)
SELECT attendance FROM table_name_88 WHERE date = "11/09/1946"
What was the Attendance on 11/09/1946?
CREATE TABLE table_name_88 (attendance VARCHAR, date VARCHAR)
SELECT name FROM table_1425958_1 WHERE _percentage_change = "6.5"
Where was there a change of 6.5%?
CREATE TABLE table_1425958_1 (name VARCHAR, _percentage_change VARCHAR)
SELECT winning_applicant FROM table_name_39 WHERE block = "10b" AND area = "derbyshire"
Who is the Winning Applicant of Block 10B in Derbyshire Area?
CREATE TABLE table_name_39 (winning_applicant VARCHAR, block VARCHAR, area VARCHAR)
SELECT rowers FROM table_name_32 WHERE rank = 5
When rank is 5, what is the rowers?
CREATE TABLE table_name_32 (rowers VARCHAR, rank VARCHAR)
SELECT position FROM table_22056184_1 WHERE poles = 2
Which positions are the poles 2?
CREATE TABLE table_22056184_1 (position VARCHAR, poles VARCHAR)
SELECT result FROM table_name_80 WHERE date = "september 25, 1966"
What is the result on September 25, 1966?
CREATE TABLE table_name_80 (result VARCHAR, date VARCHAR)
SELECT position FROM table_21321804_5 WHERE cfl_team = "Hamilton Tiger-Cats"
What position was drafted by the Hamilton Tiger-Cats?
CREATE TABLE table_21321804_5 (position VARCHAR, cfl_team VARCHAR)
SELECT AVG(draft) FROM table_name_56 WHERE round = "1" AND nationality = "canada" AND pick = "1" AND player = "vincent lecavalier"
Which Draft has a Round of 1, a Nationality of canada, a Pick of 1, and a Player of vincent lecavalier?
CREATE TABLE table_name_56 (draft INTEGER, player VARCHAR, pick VARCHAR, round VARCHAR, nationality VARCHAR)
SELECT episode_title FROM table_11404452_1 WHERE director = "Rodman Flender"
What are the titles of the episodes where Rodman Flender is the director?
CREATE TABLE table_11404452_1 (episode_title VARCHAR, director VARCHAR)
SELECT COUNT(equivalent_daily_inflation_rate) FROM table_13681_2 WHERE currency_name = "Republika Srpska dinar"
how many equivalent daily inflation rate with currency name being republika srpska dinar
CREATE TABLE table_13681_2 (equivalent_daily_inflation_rate VARCHAR, currency_name VARCHAR)
SELECT COUNT(*) FROM Student_Tests_Taken WHERE test_result = "Fail"
How many tests have result "Fail"?
CREATE TABLE Student_Tests_Taken (test_result VARCHAR)
SELECT game FROM table_name_37 WHERE team = "golden state warriors"
What is the game with the golden state warriors?
CREATE TABLE table_name_37 (game VARCHAR, team VARCHAR)
SELECT loss FROM table_name_22 WHERE record = "52-36"
Who got the loss on the game that ended in a 52-36 record?
CREATE TABLE table_name_22 (loss VARCHAR, record VARCHAR)
SELECT 1980 FROM table_name_22 WHERE 1978 = "2.3"
what is 1980 when 1978 is 2.3?
CREATE TABLE table_name_22 (Id VARCHAR)
SELECT COUNT(population) FROM table_25200461_9 WHERE city = "Santa Clara"
If the city is Santa Clara, what is the population total number?
CREATE TABLE table_25200461_9 (population VARCHAR, city VARCHAR)
SELECT railway FROM table_name_68 WHERE build_date = 1911 AND loco_name = "pyramus"
Which railway had a loco name of Pyramus and a build date of 1911?
CREATE TABLE table_name_68 (railway VARCHAR, build_date VARCHAR, loco_name VARCHAR)
SELECT round FROM table_name_83 WHERE college = "mississippi valley state"
What round was the player drafted from mississippi valley state?
CREATE TABLE table_name_83 (round VARCHAR, college VARCHAR)
SELECT courtside_reporter FROM table_14902507_2 WHERE year = "2009-10"
Who is the courtside reporter for the year 2009-10?
CREATE TABLE table_14902507_2 (courtside_reporter VARCHAR, year VARCHAR)
SELECT COUNT(year_)[e_] AS __ceremony_ FROM table_18069789_1 WHERE film_title_used_in_nomination = "27 Missing Kisses"
how many times was 27 missing kisses used in nomination
CREATE TABLE table_18069789_1 (e_ VARCHAR, film_title_used_in_nomination VARCHAR, year_ VARCHAR)
SELECT home FROM table_name_68 WHERE away = "motagua"
What is the Home team when Motagua is the Away team?
CREATE TABLE table_name_68 (home VARCHAR, away VARCHAR)
SELECT outgoing_head_coach FROM table_29171931_3 WHERE manner_of_departure = "Gardening leave 1"
Who are the outgoing head coaches whose manner of departure is Gardening Leave 1?
CREATE TABLE table_29171931_3 (outgoing_head_coach VARCHAR, manner_of_departure VARCHAR)
SELECT Investor FROM entrepreneur GROUP BY Investor HAVING COUNT(*) >= 2
What are the investors that have invested in at least two entrepreneurs?
CREATE TABLE entrepreneur (Investor VARCHAR)
SELECT MAX(date) FROM table_26336060_19 WHERE mintage = 150 AND km_number = "S66"
What is the maximum date for a mintage of 150 and a KM number of S66?
CREATE TABLE table_26336060_19 (date INTEGER, mintage VARCHAR, km_number VARCHAR)
SELECT opponent FROM table_name_7 WHERE site = "legion field • birmingham, al"
Who was the opponent when they played at the legion field • birmingham, al site?
CREATE TABLE table_name_7 (opponent VARCHAR, site VARCHAR)
SELECT speed FROM table_name_44 WHERE rider = "peter williams"
What is the average speed of rider Peter Williams?
CREATE TABLE table_name_44 (speed VARCHAR, rider VARCHAR)
SELECT MAX(goals_against) FROM table_name_57 WHERE wins = 18 AND goal_difference = 43 AND draws < 6
What is the high goal against associated with 18 wins, a Goal Difference of 43, and under 6 draws?
CREATE TABLE table_name_57 (goals_against INTEGER, draws VARCHAR, wins VARCHAR, goal_difference VARCHAR)
SELECT title FROM table_23799653_1 WHERE directed_by = "Laura Innes" AND us_viewers__millions_ = "9.63"
What's the name of the episode seen by 9.63 millions of people in the US, whose director is Laura Innes?
CREATE TABLE table_23799653_1 (title VARCHAR, directed_by VARCHAR, us_viewers__millions_ VARCHAR)
SELECT year_[e_] AS __ceremony_ FROM table_18069789_1 WHERE original_title = "გაღმა ნაპირი"
which year was the original title გაღმა ნაპირი
CREATE TABLE table_18069789_1 (year_ VARCHAR, e_ VARCHAR, original_title VARCHAR)
SELECT written_by FROM table_25830834_2 WHERE production_code = "2J5153"
Who wrote the episode with the production code 2j5153?
CREATE TABLE table_25830834_2 (written_by VARCHAR, production_code VARCHAR)
SELECT drawn FROM table_17625749_3 WHERE lost = "13"
How many were drawn when 13 were lost?
CREATE TABLE table_17625749_3 (drawn VARCHAR, lost VARCHAR)
SELECT year__ceremony_ FROM table_17350255_1 WHERE film_title_used_in_nomination = "Old Mo's Second Spring"
Old Mo's Second Spring was the film title used in nomination in what year?
CREATE TABLE table_17350255_1 (year__ceremony_ VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT away FROM table_name_93 WHERE score = "3:1"
What was the away team when the score was 3:1?
CREATE TABLE table_name_93 (away VARCHAR, score VARCHAR)
SELECT fourth FROM table_17111812_1 WHERE sixth = "Air Traffic"
Who was in 4th when in 6th is Air Traffic?
CREATE TABLE table_17111812_1 (fourth VARCHAR, sixth VARCHAR)
SELECT COUNT(season_no) FROM table_21781578_2 WHERE us_viewers__millions_ = "12.30"
What was the number of season number entries that had US Viewers of 12.30 million?
CREATE TABLE table_21781578_2 (season_no VARCHAR, us_viewers__millions_ VARCHAR)
SELECT title FROM table_name_67 WHERE date = "august 2004"
Which film was released in August 2004?
CREATE TABLE table_name_67 (title VARCHAR, date VARCHAR)
SELECT breeders_cup_friday FROM table_24089503_1 WHERE breeders_cup_saturday = "52,987"
What was the Breeder's Cup Friday attendance for the year the Breeder's Cup Saturday had 52,987?
CREATE TABLE table_24089503_1 (breeders_cup_friday VARCHAR, breeders_cup_saturday VARCHAR)
SELECT segment_c FROM table_name_67 WHERE episode < 210
Episode smaller than 210 had what segment c?
CREATE TABLE table_name_67 (segment_c VARCHAR, episode INTEGER)
SELECT SUM(wickets) FROM table_name_64 WHERE runs < 4600 AND matches < 44
What is the total number of wickets that have runs under 4600 and matches under 44?
CREATE TABLE table_name_64 (wickets INTEGER, runs VARCHAR, matches VARCHAR)
SELECT result FROM table_name_67 WHERE week < 2
What was the outcome of the game that had a week number of less than 2?
CREATE TABLE table_name_67 (result VARCHAR, week INTEGER)
SELECT team FROM table_22297198_3 WHERE outgoing_manager = "Alireza Mansourian"
What team did Alireza mansourian leave?
CREATE TABLE table_22297198_3 (team VARCHAR, outgoing_manager VARCHAR)
SELECT res FROM table_2015453_1 WHERE team__number2 = "Payam"
What was the res for the game against Payam?
CREATE TABLE table_2015453_1 (res VARCHAR, team__number2 VARCHAR)
SELECT COUNT(season) FROM table_name_34 WHERE location = "aspen, usa"
How many seasons took place in aspen, usa?
CREATE TABLE table_name_34 (season VARCHAR, location VARCHAR)
SELECT wins FROM table_name_15 WHERE year = 1963 AND team = "bultaco"
Name the wins for 1963 bultaco
CREATE TABLE table_name_15 (wins VARCHAR, year VARCHAR, team VARCHAR)
SELECT reverse FROM table_298883_5 WHERE value = "₩500"
What is on the reverse side of the ₩500 coin?
CREATE TABLE table_298883_5 (reverse VARCHAR, value VARCHAR)
SELECT MIN(crude_birth_rate__per_1000_) FROM table_name_49 WHERE natural_change = "42 689"
Natural change of 42 689 has which lowest Crude birth rate (per 1000)?
CREATE TABLE table_name_49 (crude_birth_rate__per_1000_ INTEGER, natural_change VARCHAR)
SELECT final FROM table_name_59 WHERE rank = "10"
Which final has rank of 10?
CREATE TABLE table_name_59 (final VARCHAR, rank VARCHAR)
SELECT other_mozilla FROM table_name_97 WHERE opera = "2.29%"
What percentage of users were using other Mozilla browsers during the period in which 2.29% were using Opera?
CREATE TABLE table_name_97 (other_mozilla VARCHAR, opera VARCHAR)
SELECT COUNT(cytoplasm) FROM table_13570_1 WHERE nucleus = "Blue"
How many cytoplasms result in a blue nucleus?
CREATE TABLE table_13570_1 (cytoplasm VARCHAR, nucleus VARCHAR)
SELECT live_births FROM table_name_79 WHERE crude_birth_rate__per_1000_ > 15.7 AND average_population__x_1000_ < 297 AND deaths = "4 686"
How many live births where the crude birth rate is lore than 15.7, average population is less than 297 and deaths are al 4 686?
CREATE TABLE table_name_79 (live_births VARCHAR, deaths VARCHAR, crude_birth_rate__per_1000_ VARCHAR, average_population__x_1000_ VARCHAR)
SELECT SUM(final) FROM table_name_26 WHERE place > 2 AND nation = "finland" AND all_around > 18.9
What is the sum of the final for finland, who placed greater than 2 and had an all around larger than 18.9?
CREATE TABLE table_name_26 (final INTEGER, all_around VARCHAR, place VARCHAR, nation VARCHAR)
SELECT SUM(domestic_passengers) FROM table_name_38 WHERE _percentage_change_2005_2006 = "10.9%" AND freight__metric_tonnes_ < 4 OFFSET 022
What is the sum of all domestic passengers with 10.9% change and less than 4,022 tonnes in freight?
CREATE TABLE table_name_38 (domestic_passengers INTEGER, _percentage_change_2005_2006 VARCHAR, freight__metric_tonnes_ VARCHAR)
SELECT result FROM table_name_80 WHERE event = "syracuse grand prix"
What was the result of the syracuse grand prix?
CREATE TABLE table_name_80 (result VARCHAR, event VARCHAR)
SELECT COUNT(frequency_mhz) FROM table_name_41 WHERE city_of_license = "port charlotte, florida" AND erp_w > 10
What is the total Frequency MHz Port Charlotte, Florida, which has an ERP W larger than 10, has?
CREATE TABLE table_name_41 (frequency_mhz VARCHAR, city_of_license VARCHAR, erp_w VARCHAR)
SELECT result FROM table_name_61 WHERE nominated_work = "white valentine"
Did the nominated work of white valentine win an award?
CREATE TABLE table_name_61 (result VARCHAR, nominated_work VARCHAR)
SELECT quantity_made FROM table_name_3 WHERE manufacturer = "baldwin"
What is Quantity Made, when Manufacturer is "Baldwin"?
CREATE TABLE table_name_3 (quantity_made VARCHAR, manufacturer VARCHAR)
SELECT result FROM table_1342233_43 WHERE candidates = "R. Ewing Thomason (D) Unopposed"
What was the result of the election featuring r. ewing thomason (d) unopposed?
CREATE TABLE table_1342233_43 (result VARCHAR, candidates VARCHAR)
SELECT record FROM table_27700530_10 WHERE high_points = "Jameer Nelson (19)"
What is the record when jameer nelson (19) had the high points?
CREATE TABLE table_27700530_10 (record VARCHAR, high_points VARCHAR)
SELECT captain FROM table_name_9 WHERE team = "portsmouth"
Who captains Portsmouth?
CREATE TABLE table_name_9 (captain VARCHAR, team VARCHAR)
SELECT AVG(heat) FROM table_name_54 WHERE rank = 30
What is the average heat ranked at 30?
CREATE TABLE table_name_54 (heat INTEGER, rank VARCHAR)
SELECT label FROM table_name_86 WHERE format = "lp"
What is the label with the LP format?
CREATE TABLE table_name_86 (label VARCHAR, format VARCHAR)
SELECT the_bronx FROM table_1108394_34 WHERE manhattan = "29.9_percentage"
What percentage of The Bronx voters occured when Manhattan had 29.9% of voters?
CREATE TABLE table_1108394_34 (the_bronx VARCHAR, manhattan VARCHAR)
SELECT COUNT(episode_no) FROM table_24399615_10 WHERE bbc_three_weekly_ranking = "N/A" AND cable_rank = "N/A"
Which episode had bbc ranking and canle ranking of n/a?
CREATE TABLE table_24399615_10 (episode_no VARCHAR, bbc_three_weekly_ranking VARCHAR, cable_rank VARCHAR)
SELECT hindu FROM table_name_4 WHERE ethnic_group = "white irish"
Tell me the Hindu for ethnic group for white irish
CREATE TABLE table_name_4 (hindu VARCHAR, ethnic_group VARCHAR)
SELECT date FROM table_name_24 WHERE opponent = "detroit tigers" AND attendance = "38,639"
On what date was there a game in which the opponent was the Detroit Tigers, and the attendance was 38,639?
CREATE TABLE table_name_24 (date VARCHAR, opponent VARCHAR, attendance VARCHAR)
SELECT candidate FROM table_25818630_1 WHERE constituency = "Cardiff Central"
What is every candidate for the Cardiff Central constituency?
CREATE TABLE table_25818630_1 (candidate VARCHAR, constituency VARCHAR)
SELECT engine FROM table_15736385_1 WHERE team = "Galles Racing"
What engine does Galles Racing use?
CREATE TABLE table_15736385_1 (engine VARCHAR, team VARCHAR)
SELECT nation FROM table_name_54 WHERE bronze = 2 AND rank = 9
What nation has 2 bronze and a rank of 9?
CREATE TABLE table_name_54 (nation VARCHAR, bronze VARCHAR, rank VARCHAR)
SELECT MIN(attendance) FROM table_name_76 WHERE week = 1
What is the smallest attendance in week 1?
CREATE TABLE table_name_76 (attendance INTEGER, week VARCHAR)
SELECT MAX(associate_professors) FROM table_name_29 WHERE assistant_professors > 5 AND professors < 14
What is the maximum number of associate professors when there are more than 5 assistant professors and fewer than 14 professors?
CREATE TABLE table_name_29 (associate_professors INTEGER, assistant_professors VARCHAR, professors VARCHAR)