question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
what's the percentage of votes with number of deputies being 112
CREATE TABLE table_13746866_2 (percentage_of_votes VARCHAR, number_of_deputies VARCHAR)
SELECT percentage_of_votes FROM table_13746866_2 WHERE number_of_deputies = 112
### Context: CREATE TABLE table_13746866_2 (percentage_of_votes VARCHAR, number_of_deputies VARCHAR) ### Question: what's the percentage of votes with number of deputies being 112 ### Answer: SELECT percentage_of_votes FROM table_13746866_2 WHERE number_of_deputies = 112
what's the percentage of votes with election date being 1981
CREATE TABLE table_13746866_2 (percentage_of_votes VARCHAR, election_date VARCHAR)
SELECT percentage_of_votes FROM table_13746866_2 WHERE election_date = 1981
### Context: CREATE TABLE table_13746866_2 (percentage_of_votes VARCHAR, election_date VARCHAR) ### Question: what's the percentage of votes with election date being 1981 ### Answer: SELECT percentage_of_votes FROM table_13746866_2 WHERE election_date = 1981
what's the number of deputies with number of votes received being smaller than 1549176.2765483726 and election date being 1969
CREATE TABLE table_13746866_2 (number_of_deputies VARCHAR, number_of_votes_received VARCHAR, election_date VARCHAR)
SELECT number_of_deputies FROM table_13746866_2 WHERE number_of_votes_received < 1549176.2765483726 AND election_date = 1969
### Context: CREATE TABLE table_13746866_2 (number_of_deputies VARCHAR, number_of_votes_received VARCHAR, election_date VARCHAR) ### Question: what's the number of deputies with number of votes received being smaller than 1549176.2765483726 and election date being 1969 ### Answer: SELECT number_of_deputies FROM table_1...
Who wrote the sorry of the episode directed by Dan Attias?
CREATE TABLE table_13755296_1 (story_by VARCHAR, directed_by VARCHAR)
SELECT story_by FROM table_13755296_1 WHERE directed_by = "Dan Attias"
### Context: CREATE TABLE table_13755296_1 (story_by VARCHAR, directed_by VARCHAR) ### Question: Who wrote the sorry of the episode directed by Dan Attias? ### Answer: SELECT story_by FROM table_13755296_1 WHERE directed_by = "Dan Attias"
What's the season number of the episode directed by Dan Attias?
CREATE TABLE table_13755296_1 (season__number INTEGER, directed_by VARCHAR)
SELECT MIN(season__number) FROM table_13755296_1 WHERE directed_by = "Dan Attias"
### Context: CREATE TABLE table_13755296_1 (season__number INTEGER, directed_by VARCHAR) ### Question: What's the season number of the episode directed by Dan Attias? ### Answer: SELECT MIN(season__number) FROM table_13755296_1 WHERE directed_by = "Dan Attias"
What's the title of the episode written by David Simon?
CREATE TABLE table_13755296_1 (title VARCHAR, teleplay_by VARCHAR)
SELECT title FROM table_13755296_1 WHERE teleplay_by = "David Simon"
### Context: CREATE TABLE table_13755296_1 (title VARCHAR, teleplay_by VARCHAR) ### Question: What's the title of the episode written by David Simon? ### Answer: SELECT title FROM table_13755296_1 WHERE teleplay_by = "David Simon"
What year was Skyline High School founded?
CREATE TABLE table_13759592_1 (founded VARCHAR, high_school VARCHAR)
SELECT COUNT(founded) FROM table_13759592_1 WHERE high_school = "Skyline"
### Context: CREATE TABLE table_13759592_1 (founded VARCHAR, high_school VARCHAR) ### Question: What year was Skyline High School founded? ### Answer: SELECT COUNT(founded) FROM table_13759592_1 WHERE high_school = "Skyline"
How many enrollment figures are provided for Roosevelt High School?
CREATE TABLE table_13759592_1 (enrollment VARCHAR, high_school VARCHAR)
SELECT COUNT(enrollment) FROM table_13759592_1 WHERE high_school = "Roosevelt"
### Context: CREATE TABLE table_13759592_1 (enrollment VARCHAR, high_school VARCHAR) ### Question: How many enrollment figures are provided for Roosevelt High School? ### Answer: SELECT COUNT(enrollment) FROM table_13759592_1 WHERE high_school = "Roosevelt"
Which location has a team that is nicknamed the Vikings?
CREATE TABLE table_13759592_1 (location VARCHAR, nickname VARCHAR)
SELECT location FROM table_13759592_1 WHERE nickname = "Vikings"
### Context: CREATE TABLE table_13759592_1 (location VARCHAR, nickname VARCHAR) ### Question: Which location has a team that is nicknamed the Vikings? ### Answer: SELECT location FROM table_13759592_1 WHERE nickname = "Vikings"
What year was Kirkland founded?
CREATE TABLE table_13759592_2 (founded VARCHAR, location VARCHAR)
SELECT founded FROM table_13759592_2 WHERE location = "Kirkland"
### Context: CREATE TABLE table_13759592_2 (founded VARCHAR, location VARCHAR) ### Question: What year was Kirkland founded? ### Answer: SELECT founded FROM table_13759592_2 WHERE location = "Kirkland"
Which institution was founded in 1923?
CREATE TABLE table_13759592_2 (institution VARCHAR, founded VARCHAR)
SELECT institution FROM table_13759592_2 WHERE founded = 1923
### Context: CREATE TABLE table_13759592_2 (institution VARCHAR, founded VARCHAR) ### Question: Which institution was founded in 1923? ### Answer: SELECT institution FROM table_13759592_2 WHERE founded = 1923
Where is Interlake located?
CREATE TABLE table_13759592_2 (location VARCHAR, institution VARCHAR)
SELECT location FROM table_13759592_2 WHERE institution = "Interlake"
### Context: CREATE TABLE table_13759592_2 (location VARCHAR, institution VARCHAR) ### Question: Where is Interlake located? ### Answer: SELECT location FROM table_13759592_2 WHERE institution = "Interlake"
What was the series count at on May 23?
CREATE TABLE table_13762472_13 (series VARCHAR, date VARCHAR)
SELECT series FROM table_13762472_13 WHERE date = "May 23"
### Context: CREATE TABLE table_13762472_13 (series VARCHAR, date VARCHAR) ### Question: What was the series count at on May 23? ### Answer: SELECT series FROM table_13762472_13 WHERE date = "May 23"
What is the lowest numbered game on the list?
CREATE TABLE table_13762472_5 (game INTEGER)
SELECT MIN(game) FROM table_13762472_5
### Context: CREATE TABLE table_13762472_5 (game INTEGER) ### Question: What is the lowest numbered game on the list? ### Answer: SELECT MIN(game) FROM table_13762472_5
Who had the high rebounds at the delta center?
CREATE TABLE table_13762472_5 (high_rebounds VARCHAR, location_attendance VARCHAR)
SELECT high_rebounds FROM table_13762472_5 WHERE location_attendance = "Delta Center"
### Context: CREATE TABLE table_13762472_5 (high_rebounds VARCHAR, location_attendance VARCHAR) ### Question: Who had the high rebounds at the delta center? ### Answer: SELECT high_rebounds FROM table_13762472_5 WHERE location_attendance = "Delta Center"
How many people had the high rebound total when the team was 19-13?
CREATE TABLE table_13762472_5 (high_rebounds VARCHAR, record VARCHAR)
SELECT COUNT(high_rebounds) FROM table_13762472_5 WHERE record = "19-13"
### Context: CREATE TABLE table_13762472_5 (high_rebounds VARCHAR, record VARCHAR) ### Question: How many people had the high rebound total when the team was 19-13? ### Answer: SELECT COUNT(high_rebounds) FROM table_13762472_5 WHERE record = "19-13"
Who had the high point total when the team was 24-17?
CREATE TABLE table_13762472_5 (high_points VARCHAR, record VARCHAR)
SELECT high_points FROM table_13762472_5 WHERE record = "24-17"
### Context: CREATE TABLE table_13762472_5 (high_points VARCHAR, record VARCHAR) ### Question: Who had the high point total when the team was 24-17? ### Answer: SELECT high_points FROM table_13762472_5 WHERE record = "24-17"
What was the score when the heat played at charlotte arena?
CREATE TABLE table_13762472_7 (score VARCHAR, location_attendance VARCHAR)
SELECT score FROM table_13762472_7 WHERE location_attendance = "Charlotte Arena"
### Context: CREATE TABLE table_13762472_7 (score VARCHAR, location_attendance VARCHAR) ### Question: What was the score when the heat played at charlotte arena? ### Answer: SELECT score FROM table_13762472_7 WHERE location_attendance = "Charlotte Arena"
How many games had the team played after they were 40-20?
CREATE TABLE table_13762472_7 (game VARCHAR, record VARCHAR)
SELECT game FROM table_13762472_7 WHERE record = "40-20"
### Context: CREATE TABLE table_13762472_7 (game VARCHAR, record VARCHAR) ### Question: How many games had the team played after they were 40-20? ### Answer: SELECT game FROM table_13762472_7 WHERE record = "40-20"
What was the score on November 25?
CREATE TABLE table_13762472_3 (score VARCHAR, date VARCHAR)
SELECT score FROM table_13762472_3 WHERE date = "November 25"
### Context: CREATE TABLE table_13762472_3 (score VARCHAR, date VARCHAR) ### Question: What was the score on November 25? ### Answer: SELECT score FROM table_13762472_3 WHERE date = "November 25"
How many players scored the most points when the opposing team was New Orleans/Oklahoma City?
CREATE TABLE table_13762472_3 (high_points VARCHAR, team VARCHAR)
SELECT COUNT(high_points) FROM table_13762472_3 WHERE team = "New Orleans/Oklahoma City"
### Context: CREATE TABLE table_13762472_3 (high_points VARCHAR, team VARCHAR) ### Question: How many players scored the most points when the opposing team was New Orleans/Oklahoma City? ### Answer: SELECT COUNT(high_points) FROM table_13762472_3 WHERE team = "New Orleans/Oklahoma City"
How many players scored the most points on game 4?
CREATE TABLE table_13762472_3 (high_points VARCHAR, game VARCHAR)
SELECT COUNT(high_points) FROM table_13762472_3 WHERE game = 4
### Context: CREATE TABLE table_13762472_3 (high_points VARCHAR, game VARCHAR) ### Question: How many players scored the most points on game 4? ### Answer: SELECT COUNT(high_points) FROM table_13762472_3 WHERE game = 4
What was the last game where the record was 6-3?
CREATE TABLE table_13762472_3 (game INTEGER, record VARCHAR)
SELECT MAX(game) FROM table_13762472_3 WHERE record = "6-3"
### Context: CREATE TABLE table_13762472_3 (game INTEGER, record VARCHAR) ### Question: What was the last game where the record was 6-3? ### Answer: SELECT MAX(game) FROM table_13762472_3 WHERE record = "6-3"
what's the country/region with seasons and winners being season 1, 2012: demetra malalan
CREATE TABLE table_13779832_1 (country_region VARCHAR, seasons_and_winners VARCHAR)
SELECT country_region FROM table_13779832_1 WHERE seasons_and_winners = "Season 1, 2012: Demetra Malalan"
### Context: CREATE TABLE table_13779832_1 (country_region VARCHAR, seasons_and_winners VARCHAR) ### Question: what's the country/region with seasons and winners being season 1, 2012: demetra malalan ### Answer: SELECT country_region FROM table_13779832_1 WHERE seasons_and_winners = "Season 1, 2012: Demetra Malalan"
how many local title with televbeingion network being tv nova website
CREATE TABLE table_13779832_1 (local_title VARCHAR, television_network VARCHAR)
SELECT COUNT(local_title) FROM table_13779832_1 WHERE television_network = "TV Nova Website"
### Context: CREATE TABLE table_13779832_1 (local_title VARCHAR, television_network VARCHAR) ### Question: how many local title with televbeingion network being tv nova website ### Answer: SELECT COUNT(local_title) FROM table_13779832_1 WHERE television_network = "TV Nova Website"
who is the the judges with seasons and winners being season 1, 2013–2014: upcoming season
CREATE TABLE table_13779832_1 (judges VARCHAR, seasons_and_winners VARCHAR)
SELECT judges FROM table_13779832_1 WHERE seasons_and_winners = "Season 1, 2013–2014: Upcoming season"
### Context: CREATE TABLE table_13779832_1 (judges VARCHAR, seasons_and_winners VARCHAR) ### Question: who is the the judges with seasons and winners being season 1, 2013–2014: upcoming season ### Answer: SELECT judges FROM table_13779832_1 WHERE seasons_and_winners = "Season 1, 2013–2014: Upcoming season"
who is the the judges with local title being x factor and presenters being heikki paasonen jukka rossi (xtra factor)
CREATE TABLE table_13779832_1 (judges VARCHAR, local_title VARCHAR, presenters VARCHAR)
SELECT judges FROM table_13779832_1 WHERE local_title = "X Factor" AND presenters = "Heikki Paasonen Jukka Rossi (Xtra Factor)"
### Context: CREATE TABLE table_13779832_1 (judges VARCHAR, local_title VARCHAR, presenters VARCHAR) ### Question: who is the the judges with local title being x factor and presenters being heikki paasonen jukka rossi (xtra factor) ### Answer: SELECT judges FROM table_13779832_1 WHERE local_title = "X Factor" AND prese...
what's the local title with seasons and winners being series 1, 2006: lucy benjamin
CREATE TABLE table_13779832_1 (local_title VARCHAR, seasons_and_winners VARCHAR)
SELECT local_title FROM table_13779832_1 WHERE seasons_and_winners = "Series 1, 2006: Lucy Benjamin"
### Context: CREATE TABLE table_13779832_1 (local_title VARCHAR, seasons_and_winners VARCHAR) ### Question: what's the local title with seasons and winners being series 1, 2006: lucy benjamin ### Answer: SELECT local_title FROM table_13779832_1 WHERE seasons_and_winners = "Series 1, 2006: Lucy Benjamin"
what's the country/region with presenters being heikki paasonen jukka rossi (xtra factor)
CREATE TABLE table_13779832_1 (country_region VARCHAR, presenters VARCHAR)
SELECT country_region FROM table_13779832_1 WHERE presenters = "Heikki Paasonen Jukka Rossi (Xtra Factor)"
### Context: CREATE TABLE table_13779832_1 (country_region VARCHAR, presenters VARCHAR) ### Question: what's the country/region with presenters being heikki paasonen jukka rossi (xtra factor) ### Answer: SELECT country_region FROM table_13779832_1 WHERE presenters = "Heikki Paasonen Jukka Rossi (Xtra Factor)"
how many chroma format with name being high profile
CREATE TABLE table_1376890_2 (chroma_format VARCHAR, name VARCHAR)
SELECT COUNT(chroma_format) FROM table_1376890_2 WHERE name = "High profile"
### Context: CREATE TABLE table_1376890_2 (chroma_format VARCHAR, name VARCHAR) ### Question: how many chroma format with name being high profile ### Answer: SELECT COUNT(chroma_format) FROM table_1376890_2 WHERE name = "High profile"
what's the chroma format with scalable modes being snr- or spatial-scalable and intra dc precbeingion being 8, 9, 10
CREATE TABLE table_1376890_2 (chroma_format VARCHAR, scalable_modes VARCHAR, intra_dc_precision VARCHAR)
SELECT chroma_format FROM table_1376890_2 WHERE scalable_modes = "SNR- or spatial-scalable" AND intra_dc_precision = "8, 9, 10"
### Context: CREATE TABLE table_1376890_2 (chroma_format VARCHAR, scalable_modes VARCHAR, intra_dc_precision VARCHAR) ### Question: what's the chroma format with scalable modes being snr- or spatial-scalable and intra dc precbeingion being 8, 9, 10 ### Answer: SELECT chroma_format FROM table_1376890_2 WHERE scalable_mo...
what's the chroma format with name being high profile
CREATE TABLE table_1376890_2 (chroma_format VARCHAR, name VARCHAR)
SELECT chroma_format FROM table_1376890_2 WHERE name = "High profile"
### Context: CREATE TABLE table_1376890_2 (chroma_format VARCHAR, name VARCHAR) ### Question: what's the chroma format with name being high profile ### Answer: SELECT chroma_format FROM table_1376890_2 WHERE name = "High profile"
what's the points with artbeingt being dave appell
CREATE TABLE table_13789248_2 (points VARCHAR, artist VARCHAR)
SELECT points FROM table_13789248_2 WHERE artist = "Dave Appell"
### Context: CREATE TABLE table_13789248_2 (points VARCHAR, artist VARCHAR) ### Question: what's the points with artbeingt being dave appell ### Answer: SELECT points FROM table_13789248_2 WHERE artist = "Dave Appell"
who is the the artbeingt with position being 32
CREATE TABLE table_13789248_2 (artist VARCHAR, position VARCHAR)
SELECT artist FROM table_13789248_2 WHERE position = 32
### Context: CREATE TABLE table_13789248_2 (artist VARCHAR, position VARCHAR) ### Question: who is the the artbeingt with position being 32 ### Answer: SELECT artist FROM table_13789248_2 WHERE position = 32
how many song title with artbeingt being chubby checker
CREATE TABLE table_13789248_2 (song_title VARCHAR, artist VARCHAR)
SELECT COUNT(song_title) FROM table_13789248_2 WHERE artist = "Chubby Checker"
### Context: CREATE TABLE table_13789248_2 (song_title VARCHAR, artist VARCHAR) ### Question: how many song title with artbeingt being chubby checker ### Answer: SELECT COUNT(song_title) FROM table_13789248_2 WHERE artist = "Chubby Checker"
what is the minimum points with highest position being 1
CREATE TABLE table_13789248_2 (points INTEGER, highest_position VARCHAR)
SELECT MIN(points) FROM table_13789248_2 WHERE highest_position = 1
### Context: CREATE TABLE table_13789248_2 (points INTEGER, highest_position VARCHAR) ### Question: what is the minimum points with highest position being 1 ### Answer: SELECT MIN(points) FROM table_13789248_2 WHERE highest_position = 1
What is the maximum number of trnsit passeners when the total number of international passengers is 4870184?
CREATE TABLE table_13836704_7 (transit_passengers INTEGER, international_passengers VARCHAR)
SELECT MAX(transit_passengers) FROM table_13836704_7 WHERE international_passengers = 4870184
### Context: CREATE TABLE table_13836704_7 (transit_passengers INTEGER, international_passengers VARCHAR) ### Question: What is the maximum number of trnsit passeners when the total number of international passengers is 4870184? ### Answer: SELECT MAX(transit_passengers) FROM table_13836704_7 WHERE international_passen...
What is Edinburgh's airport's freight in metric tonnes?
CREATE TABLE table_13836704_7 (freight___metric_tonnes__ INTEGER, airport VARCHAR)
SELECT MAX(freight___metric_tonnes__) FROM table_13836704_7 WHERE airport = "Edinburgh"
### Context: CREATE TABLE table_13836704_7 (freight___metric_tonnes__ INTEGER, airport VARCHAR) ### Question: What is Edinburgh's airport's freight in metric tonnes? ### Answer: SELECT MAX(freight___metric_tonnes__) FROM table_13836704_7 WHERE airport = "Edinburgh"
How many different total number of transit passengers are there in London Luton?
CREATE TABLE table_13836704_7 (transit_passengers VARCHAR, airport VARCHAR)
SELECT COUNT(transit_passengers) FROM table_13836704_7 WHERE airport = "London Luton"
### Context: CREATE TABLE table_13836704_7 (transit_passengers VARCHAR, airport VARCHAR) ### Question: How many different total number of transit passengers are there in London Luton? ### Answer: SELECT COUNT(transit_passengers) FROM table_13836704_7 WHERE airport = "London Luton"
What are the total freights in metric tonnes when the total transit passengers is 147791?
CREATE TABLE table_13836704_7 (freight___metric_tonnes__ VARCHAR, transit_passengers VARCHAR)
SELECT freight___metric_tonnes__ FROM table_13836704_7 WHERE transit_passengers = 147791
### Context: CREATE TABLE table_13836704_7 (freight___metric_tonnes__ VARCHAR, transit_passengers VARCHAR) ### Question: What are the total freights in metric tonnes when the total transit passengers is 147791? ### Answer: SELECT freight___metric_tonnes__ FROM table_13836704_7 WHERE transit_passengers = 147791
What is the total number of passengers of the airport ranked 15?
CREATE TABLE table_13836704_7 (international_passengers VARCHAR, rank VARCHAR)
SELECT international_passengers FROM table_13836704_7 WHERE rank = 15
### Context: CREATE TABLE table_13836704_7 (international_passengers VARCHAR, rank VARCHAR) ### Question: What is the total number of passengers of the airport ranked 15? ### Answer: SELECT international_passengers FROM table_13836704_7 WHERE rank = 15
Whatis the original title for lion's den?
CREATE TABLE table_13834298_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT original_title FROM table_13834298_1 WHERE film_title_used_in_nomination = "Lion's Den"
### Context: CREATE TABLE table_13834298_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR) ### Question: Whatis the original title for lion's den? ### Answer: SELECT original_title FROM table_13834298_1 WHERE film_title_used_in_nomination = "Lion's Den"
What is the percent change from 08/09 for belfast international?
CREATE TABLE table_13836704_6 (_percentage_change_2008_2009 VARCHAR, airport VARCHAR)
SELECT _percentage_change_2008_2009 FROM table_13836704_6 WHERE airport = "Belfast International"
### Context: CREATE TABLE table_13836704_6 (_percentage_change_2008_2009 VARCHAR, airport VARCHAR) ### Question: What is the percent change from 08/09 for belfast international? ### Answer: SELECT _percentage_change_2008_2009 FROM table_13836704_6 WHERE airport = "Belfast International"
How many transit passengers at london gatwick?
CREATE TABLE table_13836704_6 (transit_passengers VARCHAR, airport VARCHAR)
SELECT transit_passengers FROM table_13836704_6 WHERE airport = "London Gatwick"
### Context: CREATE TABLE table_13836704_6 (transit_passengers VARCHAR, airport VARCHAR) ### Question: How many transit passengers at london gatwick? ### Answer: SELECT transit_passengers FROM table_13836704_6 WHERE airport = "London Gatwick"
What is the rank of the airport with freight ( metric tonnes ) of 255121?
CREATE TABLE table_13836704_6 (rank VARCHAR, freight___metric_tonnes__ VARCHAR)
SELECT rank FROM table_13836704_6 WHERE freight___metric_tonnes__ = 255121
### Context: CREATE TABLE table_13836704_6 (rank VARCHAR, freight___metric_tonnes__ VARCHAR) ### Question: What is the rank of the airport with freight ( metric tonnes ) of 255121? ### Answer: SELECT rank FROM table_13836704_6 WHERE freight___metric_tonnes__ = 255121
What is the rank of the airport with a freight ( metric tonnes ) of 23791?
CREATE TABLE table_13836704_6 (rank VARCHAR, freight___metric_tonnes__ VARCHAR)
SELECT rank FROM table_13836704_6 WHERE freight___metric_tonnes__ = 23791
### Context: CREATE TABLE table_13836704_6 (rank VARCHAR, freight___metric_tonnes__ VARCHAR) ### Question: What is the rank of the airport with a freight ( metric tonnes ) of 23791? ### Answer: SELECT rank FROM table_13836704_6 WHERE freight___metric_tonnes__ = 23791
what's the airport with total passengers 2009 being 157933
CREATE TABLE table_13836704_4 (airport VARCHAR, total_passengers_2009 VARCHAR)
SELECT airport FROM table_13836704_4 WHERE total_passengers_2009 = 157933
### Context: CREATE TABLE table_13836704_4 (airport VARCHAR, total_passengers_2009 VARCHAR) ### Question: what's the airport with total passengers 2009 being 157933 ### Answer: SELECT airport FROM table_13836704_4 WHERE total_passengers_2009 = 157933
what being the maximum total passengers 2008 with change 2008/09 being 6.5%
CREATE TABLE table_13836704_4 (total_passengers_2008 INTEGER, change_2008_09 VARCHAR)
SELECT MAX(total_passengers_2008) FROM table_13836704_4 WHERE change_2008_09 = "6.5%"
### Context: CREATE TABLE table_13836704_4 (total_passengers_2008 INTEGER, change_2008_09 VARCHAR) ### Question: what being the maximum total passengers 2008 with change 2008/09 being 6.5% ### Answer: SELECT MAX(total_passengers_2008) FROM table_13836704_4 WHERE change_2008_09 = "6.5%"
what's the airport with aircraft movements 2009 being smaller than 238223.1659471435 and change 2008/09 being 0.5%
CREATE TABLE table_13836704_4 (airport VARCHAR, aircraft_movements_2009 VARCHAR, change_2008_09 VARCHAR)
SELECT airport FROM table_13836704_4 WHERE aircraft_movements_2009 < 238223.1659471435 AND change_2008_09 = "0.5%"
### Context: CREATE TABLE table_13836704_4 (airport VARCHAR, aircraft_movements_2009 VARCHAR, change_2008_09 VARCHAR) ### Question: what's the airport with aircraft movements 2009 being smaller than 238223.1659471435 and change 2008/09 being 0.5% ### Answer: SELECT airport FROM table_13836704_4 WHERE aircraft_movements...
what is the maximum aircraft movements 2009 with change 2008/09 being 18.2%
CREATE TABLE table_13836704_4 (aircraft_movements_2009 INTEGER, change_2008_09 VARCHAR)
SELECT MAX(aircraft_movements_2009) FROM table_13836704_4 WHERE change_2008_09 = "18.2%"
### Context: CREATE TABLE table_13836704_4 (aircraft_movements_2009 INTEGER, change_2008_09 VARCHAR) ### Question: what is the maximum aircraft movements 2009 with change 2008/09 being 18.2% ### Answer: SELECT MAX(aircraft_movements_2009) FROM table_13836704_4 WHERE change_2008_09 = "18.2%"
what's the total passengers 2008 with change 2008/09 being 6.5%
CREATE TABLE table_13836704_4 (total_passengers_2008 VARCHAR, change_2008_09 VARCHAR)
SELECT total_passengers_2008 FROM table_13836704_4 WHERE change_2008_09 = "6.5%"
### Context: CREATE TABLE table_13836704_4 (total_passengers_2008 VARCHAR, change_2008_09 VARCHAR) ### Question: what's the total passengers 2008 with change 2008/09 being 6.5% ### Answer: SELECT total_passengers_2008 FROM table_13836704_4 WHERE change_2008_09 = "6.5%"
Name the rank of birmingham airport
CREATE TABLE table_13836704_8 (rank INTEGER, airport VARCHAR)
SELECT MAX(rank) FROM table_13836704_8 WHERE airport = "Birmingham airport"
### Context: CREATE TABLE table_13836704_8 (rank INTEGER, airport VARCHAR) ### Question: Name the rank of birmingham airport ### Answer: SELECT MAX(rank) FROM table_13836704_8 WHERE airport = "Birmingham airport"
Name the transit passengers for 171078
CREATE TABLE table_13836704_8 (transit_passengers INTEGER, freight__metric_tonnes_ VARCHAR)
SELECT MAX(transit_passengers) FROM table_13836704_8 WHERE freight__metric_tonnes_ = 171078
### Context: CREATE TABLE table_13836704_8 (transit_passengers INTEGER, freight__metric_tonnes_ VARCHAR) ### Question: Name the transit passengers for 171078 ### Answer: SELECT MAX(transit_passengers) FROM table_13836704_8 WHERE freight__metric_tonnes_ = 171078
Beata syta is the minimum year for womens singles.
CREATE TABLE table_13857501_1 (year INTEGER, womens_singles VARCHAR)
SELECT MIN(year) FROM table_13857501_1 WHERE womens_singles = "Beata Syta"
### Context: CREATE TABLE table_13857501_1 (year INTEGER, womens_singles VARCHAR) ### Question: Beata syta is the minimum year for womens singles. ### Answer: SELECT MIN(year) FROM table_13857501_1 WHERE womens_singles = "Beata Syta"
what is the maximum aircraft movements with international passengers being 21002260
CREATE TABLE table_13836704_9 (aircraft_movements INTEGER, international_passengers VARCHAR)
SELECT MAX(aircraft_movements) FROM table_13836704_9 WHERE international_passengers = 21002260
### Context: CREATE TABLE table_13836704_9 (aircraft_movements INTEGER, international_passengers VARCHAR) ### Question: what is the maximum aircraft movements with international passengers being 21002260 ### Answer: SELECT MAX(aircraft_movements) FROM table_13836704_9 WHERE international_passengers = 21002260
what is the maximum freight (metric tonnes) with airport being liverpool
CREATE TABLE table_13836704_9 (freight__metric_tonnes_ INTEGER, airport VARCHAR)
SELECT MAX(freight__metric_tonnes_) FROM table_13836704_9 WHERE airport = "Liverpool"
### Context: CREATE TABLE table_13836704_9 (freight__metric_tonnes_ INTEGER, airport VARCHAR) ### Question: what is the maximum freight (metric tonnes) with airport being liverpool ### Answer: SELECT MAX(freight__metric_tonnes_) FROM table_13836704_9 WHERE airport = "Liverpool"
what's the airport with % change 2005/2006 being 13.0%
CREATE TABLE table_13836704_9 (airport VARCHAR, _percentage_change_2005_2006 VARCHAR)
SELECT airport FROM table_13836704_9 WHERE _percentage_change_2005_2006 = "13.0%"
### Context: CREATE TABLE table_13836704_9 (airport VARCHAR, _percentage_change_2005_2006 VARCHAR) ### Question: what's the airport with % change 2005/2006 being 13.0% ### Answer: SELECT airport FROM table_13836704_9 WHERE _percentage_change_2005_2006 = "13.0%"
what is the maximum aircraft movements with airport being liverpool
CREATE TABLE table_13836704_9 (aircraft_movements INTEGER, airport VARCHAR)
SELECT MAX(aircraft_movements) FROM table_13836704_9 WHERE airport = "Liverpool"
### Context: CREATE TABLE table_13836704_9 (aircraft_movements INTEGER, airport VARCHAR) ### Question: what is the maximum aircraft movements with airport being liverpool ### Answer: SELECT MAX(aircraft_movements) FROM table_13836704_9 WHERE airport = "Liverpool"
what's the total passengers with freight (metric tonnes) being 827
CREATE TABLE table_13836704_9 (total_passengers VARCHAR, freight__metric_tonnes_ VARCHAR)
SELECT total_passengers FROM table_13836704_9 WHERE freight__metric_tonnes_ = 827
### Context: CREATE TABLE table_13836704_9 (total_passengers VARCHAR, freight__metric_tonnes_ VARCHAR) ### Question: what's the total passengers with freight (metric tonnes) being 827 ### Answer: SELECT total_passengers FROM table_13836704_9 WHERE freight__metric_tonnes_ = 827
how many airport with rank being 4
CREATE TABLE table_13836704_9 (airport VARCHAR, rank VARCHAR)
SELECT COUNT(airport) FROM table_13836704_9 WHERE rank = 4
### Context: CREATE TABLE table_13836704_9 (airport VARCHAR, rank VARCHAR) ### Question: how many airport with rank being 4 ### Answer: SELECT COUNT(airport) FROM table_13836704_9 WHERE rank = 4
how many mens singles with mens doubles being pontus jantti lasse lindelöf
CREATE TABLE table_13857700_1 (mens_singles VARCHAR, mens_doubles VARCHAR)
SELECT COUNT(mens_singles) FROM table_13857700_1 WHERE mens_doubles = "Pontus Jantti Lasse Lindelöf"
### Context: CREATE TABLE table_13857700_1 (mens_singles VARCHAR, mens_doubles VARCHAR) ### Question: how many mens singles with mens doubles being pontus jantti lasse lindelöf ### Answer: SELECT COUNT(mens_singles) FROM table_13857700_1 WHERE mens_doubles = "Pontus Jantti Lasse Lindelöf"
who is the the mens doubles with mixed doubles being jimm aalto nina sarnesto
CREATE TABLE table_13857700_1 (mens_doubles VARCHAR, mixed_doubles VARCHAR)
SELECT mens_doubles FROM table_13857700_1 WHERE mixed_doubles = "Jimm Aalto Nina Sarnesto"
### Context: CREATE TABLE table_13857700_1 (mens_doubles VARCHAR, mixed_doubles VARCHAR) ### Question: who is the the mens doubles with mixed doubles being jimm aalto nina sarnesto ### Answer: SELECT mens_doubles FROM table_13857700_1 WHERE mixed_doubles = "Jimm Aalto Nina Sarnesto"
who is the the mixed doubles with year being 1972
CREATE TABLE table_13857700_1 (mixed_doubles VARCHAR, year VARCHAR)
SELECT mixed_doubles FROM table_13857700_1 WHERE year = 1972
### Context: CREATE TABLE table_13857700_1 (mixed_doubles VARCHAR, year VARCHAR) ### Question: who is the the mixed doubles with year being 1972 ### Answer: SELECT mixed_doubles FROM table_13857700_1 WHERE year = 1972
who is the the mens doubles with year being 1978
CREATE TABLE table_13857700_1 (mens_doubles VARCHAR, year VARCHAR)
SELECT mens_doubles FROM table_13857700_1 WHERE year = 1978
### Context: CREATE TABLE table_13857700_1 (mens_doubles VARCHAR, year VARCHAR) ### Question: who is the the mens doubles with year being 1978 ### Answer: SELECT mens_doubles FROM table_13857700_1 WHERE year = 1978
who is the the mens singles with mens doubles being kaj lindfors kaj osterberg
CREATE TABLE table_13857700_1 (mens_singles VARCHAR, mens_doubles VARCHAR)
SELECT mens_singles FROM table_13857700_1 WHERE mens_doubles = "Kaj Lindfors Kaj Osterberg"
### Context: CREATE TABLE table_13857700_1 (mens_singles VARCHAR, mens_doubles VARCHAR) ### Question: who is the the mens singles with mens doubles being kaj lindfors kaj osterberg ### Answer: SELECT mens_singles FROM table_13857700_1 WHERE mens_doubles = "Kaj Lindfors Kaj Osterberg"
How big (in sq mi) is the island that's 4065 km2?
CREATE TABLE table_13897690_1 (area__sqmi_ VARCHAR, area__km_2__ VARCHAR)
SELECT area__sqmi_ FROM table_13897690_1 WHERE area__km_2__ = 4065
### Context: CREATE TABLE table_13897690_1 (area__sqmi_ VARCHAR, area__km_2__ VARCHAR) ### Question: How big (in sq mi) is the island that's 4065 km2? ### Answer: SELECT area__sqmi_ FROM table_13897690_1 WHERE area__km_2__ = 4065
What is the smallest rank number of those used to rank the islands?
CREATE TABLE table_13897690_1 (rank INTEGER)
SELECT MIN(rank) FROM table_13897690_1
### Context: CREATE TABLE table_13897690_1 (rank INTEGER) ### Question: What is the smallest rank number of those used to rank the islands? ### Answer: SELECT MIN(rank) FROM table_13897690_1
What's the name is the island with a population of just 64?
CREATE TABLE table_13897690_1 (islands_name VARCHAR, population__2000_ VARCHAR)
SELECT islands_name FROM table_13897690_1 WHERE population__2000_ = "64"
### Context: CREATE TABLE table_13897690_1 (islands_name VARCHAR, population__2000_ VARCHAR) ### Question: What's the name is the island with a population of just 64? ### Answer: SELECT islands_name FROM table_13897690_1 WHERE population__2000_ = "64"
what's the tries against with try bonus being 10
CREATE TABLE table_13940275_5 (tries_against VARCHAR, try_bonus VARCHAR)
SELECT tries_against FROM table_13940275_5 WHERE try_bonus = "10"
### Context: CREATE TABLE table_13940275_5 (tries_against VARCHAR, try_bonus VARCHAR) ### Question: what's the tries against with try bonus being 10 ### Answer: SELECT tries_against FROM table_13940275_5 WHERE try_bonus = "10"
what's the points with played being 22 and points against being 319
CREATE TABLE table_13940275_5 (points VARCHAR, played VARCHAR, points_against VARCHAR)
SELECT points FROM table_13940275_5 WHERE played = "22" AND points_against = "319"
### Context: CREATE TABLE table_13940275_5 (points VARCHAR, played VARCHAR, points_against VARCHAR) ### Question: what's the points with played being 22 and points against being 319 ### Answer: SELECT points FROM table_13940275_5 WHERE played = "22" AND points_against = "319"
what's the losing bonus with played being 22 and tries against being 38
CREATE TABLE table_13940275_5 (losing_bonus VARCHAR, played VARCHAR, tries_against VARCHAR)
SELECT losing_bonus FROM table_13940275_5 WHERE played = "22" AND tries_against = "38"
### Context: CREATE TABLE table_13940275_5 (losing_bonus VARCHAR, played VARCHAR, tries_against VARCHAR) ### Question: what's the losing bonus with played being 22 and tries against being 38 ### Answer: SELECT losing_bonus FROM table_13940275_5 WHERE played = "22" AND tries_against = "38"
what's the try bonus with club being abercwmboi rfc
CREATE TABLE table_13940275_5 (try_bonus VARCHAR, club VARCHAR)
SELECT try_bonus FROM table_13940275_5 WHERE club = "Abercwmboi RFC"
### Context: CREATE TABLE table_13940275_5 (try_bonus VARCHAR, club VARCHAR) ### Question: what's the try bonus with club being abercwmboi rfc ### Answer: SELECT try_bonus FROM table_13940275_5 WHERE club = "Abercwmboi RFC"
what's the points for with points against being 556
CREATE TABLE table_13940275_5 (points_for VARCHAR, points_against VARCHAR)
SELECT points_for FROM table_13940275_5 WHERE points_against = "556"
### Context: CREATE TABLE table_13940275_5 (points_for VARCHAR, points_against VARCHAR) ### Question: what's the points for with points against being 556 ### Answer: SELECT points_for FROM table_13940275_5 WHERE points_against = "556"
what's the won with points against being 304
CREATE TABLE table_13940275_5 (won VARCHAR, points_against VARCHAR)
SELECT won FROM table_13940275_5 WHERE points_against = "304"
### Context: CREATE TABLE table_13940275_5 (won VARCHAR, points_against VARCHAR) ### Question: what's the won with points against being 304 ### Answer: SELECT won FROM table_13940275_5 WHERE points_against = "304"
Where was held the ceremony for the 12th Pride of Britain Awards?
CREATE TABLE table_13943239_1 (location VARCHAR, episode VARCHAR)
SELECT location FROM table_13943239_1 WHERE episode = "12th Pride of Britain Awards"
### Context: CREATE TABLE table_13943239_1 (location VARCHAR, episode VARCHAR) ### Question: Where was held the ceremony for the 12th Pride of Britain Awards? ### Answer: SELECT location FROM table_13943239_1 WHERE episode = "12th Pride of Britain Awards"
What episode of the Pride of Britain Awards had an audience of 6.06 million viewers?
CREATE TABLE table_13943239_1 (episode VARCHAR, viewers__millions_ VARCHAR)
SELECT episode FROM table_13943239_1 WHERE viewers__millions_ = "6.06"
### Context: CREATE TABLE table_13943239_1 (episode VARCHAR, viewers__millions_ VARCHAR) ### Question: What episode of the Pride of Britain Awards had an audience of 6.06 million viewers? ### Answer: SELECT episode FROM table_13943239_1 WHERE viewers__millions_ = "6.06"
How much audience did the 7th Pride of Britain Awards ceremony have?
CREATE TABLE table_13943239_1 (viewers__millions_ VARCHAR, episode VARCHAR)
SELECT COUNT(viewers__millions_) FROM table_13943239_1 WHERE episode = "7th Pride of Britain Awards"
### Context: CREATE TABLE table_13943239_1 (viewers__millions_ VARCHAR, episode VARCHAR) ### Question: How much audience did the 7th Pride of Britain Awards ceremony have? ### Answer: SELECT COUNT(viewers__millions_) FROM table_13943239_1 WHERE episode = "7th Pride of Britain Awards"
what's the vineyard surface (2010) with grand cru being bienvenues-bâtard-montrachet
CREATE TABLE table_13981938_1 (vineyard_surface__2010_ VARCHAR, grand_cru VARCHAR)
SELECT vineyard_surface__2010_ FROM table_13981938_1 WHERE grand_cru = "Bienvenues-Bâtard-Montrachet"
### Context: CREATE TABLE table_13981938_1 (vineyard_surface__2010_ VARCHAR, grand_cru VARCHAR) ### Question: what's the vineyard surface (2010) with grand cru being bienvenues-bâtard-montrachet ### Answer: SELECT vineyard_surface__2010_ FROM table_13981938_1 WHERE grand_cru = "Bienvenues-Bâtard-Montrachet"
what's the village with wine style being red wine and vineyard surface (2010) being hectares (acres)
CREATE TABLE table_13981938_1 (village VARCHAR, wine_style VARCHAR, vineyard_surface__2010_ VARCHAR)
SELECT village FROM table_13981938_1 WHERE wine_style = "Red wine" AND vineyard_surface__2010_ = "hectares (acres)"
### Context: CREATE TABLE table_13981938_1 (village VARCHAR, wine_style VARCHAR, vineyard_surface__2010_ VARCHAR) ### Question: what's the village with wine style being red wine and vineyard surface (2010) being hectares (acres) ### Answer: SELECT village FROM table_13981938_1 WHERE wine_style = "Red wine" AND vineyard...
what's the wine style with grand cru being romanée-conti
CREATE TABLE table_13981938_1 (wine_style VARCHAR, grand_cru VARCHAR)
SELECT wine_style FROM table_13981938_1 WHERE grand_cru = "Romanée-Conti"
### Context: CREATE TABLE table_13981938_1 (wine_style VARCHAR, grand_cru VARCHAR) ### Question: what's the wine style with grand cru being romanée-conti ### Answer: SELECT wine_style FROM table_13981938_1 WHERE grand_cru = "Romanée-Conti"
what's the wine style with village being puligny-montrachet [d ]
CREATE TABLE table_13981938_1 (wine_style VARCHAR, village VARCHAR)
SELECT wine_style FROM table_13981938_1 WHERE village = "Puligny-Montrachet [d ]"
### Context: CREATE TABLE table_13981938_1 (wine_style VARCHAR, village VARCHAR) ### Question: what's the wine style with village being puligny-montrachet [d ] ### Answer: SELECT wine_style FROM table_13981938_1 WHERE village = "Puligny-Montrachet [d ]"
How many classes between senior and junior year for world history
CREATE TABLE table_13967239_2 (senior__4th_year_ VARCHAR, junior__3rd_year_ VARCHAR)
SELECT COUNT(senior__4th_year_) FROM table_13967239_2 WHERE junior__3rd_year_ = "World History"
### Context: CREATE TABLE table_13967239_2 (senior__4th_year_ VARCHAR, junior__3rd_year_ VARCHAR) ### Question: How many classes between senior and junior year for world history ### Answer: SELECT COUNT(senior__4th_year_) FROM table_13967239_2 WHERE junior__3rd_year_ = "World History"
What is after intermediate algebra
CREATE TABLE table_13967239_2 (senior__4th_year_ VARCHAR, sophomore__grade_8_ VARCHAR)
SELECT senior__4th_year_ FROM table_13967239_2 WHERE sophomore__grade_8_ = "Intermediate Algebra"
### Context: CREATE TABLE table_13967239_2 (senior__4th_year_ VARCHAR, sophomore__grade_8_ VARCHAR) ### Question: What is after intermediate algebra ### Answer: SELECT senior__4th_year_ FROM table_13967239_2 WHERE sophomore__grade_8_ = "Intermediate Algebra"
what is the maximum # with original airdate being march 14, 2001
CREATE TABLE table_13956521_2 (_number INTEGER, original_airdate VARCHAR)
SELECT MAX(_number) FROM table_13956521_2 WHERE original_airdate = "March 14, 2001"
### Context: CREATE TABLE table_13956521_2 (_number INTEGER, original_airdate VARCHAR) ### Question: what is the maximum # with original airdate being march 14, 2001 ### Answer: SELECT MAX(_number) FROM table_13956521_2 WHERE original_airdate = "March 14, 2001"
how many original airdate with writer(s) being becky hartman edwards and director being adam nimoy
CREATE TABLE table_13956521_2 (original_airdate VARCHAR, writer_s_ VARCHAR, director VARCHAR)
SELECT COUNT(original_airdate) FROM table_13956521_2 WHERE writer_s_ = "Becky Hartman Edwards" AND director = "Adam Nimoy"
### Context: CREATE TABLE table_13956521_2 (original_airdate VARCHAR, writer_s_ VARCHAR, director VARCHAR) ### Question: how many original airdate with writer(s) being becky hartman edwards and director being adam nimoy ### Answer: SELECT COUNT(original_airdate) FROM table_13956521_2 WHERE writer_s_ = "Becky Hartman E...
who is the the writer(s) with original airdate being february 7, 2001
CREATE TABLE table_13956521_2 (writer_s_ VARCHAR, original_airdate VARCHAR)
SELECT writer_s_ FROM table_13956521_2 WHERE original_airdate = "February 7, 2001"
### Context: CREATE TABLE table_13956521_2 (writer_s_ VARCHAR, original_airdate VARCHAR) ### Question: who is the the writer(s) with original airdate being february 7, 2001 ### Answer: SELECT writer_s_ FROM table_13956521_2 WHERE original_airdate = "February 7, 2001"
what's the frequency mhz with city of license being chattanooga, tennessee
CREATE TABLE table_13998897_1 (frequency_mhz VARCHAR, city_of_license VARCHAR)
SELECT frequency_mhz FROM table_13998897_1 WHERE city_of_license = "Chattanooga, Tennessee"
### Context: CREATE TABLE table_13998897_1 (frequency_mhz VARCHAR, city_of_license VARCHAR) ### Question: what's the frequency mhz with city of license being chattanooga, tennessee ### Answer: SELECT frequency_mhz FROM table_13998897_1 WHERE city_of_license = "Chattanooga, Tennessee"
how many height m ( ft ) with frequency mhz being 100.1
CREATE TABLE table_13998897_1 (height_m___ft__ VARCHAR, frequency_mhz VARCHAR)
SELECT COUNT(height_m___ft__) FROM table_13998897_1 WHERE frequency_mhz = "100.1"
### Context: CREATE TABLE table_13998897_1 (height_m___ft__ VARCHAR, frequency_mhz VARCHAR) ### Question: how many height m ( ft ) with frequency mhz being 100.1 ### Answer: SELECT COUNT(height_m___ft__) FROM table_13998897_1 WHERE frequency_mhz = "100.1"
what's the fcc info with call sign being w221aw
CREATE TABLE table_13998897_1 (fcc_info VARCHAR, call_sign VARCHAR)
SELECT fcc_info FROM table_13998897_1 WHERE call_sign = "W221AW"
### Context: CREATE TABLE table_13998897_1 (fcc_info VARCHAR, call_sign VARCHAR) ### Question: what's the fcc info with call sign being w221aw ### Answer: SELECT fcc_info FROM table_13998897_1 WHERE call_sign = "W221AW"
how many height m ( ft ) with notes being via wccv; formerly w236aj
CREATE TABLE table_13998897_1 (height_m___ft__ VARCHAR, notes VARCHAR)
SELECT COUNT(height_m___ft__) FROM table_13998897_1 WHERE notes = "via WCCV; formerly W236AJ"
### Context: CREATE TABLE table_13998897_1 (height_m___ft__ VARCHAR, notes VARCHAR) ### Question: how many height m ( ft ) with notes being via wccv; formerly w236aj ### Answer: SELECT COUNT(height_m___ft__) FROM table_13998897_1 WHERE notes = "via WCCV; formerly W236AJ"
what's the fcc info with call sign being w265av
CREATE TABLE table_13998897_1 (fcc_info VARCHAR, call_sign VARCHAR)
SELECT fcc_info FROM table_13998897_1 WHERE call_sign = "W265AV"
### Context: CREATE TABLE table_13998897_1 (fcc_info VARCHAR, call_sign VARCHAR) ### Question: what's the fcc info with call sign being w265av ### Answer: SELECT fcc_info FROM table_13998897_1 WHERE call_sign = "W265AV"
what's the capacity with team being berwick rangers
CREATE TABLE table_14003108_1 (capacity VARCHAR, team VARCHAR)
SELECT capacity FROM table_14003108_1 WHERE team = "Berwick Rangers"
### Context: CREATE TABLE table_14003108_1 (capacity VARCHAR, team VARCHAR) ### Question: what's the capacity with team being berwick rangers ### Answer: SELECT capacity FROM table_14003108_1 WHERE team = "Berwick Rangers"
what's the team with stadium being borough briggs
CREATE TABLE table_14003108_1 (team VARCHAR, stadium VARCHAR)
SELECT team FROM table_14003108_1 WHERE stadium = "Borough Briggs"
### Context: CREATE TABLE table_14003108_1 (team VARCHAR, stadium VARCHAR) ### Question: what's the team with stadium being borough briggs ### Answer: SELECT team FROM table_14003108_1 WHERE stadium = "Borough Briggs"
what is the maximum lowest with average being 734
CREATE TABLE table_14003108_1 (lowest INTEGER, average VARCHAR)
SELECT MAX(lowest) FROM table_14003108_1 WHERE average = 734
### Context: CREATE TABLE table_14003108_1 (lowest INTEGER, average VARCHAR) ### Question: what is the maximum lowest with average being 734 ### Answer: SELECT MAX(lowest) FROM table_14003108_1 WHERE average = 734
how many highest with team being forfar athletic
CREATE TABLE table_14003108_1 (highest VARCHAR, team VARCHAR)
SELECT COUNT(highest) FROM table_14003108_1 WHERE team = "Forfar Athletic"
### Context: CREATE TABLE table_14003108_1 (highest VARCHAR, team VARCHAR) ### Question: how many highest with team being forfar athletic ### Answer: SELECT COUNT(highest) FROM table_14003108_1 WHERE team = "Forfar Athletic"
what's the bleeding time with condition being factor v deficiency
CREATE TABLE table_14006_1 (bleeding_time VARCHAR, condition VARCHAR)
SELECT bleeding_time FROM table_14006_1 WHERE condition = "Factor V deficiency"
### Context: CREATE TABLE table_14006_1 (bleeding_time VARCHAR, condition VARCHAR) ### Question: what's the bleeding time with condition being factor v deficiency ### Answer: SELECT bleeding_time FROM table_14006_1 WHERE condition = "Factor V deficiency"
what's the bleeding time with condition being liver failure, end-stage
CREATE TABLE table_14006_1 (bleeding_time VARCHAR, condition VARCHAR)
SELECT bleeding_time FROM table_14006_1 WHERE condition = "Liver failure, end-stage"
### Context: CREATE TABLE table_14006_1 (bleeding_time VARCHAR, condition VARCHAR) ### Question: what's the bleeding time with condition being liver failure, end-stage ### Answer: SELECT bleeding_time FROM table_14006_1 WHERE condition = "Liver failure, end-stage"
what's the bleeding time with platelet count being decreased or unaffected
CREATE TABLE table_14006_1 (bleeding_time VARCHAR, platelet_count VARCHAR)
SELECT bleeding_time FROM table_14006_1 WHERE platelet_count = "Decreased or unaffected"
### Context: CREATE TABLE table_14006_1 (bleeding_time VARCHAR, platelet_count VARCHAR) ### Question: what's the bleeding time with platelet count being decreased or unaffected ### Answer: SELECT bleeding_time FROM table_14006_1 WHERE platelet_count = "Decreased or unaffected"
what's the condition with bleeding time being unaffected and prothrombin time being prolonged
CREATE TABLE table_14006_1 (condition VARCHAR, bleeding_time VARCHAR, prothrombin_time VARCHAR)
SELECT condition FROM table_14006_1 WHERE bleeding_time = "Unaffected" AND prothrombin_time = "Prolonged"
### Context: CREATE TABLE table_14006_1 (condition VARCHAR, bleeding_time VARCHAR, prothrombin_time VARCHAR) ### Question: what's the condition with bleeding time being unaffected and prothrombin time being prolonged ### Answer: SELECT condition FROM table_14006_1 WHERE bleeding_time = "Unaffected" AND prothrombin_time...
what's the bleeding time with platelet count being decreased and prothrombin time being prolonged
CREATE TABLE table_14006_1 (bleeding_time VARCHAR, platelet_count VARCHAR, prothrombin_time VARCHAR)
SELECT bleeding_time FROM table_14006_1 WHERE platelet_count = "Decreased" AND prothrombin_time = "Prolonged"
### Context: CREATE TABLE table_14006_1 (bleeding_time VARCHAR, platelet_count VARCHAR, prothrombin_time VARCHAR) ### Question: what's the bleeding time with platelet count being decreased and prothrombin time being prolonged ### Answer: SELECT bleeding_time FROM table_14006_1 WHERE platelet_count = "Decreased" AND pro...