answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT MIN(no_of_counties) FROM table_278229_1 WHERE commandery = "Yidu 宜都"
When yidu 宜都 is the commandery what is the lowest number of countries?
CREATE TABLE table_278229_1 (no_of_counties INTEGER, commandery VARCHAR)
SELECT COUNT(written_by) FROM table_23958944_2 WHERE no_by_series = 8
How many different writers have written the episode with series number 8?
CREATE TABLE table_23958944_2 (written_by VARCHAR, no_by_series VARCHAR)
SELECT MAX(yards) FROM table_name_47 WHERE rating > 52.8 AND games > 13
What is the highest yards for a rating larger than 52.8 and more than 13 games?
CREATE TABLE table_name_47 (yards INTEGER, rating VARCHAR, games VARCHAR)
SELECT MIN(species_in_the_peruvian_amazon) FROM table_11727969_1 WHERE peru_vs_world__percent_ = 7
what's the minimum species in the peruvian amazon with peru vs. world (percent) value of 7
CREATE TABLE table_11727969_1 (species_in_the_peruvian_amazon INTEGER, peru_vs_world__percent_ VARCHAR)
SELECT college FROM table_name_41 WHERE overall < 315 AND round = 17
Which college had an overall smaller than 315 in round 17?
CREATE TABLE table_name_41 (college VARCHAR, overall VARCHAR, round VARCHAR)
SELECT state FROM table_name_63 WHERE talent = "classical piano" AND hometown = "lancaster, ny"
What is the state having a contestant with a talent of classical piano and a hometown from Lancaster, NY?
CREATE TABLE table_name_63 (state VARCHAR, talent VARCHAR, hometown VARCHAR)
SELECT title FROM table_23170118_2 WHERE villains = "Reg Lacey (AKA Mr. B)"
What was the title of the episode where reg lacey (aka mr. b) played the villain?
CREATE TABLE table_23170118_2 (title VARCHAR, villains VARCHAR)
SELECT result FROM table_2668336_24 WHERE candidates = "Alexander Smyth (DR) 100%"
What is the result when the candidates are alexander smyth (dr) 100%
CREATE TABLE table_2668336_24 (result VARCHAR, candidates VARCHAR)
SELECT status FROM table_22815568_2 WHERE market_income_per_capita = "$24,326"
What is the status of the county with per capita market income of $24,326?
CREATE TABLE table_22815568_2 (status VARCHAR, market_income_per_capita VARCHAR)
SELECT score FROM table_name_80 WHERE game < 69 AND march > 2 AND opponent = "new york islanders"
Which score's game was less than 69 when the march was bigger than 2 and the opponents were the New York Islanders?
CREATE TABLE table_name_80 (score VARCHAR, opponent VARCHAR, game VARCHAR, march VARCHAR)
SELECT position FROM table_27132791_3 WHERE college = "SMU"
If the college is SMU, what is the position?
CREATE TABLE table_27132791_3 (position VARCHAR, college VARCHAR)
SELECT MAX(chimoré_municipality) FROM table_name_76 WHERE pojo_municipality = 9 AND totora_municipality < 7
What is the highest chimore municipalities with 9 pojo municipalities and less than 7 totora municipalities?
CREATE TABLE table_name_76 (chimoré_municipality INTEGER, pojo_municipality VARCHAR, totora_municipality VARCHAR)
SELECT country FROM table_name_95 WHERE place = "t9" AND score = 71 - 71 - 72 = 214 AND player = "ernie els"
Which Country has a Place of t9, and a Score of 71-71-72=214, and a Player of ernie els?
CREATE TABLE table_name_95 (country VARCHAR, player VARCHAR, place VARCHAR, score VARCHAR)
SELECT T2.firstname, T2.lastname FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId WHERE T3.Title = "Badlands" AND T1.StagePosition = "back"
Who is performing in the back stage position for the song "Badlands"? Show the first name and the last name.
CREATE TABLE Band (firstname VARCHAR, lastname VARCHAR, id VARCHAR); CREATE TABLE Performance (bandmate VARCHAR, SongId VARCHAR, StagePosition VARCHAR); CREATE TABLE Songs (SongId VARCHAR, Title VARCHAR)
SELECT type FROM table_name_77 WHERE population = 370
What type has a population of 370?
CREATE TABLE table_name_77 (type VARCHAR, population VARCHAR)
SELECT AVG(bronze) FROM table_name_9 WHERE silver > 2 AND gold > 7
Which average bronze had a silver greater than 2 and a gold larger than 7?
CREATE TABLE table_name_9 (bronze INTEGER, silver VARCHAR, gold VARCHAR)
SELECT COUNT(date) FROM table_name_67 WHERE partner = "carl-uwe steeb"
What is the total number of Date, when Partner is "Carl-Uwe Steeb"?
CREATE TABLE table_name_67 (date VARCHAR, partner VARCHAR)
SELECT rank FROM table_name_90 WHERE year > 1971 AND floors < 35 AND height_ft__m_ = "19.0 477 (145)"
After 1971, what is the Rank with a Height ft (m) of 19.0 477 (145) and less than 35 Floors?
CREATE TABLE table_name_90 (rank VARCHAR, height_ft__m_ VARCHAR, year VARCHAR, floors VARCHAR)
SELECT name FROM table_name_62 WHERE winning_team = "penske racing" AND winning_driver = "bobby unser"
Which race has a winning team of Penske Racing, and a winning driver of Bobby Unser?
CREATE TABLE table_name_62 (name VARCHAR, winning_team VARCHAR, winning_driver VARCHAR)
SELECT MAX(attendance) FROM table_name_34 WHERE week = 3
what is the highest attendance for week 3?
CREATE TABLE table_name_34 (attendance INTEGER, week VARCHAR)
SELECT score FROM table_29163303_2 WHERE championship = "French Open"
What are the results of those matches where the championship is French Open?
CREATE TABLE table_29163303_2 (score VARCHAR, championship VARCHAR)
SELECT partner FROM table_name_46 WHERE outcome = "winner"
Who was the partner of the winner?
CREATE TABLE table_name_46 (partner VARCHAR, outcome VARCHAR)
SELECT time FROM table_name_4 WHERE competition = "tim trophy" AND opponent = "juventus"
What is the time of the tim trophy competition where juventus was the opponent?
CREATE TABLE table_name_4 (time VARCHAR, competition VARCHAR, opponent VARCHAR)
SELECT catalog_entry_name FROM catalog_contents WHERE next_entry_id > 8
Name all the products with next entry ID greater than 8.
CREATE TABLE catalog_contents (catalog_entry_name VARCHAR, next_entry_id INTEGER)
SELECT call_sign FROM table_name_67 WHERE frequency = "0 97.3 fm"
Tell me the call sign for frequency of 0 97.3 fm
CREATE TABLE table_name_67 (call_sign VARCHAR, frequency VARCHAR)
SELECT score_in_the_final FROM table_23235767_1 WHERE opponent_in_the_final = "John McEnroe" AND championship = "US Open"
What is every score in the final for opponent in final John Mcenroe at US Open?
CREATE TABLE table_23235767_1 (score_in_the_final VARCHAR, opponent_in_the_final VARCHAR, championship VARCHAR)
SELECT COUNT(game) FROM table_name_14 WHERE record = "61-16"
How many games have 61-16 as the record?
CREATE TABLE table_name_14 (game VARCHAR, record VARCHAR)
SELECT position FROM table_name_83 WHERE year = 1999
What position is 1999?
CREATE TABLE table_name_83 (position VARCHAR, year VARCHAR)
SELECT record FROM table_name_48 WHERE visitor = "toronto st. pats" AND score = "5–4" AND home = "ottawa senators"
Name the Record of Visitor of toronto st. pats with a Score of 5–4 and a Home of ottawa senators? Question 5
CREATE TABLE table_name_48 (record VARCHAR, home VARCHAR, visitor VARCHAR, score VARCHAR)
SELECT winning_driver FROM table_name_43 WHERE winning_constructor = "sunbeam"
What Winning driver has a Winning constructor of sunbeam?
CREATE TABLE table_name_43 (winning_driver VARCHAR, winning_constructor VARCHAR)
SELECT language FROM table_24446718_3 WHERE awardee_s_ = "B. Ajith Kumar"
Name the language for b. ajith kumar
CREATE TABLE table_24446718_3 (language VARCHAR, awardee_s_ VARCHAR)
SELECT COUNT(dominant_religion__2002_) FROM table_2562572_53 WHERE population__2011_ = 17105
How many dominant religions were in the settlement that had a population of 17105?
CREATE TABLE table_2562572_53 (dominant_religion__2002_ VARCHAR, population__2011_ VARCHAR)
SELECT record FROM table_17360840_9 WHERE location = "St. Pete Times Forum" AND opponent = "Columbus Blue Jackets"
What was the record when the opposing team was the Columbus Blue Jackets at St. Pete Times Forum?
CREATE TABLE table_17360840_9 (record VARCHAR, location VARCHAR, opponent VARCHAR)
SELECT result FROM table_1341640_43 WHERE first_elected = 1976
Election results of 1976
CREATE TABLE table_1341640_43 (result VARCHAR, first_elected VARCHAR)
SELECT date FROM table_name_3 WHERE away_team = "leeds united"
What was the date when the away team was the leeds united?
CREATE TABLE table_name_3 (date VARCHAR, away_team VARCHAR)
SELECT europe FROM table_name_83 WHERE goals > 14 AND avgatt = "52 538"
What european country had more than 14 goals, and 52 538 avg att?
CREATE TABLE table_name_83 (europe VARCHAR, goals VARCHAR, avgatt VARCHAR)
SELECT MAX(week) FROM table_12305325_4 WHERE eliminated = "Kate and Anton"
What is the max week where kate and anton are eliminated?
CREATE TABLE table_12305325_4 (week INTEGER, eliminated VARCHAR)
SELECT location FROM table_name_3 WHERE opponent = "houston oilers"
What was the location of the game against the Houston Oilers?
CREATE TABLE table_name_3 (location VARCHAR, opponent VARCHAR)
SELECT province FROM table_275023_1 WHERE formed_from = "New Munster"
What provinces were formed from New Munster?
CREATE TABLE table_275023_1 (province VARCHAR, formed_from VARCHAR)
SELECT COUNT(round) FROM table_22853654_10 WHERE edition = "2006 Davis Cup Europe/Africa Group I"
How many rounds were there in the 2006 davis cup europe/africa group I?
CREATE TABLE table_22853654_10 (round VARCHAR, edition VARCHAR)
SELECT episodes FROM table_name_62 WHERE tv_station = "tbs" AND japanese_title = "クロサギ"
What episodes was the show クロサギ shown on TBS?
CREATE TABLE table_name_62 (episodes VARCHAR, tv_station VARCHAR, japanese_title VARCHAR)
SELECT COUNT(laps) FROM table_name_88 WHERE grid = 14
What is the number of laps for Grid 14?
CREATE TABLE table_name_88 (laps VARCHAR, grid VARCHAR)
SELECT player FROM table_name_10 WHERE to_par = 7 AND score = 73 - 72 - 67 - 75 = 287
What is Player, when To Par is "7", and when Score is "73-72-67-75=287"?
CREATE TABLE table_name_10 (player VARCHAR, to_par VARCHAR, score VARCHAR)
SELECT team FROM table_name_11 WHERE qual_2 = "1:01.093"
Which team had a qualifying 2 time of 1:01.093?
CREATE TABLE table_name_11 (team VARCHAR, qual_2 VARCHAR)
SELECT AVG(points) FROM table_name_78 WHERE lost > 20
Which average Points has a Lost higher than 20?
CREATE TABLE table_name_78 (points INTEGER, lost INTEGER)
SELECT bronze FROM table_name_60 WHERE notes = "2.5km, 14controls"
Who won Bronze with notes of 2.5km, 14controls?
CREATE TABLE table_name_60 (bronze VARCHAR, notes VARCHAR)
SELECT administrative_division FROM table_24027047_1 WHERE population_density___km²_2011_ = "1,604.3"
In what division was there a population density in km2 of 1,604.3 in 2011?
CREATE TABLE table_24027047_1 (administrative_division VARCHAR, population_density___km²_2011_ VARCHAR)
SELECT report FROM table_name_42 WHERE venue = "hisense arena"
What was the report for the game played at the Hisense Arena?
CREATE TABLE table_name_42 (report VARCHAR, venue VARCHAR)
SELECT pregame_host FROM table_17516922_1 WHERE network = "ESPN" AND color_commentator = "Taylor Twellman"
What pregame host was on espn and had taylor twellman color commentating?
CREATE TABLE table_17516922_1 (pregame_host VARCHAR, network VARCHAR, color_commentator VARCHAR)
SELECT division FROM table_name_98 WHERE finish = "5th" AND losses = "87"
Which division of the Brewers had a 5th place ranking and a loss record of 87?
CREATE TABLE table_name_98 (division VARCHAR, finish VARCHAR, losses VARCHAR)
SELECT type FROM table_2538117_2 WHERE organization = "Sigma Phi Omega"
what type of organization is sigma phi omega?
CREATE TABLE table_2538117_2 (type VARCHAR, organization VARCHAR)
SELECT COUNT(incumbent) FROM table_1341672_14 WHERE first_elected = 1944
Name the total number of incumbent for first elected of 1944
CREATE TABLE table_1341672_14 (incumbent VARCHAR, first_elected VARCHAR)
SELECT AVG(round) FROM table_name_87 WHERE overall > 238 AND position = "defensive end" AND school_club_team = "wisconsin"
What is the average round for Wisconsin when the overall is larger than 238 and there is a defensive end?
CREATE TABLE table_name_87 (round INTEGER, school_club_team VARCHAR, overall VARCHAR, position VARCHAR)
SELECT english_title FROM table_name_19 WHERE director = "george miller"
What is the English title for the film directed by George Miller?
CREATE TABLE table_name_19 (english_title VARCHAR, director VARCHAR)
SELECT elista FROM table_name_14 WHERE played = 1 AND baku = "153⅓"
What is the elista with 1 played and 153⅓ baku?
CREATE TABLE table_name_14 (elista VARCHAR, played VARCHAR, baku VARCHAR)
SELECT AVG(episode__number) FROM table_name_75 WHERE episode_name = "the origin of donnie (part 1)"
What is the average episode # with a name of the origin of Donnie (part 1)?
CREATE TABLE table_name_75 (episode__number INTEGER, episode_name VARCHAR)
SELECT COUNT(rank) FROM table_name_72 WHERE total_points > 194 AND round4 < 64 AND round3 > 51 AND round2 < 66
what is the rank when the total points is more than 194, round4 is less than 64, round3 is more than 51 and round 2 is less than 66?
CREATE TABLE table_name_72 (rank VARCHAR, round2 VARCHAR, round3 VARCHAR, total_points VARCHAR, round4 VARCHAR)
SELECT league_cup_apps FROM table_name_76 WHERE league_cup_goals > 0
What is the league cup app with league cup goals more than 0?
CREATE TABLE table_name_76 (league_cup_apps VARCHAR, league_cup_goals INTEGER)
SELECT name FROM station WHERE city = "Palo Alto" EXCEPT SELECT end_station_name FROM trip GROUP BY end_station_name HAVING COUNT(*) > 100
What are the names of stations that are located in Palo Alto city but have never been the ending point of trips more than 100 times?
CREATE TABLE trip (name VARCHAR, end_station_name VARCHAR, city VARCHAR); CREATE TABLE station (name VARCHAR, end_station_name VARCHAR, city VARCHAR)
SELECT attendance FROM table_name_78 WHERE date = "october 6"
What was the attendance on October 6?
CREATE TABLE table_name_78 (attendance VARCHAR, date VARCHAR)
SELECT mascot FROM school WHERE enrollment > (SELECT AVG(enrollment) FROM school)
What are the mascots for schools with enrollments above the average?
CREATE TABLE school (mascot VARCHAR, enrollment INTEGER)
SELECT oppose FROM table_name_47 WHERE unsure = "8%" AND poll_source = "wnbc/marist poll"
What percentage of people were opposed to the candidate based on the WNBC/Marist poll that showed 8% of people were unsure?
CREATE TABLE table_name_47 (oppose VARCHAR, unsure VARCHAR, poll_source VARCHAR)
SELECT week FROM table_name_61 WHERE result = "l 38-17"
Name the week when the result was l 38-17
CREATE TABLE table_name_61 (week VARCHAR, result VARCHAR)
SELECT MIN(production_num) FROM table_name_85 WHERE series = "lt" AND title = "dumb patrol"
What is the smallest production number for the LT series with the Dumb Patrol title?
CREATE TABLE table_name_85 (production_num INTEGER, series VARCHAR, title VARCHAR)
SELECT year__ceremony_ FROM table_name_82 WHERE original_title = "naga bonar"
what year did naga bonar take place
CREATE TABLE table_name_82 (year__ceremony_ VARCHAR, original_title VARCHAR)
SELECT outcome FROM table_name_54 WHERE opponent = "wendy turnbull" AND surface = "grass"
Which Outcome has an Opponent of wendy turnbull, and a Surface of grass?
CREATE TABLE table_name_54 (outcome VARCHAR, opponent VARCHAR, surface VARCHAR)
SELECT nhl_team FROM table_name_66 WHERE position = "left wing"
Which NHL team has left wing listed as the position?
CREATE TABLE table_name_66 (nhl_team VARCHAR, position VARCHAR)
SELECT AVG(overall) FROM table_name_66 WHERE college = "stanford"
What is stanford's average overall?
CREATE TABLE table_name_66 (overall INTEGER, college VARCHAR)
SELECT jockey FROM table_1360997_3 WHERE venue = "Rosehill" AND weight__kg_ = "57.5"
Who was the jockey at Rosehill and the weight was 57.5 kg?
CREATE TABLE table_1360997_3 (jockey VARCHAR, venue VARCHAR, weight__kg_ VARCHAR)
SELECT series_ep FROM table_name_27 WHERE segment_d = "darts"
Name the series ep for darts
CREATE TABLE table_name_27 (series_ep VARCHAR, segment_d VARCHAR)
SELECT original_air_date FROM table_25356350_3 WHERE written_by = "Itamar Moses"
What is the air date of the episode written by Itamar Moses?
CREATE TABLE table_25356350_3 (original_air_date VARCHAR, written_by VARCHAR)
SELECT COUNT(wins) FROM table_name_90 WHERE club = "cobden" AND draws > 0
How many wins did Cobden have when draws were more than 0?
CREATE TABLE table_name_90 (wins VARCHAR, club VARCHAR, draws VARCHAR)
SELECT stadium FROM table_name_11 WHERE host_team = "atlanta falcons"
What is the home stadium of the Atlanta Falcons?
CREATE TABLE table_name_11 (stadium VARCHAR, host_team VARCHAR)
SELECT attendance FROM table_name_7 WHERE opponent = "cincinnati bengals"
What is the Attendance at the game against the Cincinnati Bengals?
CREATE TABLE table_name_7 (attendance VARCHAR, opponent VARCHAR)
SELECT height_in_ft FROM table_name_59 WHERE school_club_team_country = "wyoming"
Name the height in ft for the player from wyoming
CREATE TABLE table_name_59 (height_in_ft VARCHAR, school_club_team_country VARCHAR)
SELECT result FROM table_name_40 WHERE first_elected = "1904" AND incumbent = "james o'h. patterson"
What was the result for james o'h. patterson when first elected in 1904?
CREATE TABLE table_name_40 (result VARCHAR, first_elected VARCHAR, incumbent VARCHAR)
SELECT COUNT(total_w_l) FROM table_10294071_1 WHERE doubles_w_l = "11–11"
what is the total number of total w–l where doubles w–l is 11–11
CREATE TABLE table_10294071_1 (total_w_l VARCHAR, doubles_w_l VARCHAR)
SELECT COUNT(*), T1.name FROM scientists AS T1 JOIN assignedto AS T2 ON T1.ssn = T2.scientist GROUP BY T1.name
Find the number of projects which each scientist is working on and scientist's name.
CREATE TABLE scientists (name VARCHAR, ssn VARCHAR); CREATE TABLE assignedto (scientist VARCHAR)
SELECT T1.cylinders FROM CARS_DATA AS T1 JOIN CAR_NAMES AS T2 ON T1.Id = T2.MakeId WHERE T2.Model = 'volvo' ORDER BY T1.accelerate LIMIT 1
For model volvo, how many cylinders does the car with the least accelerate have?
CREATE TABLE CARS_DATA (cylinders VARCHAR, Id VARCHAR, accelerate VARCHAR); CREATE TABLE CAR_NAMES (MakeId VARCHAR, Model VARCHAR)
SELECT location FROM table_name_51 WHERE year = 2009
At what Location was Miss World 2009?
CREATE TABLE table_name_51 (location VARCHAR, year VARCHAR)
SELECT us_viewers__million_ FROM table_13183076_3 WHERE production_code = "3T7051"
How many U.S. viewers (million) are there for the episode whose Production code is 3T7051?
CREATE TABLE table_13183076_3 (us_viewers__million_ VARCHAR, production_code VARCHAR)
SELECT MIN(sex_ratio__rural_) FROM table_10710364_2
What is the lowest sex ratio in rural areas?
CREATE TABLE table_10710364_2 (sex_ratio__rural_ INTEGER)
SELECT COUNT(part_1) FROM table_1745843_10 WHERE verb_meaning = "to grow, to produce"
How many verbs mean to grow, to produce
CREATE TABLE table_1745843_10 (part_1 VARCHAR, verb_meaning VARCHAR)
SELECT location FROM table_name_20 WHERE game = 4
what is the location of game 4?
CREATE TABLE table_name_20 (location VARCHAR, game VARCHAR)
SELECT event FROM table_name_77 WHERE prize = "€869,000"
What Event has a Prize of €869,000?
CREATE TABLE table_name_77 (event VARCHAR, prize VARCHAR)
SELECT COUNT(appearances) FROM table_name_41 WHERE name = "batram suri category:articles with hcards" AND goals < 2
how many appearances did batram suri category:articles with hcards have scoring less than 2 goals?
CREATE TABLE table_name_41 (appearances VARCHAR, name VARCHAR, goals VARCHAR)
SELECT to_par FROM table_name_21 WHERE player = "chick harbert"
What's Chick Harbert's To par?
CREATE TABLE table_name_21 (to_par VARCHAR, player VARCHAR)
SELECT sonnet FROM table_3002894_4 WHERE nupowr_117 = "0,4, or 8 MB"
When 0,4, or 8 mb is the nupowr 117 what is the sonnet?
CREATE TABLE table_3002894_4 (sonnet VARCHAR, nupowr_117 VARCHAR)
SELECT fname, lname FROM Student WHERE NOT StuID IN (SELECT T1.StuID FROM Has_allergy AS T1 JOIN Allergy_Type AS T2 ON T1.Allergy = T2.Allergy WHERE T2.allergytype = "food")
List the first and last name of the students who do not have any food type allergy.
CREATE TABLE Student (fname VARCHAR, lname VARCHAR, StuID VARCHAR); CREATE TABLE Allergy_Type (Allergy VARCHAR, allergytype VARCHAR); CREATE TABLE Has_allergy (StuID VARCHAR, Allergy VARCHAR)
SELECT visitor FROM table_name_9 WHERE date = "december 29"
Date of december 29 has what visitor?
CREATE TABLE table_name_9 (visitor VARCHAR, date VARCHAR)
SELECT party FROM table_name_85 WHERE name = "jackie goldberg"
What is the political party of Jackie Goldberg?
CREATE TABLE table_name_85 (party VARCHAR, name VARCHAR)
SELECT socket FROM table_27277284_27 WHERE frequency = "2100MHz" AND model_number = "Athlon X2 QL-64"
What kind of sockets does a 2100MHz Athlon X2 QL-64 use?
CREATE TABLE table_27277284_27 (socket VARCHAR, frequency VARCHAR, model_number VARCHAR)
SELECT MAX(release_date) FROM table_name_3 WHERE label = "ariola" AND country = "spain"
What was the latest release date for Ariola in Spain?
CREATE TABLE table_name_3 (release_date INTEGER, label VARCHAR, country VARCHAR)
SELECT COUNT(*) FROM city AS T1 JOIN country AS T2 ON T1.country_id = T2.country_id WHERE T2.country = 'Australia'
How many cities are in Australia?
CREATE TABLE country (country_id VARCHAR, country VARCHAR); CREATE TABLE city (country_id VARCHAR)
SELECT COUNT(pleasure) FROM table_name_69 WHERE psychological_dependence > 1.9 AND drug = "benzodiazepines"
What is the total number of Pleasure(s), when Psychological Dependence is greater than 1.9, and when Drug is "Benzodiazepines"?
CREATE TABLE table_name_69 (pleasure VARCHAR, psychological_dependence VARCHAR, drug VARCHAR)
SELECT MAX(w) FROM table_25689740_2
What is the highest number for W?
CREATE TABLE table_25689740_2 (w INTEGER)
SELECT home_captain FROM table_name_89 WHERE venue = "sabina park"
Who was the home captain at Sabina Park?
CREATE TABLE table_name_89 (home_captain VARCHAR, venue VARCHAR)
SELECT rank FROM table_name_24 WHERE total > 9 AND gold > 6
Which Rank has a Total larger than 9, and a Gold larger than 6?
CREATE TABLE table_name_24 (rank VARCHAR, total VARCHAR, gold VARCHAR)
SELECT venue FROM table_name_68 WHERE date = "2004-07-24"
Which Venue is on 2004-07-24?
CREATE TABLE table_name_68 (venue VARCHAR, date VARCHAR)
SELECT away_team AS score FROM table_name_53 WHERE home_team = "south melbourne"
What is the away team that features a home team of south melbourne?
CREATE TABLE table_name_53 (away_team VARCHAR, home_team VARCHAR)