question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
How many caps figures are there for Norwich City, Coventry City?
CREATE TABLE table_28286776_52 (cap_s_ VARCHAR, club_s_ VARCHAR)
SELECT COUNT(cap_s_) FROM table_28286776_52 WHERE club_s_ = "Norwich City, Coventry City"
What was Adam Scott's total score when playing in Australia with a to par of e?
CREATE TABLE table_name_51 (score INTEGER, player VARCHAR, country VARCHAR, to_par VARCHAR)
SELECT SUM(score) FROM table_name_51 WHERE country = "australia" AND to_par = "e" AND player = "adam scott"
What position did Rich Manning play?
CREATE TABLE table_name_87 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_87 WHERE player = "rich manning"
Who scored the most points when the Bucks played against Houston?
CREATE TABLE table_27756014_6 (high_points VARCHAR, team VARCHAR)
SELECT high_points FROM table_27756014_6 WHERE team = "Houston"
What is the number of the rank for the name of Chen Yan in a lane less than 2?
CREATE TABLE table_name_89 (rank VARCHAR, name VARCHAR, lane VARCHAR)
SELECT COUNT(rank) FROM table_name_89 WHERE name = "chen yan" AND lane < 2
How many figures for wickets when the strike rate is 54.0?
CREATE TABLE table_19662262_6 (wickets VARCHAR, strike_rate VARCHAR)
SELECT COUNT(wickets) FROM table_19662262_6 WHERE strike_rate = "54.0"
What is the Date with a Leading scorer with maurice williams (25), and a Score with 102–105?
CREATE TABLE table_name_24 (date VARCHAR, leading_scorer VARCHAR, score VARCHAR)
SELECT date FROM table_name_24 WHERE leading_scorer = "maurice williams (25)" AND score = "102–105"
What is the attendance of the match with a record 20-11?
CREATE TABLE table_name_97 (attendance VARCHAR, record VARCHAR)
SELECT attendance FROM table_name_97 WHERE record = "20-11"
What Song's Index is F6?
CREATE TABLE table_name_58 (song VARCHAR, index VARCHAR)
SELECT song FROM table_name_58 WHERE index = "f6"
What Position has no College Hall of Fame?
CREATE TABLE table_name_48 (position VARCHAR, college_hall_of_fame VARCHAR)
SELECT position FROM table_name_48 WHERE college_hall_of_fame = "no"
When was nese malifa born?
CREATE TABLE table_name_19 (date_of_birth__age_ VARCHAR, player VARCHAR)
SELECT date_of_birth__age_ FROM table_name_19 WHERE player = "nese malifa"
What is the home team when the tie is 11?
CREATE TABLE table_name_40 (home_team VARCHAR, tie_no VARCHAR)
SELECT home_team FROM table_name_40 WHERE tie_no = "11"
Championship larger than 3, and a FA Cup smaller than 3, and a Total smaller than 6 involves what highest league cup?
CREATE TABLE table_name_27 (league_cup INTEGER, total VARCHAR, championship VARCHAR, fa_cup VARCHAR)
SELECT MAX(league_cup) FROM table_name_27 WHERE championship > 3 AND fa_cup < 3 AND total < 6
What was the smallist population in 2010?
CREATE TABLE table_261951_1 (population__2010_ INTEGER)
SELECT MIN(population__2010_) FROM table_261951_1
What round of the draft was Stan Adams selected?
CREATE TABLE table_name_59 (round INTEGER, player VARCHAR)
SELECT AVG(round) FROM table_name_59 WHERE player = "stan adams"
What's the percentage of the immigrants in 2007 in the country with 14.1% of the immigrants in 2006?
CREATE TABLE table_23619212_1 (_percentage_of_all_immigrants_2007 VARCHAR, _percentage_of_all_immigrants_2006 VARCHAR)
SELECT _percentage_of_all_immigrants_2007 FROM table_23619212_1 WHERE _percentage_of_all_immigrants_2006 = "14.1%"
What is the average number of goals with 21 games for a debut round less than 1?
CREATE TABLE table_name_47 (goals__2008_ INTEGER, games__2008_ VARCHAR, debut_round VARCHAR)
SELECT AVG(goals__2008_) FROM table_name_47 WHERE games__2008_ = 21 AND debut_round < 1
If the Away team is north melbourne, what's the Home team score?
CREATE TABLE table_name_18 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team AS score FROM table_name_18 WHERE away_team = "north melbourne"
What day did South Melbourne play as the away team?
CREATE TABLE table_name_82 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_82 WHERE away_team = "south melbourne"
How many draws did gary o'shaughnessy have?
CREATE TABLE table_name_91 (draw INTEGER, performer VARCHAR)
SELECT SUM(draw) FROM table_name_91 WHERE performer = "gary o'shaughnessy"
Find the names of the top 10 airlines that operate the most number of routes.
CREATE TABLE airlines (name VARCHAR, alid VARCHAR); CREATE TABLE routes (alid VARCHAR)
SELECT T1.name, T2.alid FROM airlines AS T1 JOIN routes AS T2 ON T1.alid = T2.alid GROUP BY T2.alid ORDER BY COUNT(*) DESC LIMIT 10
On average, how many Starts have Wins that are smaller than 0?
CREATE TABLE table_name_86 (starts INTEGER, wins INTEGER)
SELECT AVG(starts) FROM table_name_86 WHERE wins < 0
What day was the game at chicago?
CREATE TABLE table_13464416_8 (date VARCHAR, team VARCHAR)
SELECT date FROM table_13464416_8 WHERE team = "Chicago"
What was the Company or Product name where Entrepreneurs Geoff and Colette Bell requested £75,000?
CREATE TABLE table_name_25 (company_or_product_name VARCHAR, money_requested__£_ VARCHAR, entrepreneur_s_ VARCHAR)
SELECT company_or_product_name FROM table_name_25 WHERE money_requested__£_ = "75,000" AND entrepreneur_s_ = "geoff and colette bell"
What is Maksim Botin's position?
CREATE TABLE table_14038363_1 (position VARCHAR, player VARCHAR)
SELECT position FROM table_14038363_1 WHERE player = "Maksim Botin"
What is the average number of tries for British and Irish Lions with less than 2 games?
CREATE TABLE table_name_82 (tries INTEGER, team VARCHAR, games VARCHAR)
SELECT AVG(tries) FROM table_name_82 WHERE team = "british and irish lions" AND games < 2
Which Height has a Position of c, and a Player of yiannis bourousis?
CREATE TABLE table_name_50 (height INTEGER, position VARCHAR, player VARCHAR)
SELECT SUM(height) FROM table_name_50 WHERE position = "c" AND player = "yiannis bourousis"
What country has a less than 136.1 total and a 0.02 solar?
CREATE TABLE table_name_38 (country VARCHAR, total VARCHAR, solar VARCHAR)
SELECT country FROM table_name_38 WHERE total < 136.1 AND solar = 0.02
What is the points average when the tied is greater than 8, less than 82 games and the coach of Bryan Mclay † Morris Lallo ‡ Gerry Moore ‡, and greater than 322 goals?
CREATE TABLE table_name_13 (points INTEGER, goals_against VARCHAR, coach VARCHAR, tied VARCHAR, games VARCHAR)
SELECT AVG(points) FROM table_name_13 WHERE tied > 8 AND games < 82 AND coach = "bryan mclay † morris lallo ‡ gerry moore ‡" AND goals_against > 322
Which name has a pressure of 985hpa (29.09inhg)?
CREATE TABLE table_name_56 (name VARCHAR, pressure VARCHAR)
SELECT name FROM table_name_56 WHERE pressure = "985hpa (29.09inhg)"
Name the Against which has a Venue of wembley stadium , london?
CREATE TABLE table_name_91 (against INTEGER, venue VARCHAR)
SELECT MAX(against) FROM table_name_91 WHERE venue = "wembley stadium , london"
How many rounds had a time of 5:00 at UFC 155?
CREATE TABLE table_name_25 (round VARCHAR, time VARCHAR, event VARCHAR)
SELECT COUNT(round) FROM table_name_25 WHERE time = "5:00" AND event = "ufc 155"
Which party was re-elected in south carolina 5 district?
CREATE TABLE table_name_2 (party VARCHAR, result VARCHAR, district VARCHAR)
SELECT party FROM table_name_2 WHERE result = "re-elected" AND district = "south carolina 5"
What is the result for opponent TCU?
CREATE TABLE table_name_89 (result VARCHAR, opponent_number VARCHAR)
SELECT result FROM table_name_89 WHERE opponent_number = "tcu"
Who was featured in the election of charles edward bennett redistricted from 2nd?
CREATE TABLE table_1341843_10 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341843_10 WHERE incumbent = "Charles Edward Bennett Redistricted from 2nd"
On what date was the record set with a time of 1:07.18?
CREATE TABLE table_name_44 (date VARCHAR, time VARCHAR)
SELECT date FROM table_name_44 WHERE time = "1:07.18"
What is the english name of the ministry of defense with an abbreviation of nda bōei-dai(防衛大)?
CREATE TABLE table_name_31 (english_name VARCHAR, provider_national_government_ VARCHAR, abbreviation VARCHAR)
SELECT english_name FROM table_name_31 WHERE provider_national_government_ = "ministry of defense" AND abbreviation = "nda bōei-dai(防衛大)"
What is the sum of the attendance on November 16?
CREATE TABLE table_name_63 (attendance INTEGER, date VARCHAR)
SELECT SUM(attendance) FROM table_name_63 WHERE date = "november 16"
Name the number of dismissals for adam gilchrist
CREATE TABLE table_23316034_23 (dismissals VARCHAR, player VARCHAR)
SELECT COUNT(dismissals) FROM table_23316034_23 WHERE player = "Adam Gilchrist"
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 MAX(martyred) FROM table_name_65 WHERE beatified > 1909 AND name = "laurent-marie-joseph imbert / st. imbert" AND canonised > 1984
What is the name of the license created by IETF?
CREATE TABLE table_name_72 (license VARCHAR, creator VARCHAR)
SELECT license FROM table_name_72 WHERE creator = "ietf"
What the total amount of points won during seed 25?
CREATE TABLE table_24431348_18 (points VARCHAR, seed VARCHAR)
SELECT COUNT(points) AS won FROM table_24431348_18 WHERE seed = 25
In what year did the team compete in the 2nd, Northeast season of the USL PDL League?
CREATE TABLE table_1939214_1 (year VARCHAR, league VARCHAR, regular_season VARCHAR)
SELECT year FROM table_1939214_1 WHERE league = "USL PDL" AND regular_season = "2nd, Northeast"
During footscray's home match, who was the away team?
CREATE TABLE table_name_33 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team AS score FROM table_name_33 WHERE home_team = "footscray"
What is the Score of the Tournament played on Clay Surface on May 5, 1999?
CREATE TABLE table_name_42 (score VARCHAR, surface VARCHAR, date VARCHAR)
SELECT score FROM table_name_42 WHERE surface = "clay" AND date = "may 5, 1999"
What was the score for the 2014 FIFA World Cup Qual. competition?
CREATE TABLE table_name_13 (score VARCHAR, competition VARCHAR)
SELECT score FROM table_name_13 WHERE competition = "2014 fifa world cup qual."
Which Save is on June 15?
CREATE TABLE table_name_55 (save VARCHAR, date VARCHAR)
SELECT save FROM table_name_55 WHERE date = "june 15"
What is the winning score of the tournament with Charles Coody as the runner-up?
CREATE TABLE table_name_91 (winning_score VARCHAR, runner_s__up VARCHAR)
SELECT winning_score FROM table_name_91 WHERE runner_s__up = "charles coody"
What was the date of the game that was played against the away team of York City?
CREATE TABLE table_name_7 (attendance VARCHAR, away_team VARCHAR)
SELECT attendance FROM table_name_7 WHERE away_team = "york city"
What is the highest Number of seasons in Liga MX for Club cruz azul, when their season in the top division is higher than 68?
CREATE TABLE table_name_33 (number_of_seasons_in_liga_mx INTEGER, club VARCHAR, number_of_seasons_in_top_division VARCHAR)
SELECT MAX(number_of_seasons_in_liga_mx) FROM table_name_33 WHERE club = "cruz azul" AND number_of_seasons_in_top_division > 68
how many different positions are there?
CREATE TABLE player (POSITION VARCHAR)
SELECT COUNT(DISTINCT POSITION) FROM player
In 1958, what has the IRFU All-Stars Home Venue?
CREATE TABLE table_name_18 (venue VARCHAR, home VARCHAR, season VARCHAR)
SELECT venue FROM table_name_18 WHERE home = "irfu all-stars" AND season = 1958
What is the average oveall pick for players from the college of Miami (FL)?
CREATE TABLE table_name_69 (overall INTEGER, college VARCHAR)
SELECT AVG(overall) FROM table_name_69 WHERE college = "miami (fl)"
Who is the conductor when the chicago symphony orchestra is featured?
CREATE TABLE table_name_3 (conductor VARCHAR, orchestra VARCHAR)
SELECT conductor FROM table_name_3 WHERE orchestra = "chicago symphony orchestra"
Name the nfl team for eric williams
CREATE TABLE table_2508633_6 (nfl_team VARCHAR, player VARCHAR)
SELECT nfl_team FROM table_2508633_6 WHERE player = "Eric Williams"
What was the aggregate for the match with a team 2 of Kenya?
CREATE TABLE table_name_60 (agg VARCHAR, team_2 VARCHAR)
SELECT agg FROM table_name_60 WHERE team_2 = "kenya"
Which venue has an against value larger than 21 and had Argentina as an opposing team.
CREATE TABLE table_name_91 (venue VARCHAR, against VARCHAR, opposing_team VARCHAR)
SELECT venue FROM table_name_91 WHERE against > 21 AND opposing_team = "argentina"
How many scores were there in week 11?
CREATE TABLE table_14863869_1 (record VARCHAR, week VARCHAR)
SELECT COUNT(record) FROM table_14863869_1 WHERE week = 11
What is the lowest interview of the contestant with an evening gown bigger than 9.343?
CREATE TABLE table_name_4 (interview INTEGER, evening_gown INTEGER)
SELECT MIN(interview) FROM table_name_4 WHERE evening_gown > 9.343
What is the average number of students in East Lansing, MI?
CREATE TABLE table_name_70 (founded INTEGER, location VARCHAR)
SELECT AVG(founded) FROM table_name_70 WHERE location = "east lansing, mi"
What is the name of the player with 305 points?
CREATE TABLE table_name_46 (name VARCHAR, points VARCHAR)
SELECT name FROM table_name_46 WHERE points = 305
Name the least clock rate mhz
CREATE TABLE table_142573_1 (clock_rate__mhz_ INTEGER)
SELECT MIN(clock_rate__mhz_) FROM table_142573_1
What was the province with an election date of 5 cannot handle non-empty timestamp argument! 1861?
CREATE TABLE table_27592654_2 (province VARCHAR, election_date VARCHAR)
SELECT province FROM table_27592654_2 WHERE election_date = "5 Cannot handle non-empty timestamp argument! 1861"
Which supercentenarians were born in Manitoba?
CREATE TABLE table_name_52 (name VARCHAR, province_or_country_of_birth VARCHAR)
SELECT name FROM table_name_52 WHERE province_or_country_of_birth = "manitoba"
How many viewers, in millions, were for the episode directed by Tawnia McKiernan?
CREATE TABLE table_12159115_3 (us_viewers__millions_ VARCHAR, directed_by VARCHAR)
SELECT us_viewers__millions_ FROM table_12159115_3 WHERE directed_by = "Tawnia McKiernan"
What is Player, when Total is greater than 288, and when Country is "South Africa"?
CREATE TABLE table_name_54 (player VARCHAR, total VARCHAR, country VARCHAR)
SELECT player FROM table_name_54 WHERE total > 288 AND country = "south africa"
How many floors does the address 1828 jay street have?
CREATE TABLE table_name_44 (floors VARCHAR, street_address_in_detroit VARCHAR)
SELECT floors FROM table_name_44 WHERE street_address_in_detroit = "1828 jay street"
What are the phone numbers of all customers and suppliers.
CREATE TABLE suppliers (customer_phone VARCHAR, supplier_phone VARCHAR); CREATE TABLE customers (customer_phone VARCHAR, supplier_phone VARCHAR)
SELECT customer_phone FROM customers UNION SELECT supplier_phone FROM suppliers
@ Chicago had a high points of what?
CREATE TABLE table_17355408_7 (high_points VARCHAR, team VARCHAR)
SELECT high_points FROM table_17355408_7 WHERE team = "@ Chicago"
What is the average week for the game against baltimore colts with less than 41,062 in attendance?
CREATE TABLE table_name_12 (week INTEGER, opponent VARCHAR, attendance VARCHAR)
SELECT AVG(week) FROM table_name_12 WHERE opponent = "baltimore colts" AND attendance < 41 OFFSET 062
What is the smallest crowd at victoria park?
CREATE TABLE table_name_22 (crowd INTEGER, venue VARCHAR)
SELECT MIN(crowd) FROM table_name_22 WHERE venue = "victoria park"
What were the years that the building at 200 sw harrison was considered to be the tallest building?
CREATE TABLE table_name_3 (years_as_tallest VARCHAR, street_address VARCHAR)
SELECT years_as_tallest FROM table_name_3 WHERE street_address = "200 sw harrison"
Who had the high rebounds when the score was w 105–95 (ot) and Jason Kidd (8) had the high assists?
CREATE TABLE table_name_57 (high_rebounds VARCHAR, high_assists VARCHAR, score VARCHAR)
SELECT high_rebounds FROM table_name_57 WHERE high_assists = "jason kidd (8)" AND score = "w 105–95 (ot)"
Where is the city of Maharashtra's Pune team?
CREATE TABLE table_name_31 (city VARCHAR, state VARCHAR, team VARCHAR)
SELECT city FROM table_name_31 WHERE state = "maharashtra" AND team = "pune"
Tell me the sum of rank with wins of 17
CREATE TABLE table_name_6 (rank INTEGER, wins VARCHAR)
SELECT SUM(rank) FROM table_name_6 WHERE wins = 17
What is Position, when Team is Cincinnati Royals?
CREATE TABLE table_name_77 (position VARCHAR, team VARCHAR)
SELECT position FROM table_name_77 WHERE team = "cincinnati royals"
What Chilean word is used for the Castilian word ordenador?
CREATE TABLE table_name_78 (chilean VARCHAR, castilian VARCHAR)
SELECT chilean FROM table_name_78 WHERE castilian = "ordenador"
What is the average Total, when FA Cup Goals is 1, when League Goals is 10, and when Club is Crystal Palace?
CREATE TABLE table_name_20 (total INTEGER, club VARCHAR, fa_cup_goals VARCHAR, league_goals VARCHAR)
SELECT AVG(total) FROM table_name_20 WHERE fa_cup_goals = "1" AND league_goals = "10" AND club = "crystal palace"
What nation has a Record of 5.06m(16ft7in)?
CREATE TABLE table_name_95 (nation VARCHAR, record VARCHAR)
SELECT nation FROM table_name_95 WHERE record = "5.06m(16ft7in)"
What is the record of the game that resulted in a loss with more than 56,648 people in attendance?
CREATE TABLE table_name_99 (record VARCHAR, result VARCHAR, attendance VARCHAR)
SELECT record FROM table_name_99 WHERE result = "loss" AND attendance > 56 OFFSET 648
List all years in Orlando where Jeryl Sasser was a player.
CREATE TABLE table_15621965_17 (years_in_orlando VARCHAR, player VARCHAR)
SELECT years_in_orlando FROM table_15621965_17 WHERE player = "Jeryl Sasser"
Who was the Interview Subject on the Date when there were Pictorials of Christie Brinkley?
CREATE TABLE table_name_89 (interview_subject VARCHAR, pictorials VARCHAR)
SELECT interview_subject FROM table_name_89 WHERE pictorials = "christie brinkley"
If the chief judge is Jeffrey L. Viken, what is the region?
CREATE TABLE table_22901612_2 (region VARCHAR, chief_judge VARCHAR)
SELECT region FROM table_22901612_2 WHERE chief_judge = "Jeffrey L. Viken"
What player has a no pick position in 1976?
CREATE TABLE table_name_33 (player VARCHAR, position VARCHAR, year VARCHAR)
SELECT player FROM table_name_33 WHERE position = "no pick" AND year = 1976
What was the manner of departure for the team whose incoming manager was George Burley?
CREATE TABLE table_26593762_3 (manner_of_departure VARCHAR, incoming_manager VARCHAR)
SELECT manner_of_departure FROM table_26593762_3 WHERE incoming_manager = "George Burley"
In how many counties did McCain get 65.72% of the votes?
CREATE TABLE table_20799587_1 (county VARCHAR, mccain_percentage VARCHAR)
SELECT COUNT(county) FROM table_20799587_1 WHERE mccain_percentage = "65.72%"
which affiliation does edwin e. willis affiliate with
CREATE TABLE table_1341930_18 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341930_18 WHERE incumbent = "Edwin E. Willis"
What was the lowest Top-10, when the Wins were 0, when the Top-25 was 12, and when the Events were less than 23?
CREATE TABLE table_name_4 (top_10 INTEGER, events VARCHAR, wins VARCHAR, top_25 VARCHAR)
SELECT MIN(top_10) FROM table_name_4 WHERE wins = 0 AND top_25 = 12 AND events < 23
When was the oakachoy covered bridge listed?
CREATE TABLE table_name_34 (listed VARCHAR, name VARCHAR)
SELECT listed FROM table_name_34 WHERE name = "oakachoy covered bridge"
Which model saves the most gasoline? That is to say, have the maximum miles per gallon.
CREATE TABLE CAR_NAMES (Model VARCHAR, MakeId VARCHAR); CREATE TABLE CARS_DATA (Id VARCHAR, mpg VARCHAR)
SELECT T1.Model FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id ORDER BY T2.mpg DESC LIMIT 1
Which Tankers have a Hazmat of –, and Platforms of –, and a Staffing of volunteer?
CREATE TABLE table_name_9 (tankers VARCHAR, staffing VARCHAR, hazmat VARCHAR, platforms VARCHAR)
SELECT tankers FROM table_name_9 WHERE hazmat = "–" AND platforms = "–" AND staffing = "volunteer"
What was the result of week 2?
CREATE TABLE table_name_93 (result VARCHAR, week VARCHAR)
SELECT result FROM table_name_93 WHERE week = "week 2"
Which rating larger than 5 have the lowest amount of views in #3 rank with a share of 9?
CREATE TABLE table_name_11 (viewers__millions_ INTEGER, rating VARCHAR, weekly_rank VARCHAR, share VARCHAR)
SELECT MIN(viewers__millions_) FROM table_name_11 WHERE weekly_rank = "#3" AND share = 9 AND rating > 5
What are the names of the tourist attractions Vincent and Marcelle visit?
CREATE TABLE VISITS (Tourist_Attraction_ID VARCHAR, Tourist_ID VARCHAR); CREATE TABLE VISITORS (Tourist_Details VARCHAR, Tourist_ID VARCHAR); CREATE TABLE Tourist_Attractions (Name VARCHAR, Tourist_Attraction_ID VARCHAR)
SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN VISITORS AS T2 JOIN VISITS AS T3 ON T1.Tourist_Attraction_ID = T3.Tourist_Attraction_ID AND T2.Tourist_ID = T3.Tourist_ID WHERE T2.Tourist_Details = "Vincent" INTERSECT SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN VISITORS AS T2 JOIN VISITS AS T3 ON T1.Tourist_Attraction_ID = T3.Tourist_Attraction_ID AND T2.Tourist_ID = T3.Tourist_ID WHERE T2.Tourist_Details = "Marcelle"
What is the score of the match played in England where Peter McEvoy was the champion and Paul McKellar was runner-up?
CREATE TABLE table_name_34 (score VARCHAR, runner_up VARCHAR, country VARCHAR, champion VARCHAR)
SELECT score FROM table_name_34 WHERE country = "england" AND champion = "peter mcevoy" AND runner_up = "paul mckellar"
What was the try bonus when the points for was 608?
CREATE TABLE table_name_56 (try_bonus VARCHAR, points_for VARCHAR)
SELECT try_bonus FROM table_name_56 WHERE points_for = "608"
What was escape to river cottage released?
CREATE TABLE table_name_64 (released VARCHAR, dvd_name VARCHAR)
SELECT released FROM table_name_64 WHERE dvd_name = "escape to river cottage"
What is the position for the pick number 17?
CREATE TABLE table_12165135_1 (position VARCHAR, overall_pick__number VARCHAR)
SELECT position FROM table_12165135_1 WHERE overall_pick__number = 17
What is the highest total medals a team with less than 15 gold, less than 5 bronze, and a rank larger than 10 has?
CREATE TABLE table_name_96 (total INTEGER, rank VARCHAR, gold VARCHAR, bronze VARCHAR)
SELECT MAX(total) FROM table_name_96 WHERE gold < 15 AND bronze < 5 AND rank > 10
When a Sigma 7 has a standard byte string, what is the value for the decimal?
CREATE TABLE table_name_9 (decimal VARCHAR, byte_string VARCHAR, model VARCHAR)
SELECT decimal FROM table_name_9 WHERE byte_string = "standard" AND model = "sigma 7"