question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the lowest value in the miss international column?
CREATE TABLE table_29942205_1 (miss_international INTEGER)
SELECT MIN(miss_international) FROM table_29942205_1
### Context: CREATE TABLE table_29942205_1 (miss_international INTEGER) ### Question: What is the lowest value in the miss international column? ### Answer: SELECT MIN(miss_international) FROM table_29942205_1
What is the smallest quantity displayed under the title "first runner-up"?
CREATE TABLE table_29942205_1 (Id VARCHAR)
SELECT MIN(1 AS st_runner_up) FROM table_29942205_1
### Context: CREATE TABLE table_29942205_1 (Id VARCHAR) ### Question: What is the smallest quantity displayed under the title "first runner-up"? ### Answer: SELECT MIN(1 AS st_runner_up) FROM table_29942205_1
How many women from Uruguay has become third runner-up in this pageant?
CREATE TABLE table_29942205_1 (country_territory VARCHAR)
SELECT MAX(3 AS rd_runner_up) FROM table_29942205_1 WHERE country_territory = "Uruguay"
### Context: CREATE TABLE table_29942205_1 (country_territory VARCHAR) ### Question: How many women from Uruguay has become third runner-up in this pageant? ### Answer: SELECT MAX(3 AS rd_runner_up) FROM table_29942205_1 WHERE country_territory = "Uruguay"
What year was player number 10?
CREATE TABLE table_29970488_2 (year VARCHAR, _number VARCHAR)
SELECT year FROM table_29970488_2 WHERE _number = 10
### Context: CREATE TABLE table_29970488_2 (year VARCHAR, _number VARCHAR) ### Question: What year was player number 10? ### Answer: SELECT year FROM table_29970488_2 WHERE _number = 10
How many hometowns are there when Charis Prep was the previous school?
CREATE TABLE table_29970488_2 (hometown VARCHAR, previous_school VARCHAR)
SELECT COUNT(hometown) FROM table_29970488_2 WHERE previous_school = "Charis Prep"
### Context: CREATE TABLE table_29970488_2 (hometown VARCHAR, previous_school VARCHAR) ### Question: How many hometowns are there when Charis Prep was the previous school? ### Answer: SELECT COUNT(hometown) FROM table_29970488_2 WHERE previous_school = "Charis Prep"
How many different items appear in the weight column when Pittsburgh, PA is the hometown?
CREATE TABLE table_29970488_2 (weight___lb__ VARCHAR, hometown VARCHAR)
SELECT COUNT(weight___lb__) FROM table_29970488_2 WHERE hometown = "Pittsburgh, PA"
### Context: CREATE TABLE table_29970488_2 (weight___lb__ VARCHAR, hometown VARCHAR) ### Question: How many different items appear in the weight column when Pittsburgh, PA is the hometown? ### Answer: SELECT COUNT(weight___lb__) FROM table_29970488_2 WHERE hometown = "Pittsburgh, PA"
Which episode is number 3 in the season?
CREATE TABLE table_29960651_5 (episode VARCHAR, no_for_season VARCHAR)
SELECT episode FROM table_29960651_5 WHERE no_for_season = 3
### Context: CREATE TABLE table_29960651_5 (episode VARCHAR, no_for_season VARCHAR) ### Question: Which episode is number 3 in the season? ### Answer: SELECT episode FROM table_29960651_5 WHERE no_for_season = 3
What is the episode name for series number 45?
CREATE TABLE table_29960651_5 (episode VARCHAR, no_for_series VARCHAR)
SELECT episode FROM table_29960651_5 WHERE no_for_series = 45
### Context: CREATE TABLE table_29960651_5 (episode VARCHAR, no_for_series VARCHAR) ### Question: What is the episode name for series number 45? ### Answer: SELECT episode FROM table_29960651_5 WHERE no_for_series = 45
What is the highest total for any country/territory?
CREATE TABLE table_30008638_1 (total INTEGER)
SELECT MAX(total) FROM table_30008638_1
### Context: CREATE TABLE table_30008638_1 (total INTEGER) ### Question: What is the highest total for any country/territory? ### Answer: SELECT MAX(total) FROM table_30008638_1
How many semifinalists has Romania had?
CREATE TABLE table_30008638_1 (semifinalists VARCHAR, country_territory VARCHAR)
SELECT semifinalists FROM table_30008638_1 WHERE country_territory = "Romania"
### Context: CREATE TABLE table_30008638_1 (semifinalists VARCHAR, country_territory VARCHAR) ### Question: How many semifinalists has Romania had? ### Answer: SELECT semifinalists FROM table_30008638_1 WHERE country_territory = "Romania"
How many Miss Waters has Canada had?
CREATE TABLE table_30008638_1 (miss_water INTEGER, country_territory VARCHAR)
SELECT MAX(miss_water) FROM table_30008638_1 WHERE country_territory = "Canada"
### Context: CREATE TABLE table_30008638_1 (miss_water INTEGER, country_territory VARCHAR) ### Question: How many Miss Waters has Canada had? ### Answer: SELECT MAX(miss_water) FROM table_30008638_1 WHERE country_territory = "Canada"
What is the most Miss Fires any country has had?
CREATE TABLE table_30008638_1 (miss_fire INTEGER)
SELECT MAX(miss_fire) FROM table_30008638_1
### Context: CREATE TABLE table_30008638_1 (miss_fire INTEGER) ### Question: What is the most Miss Fires any country has had? ### Answer: SELECT MAX(miss_fire) FROM table_30008638_1
What is the least amount of Miss Airs any country has had?
CREATE TABLE table_30008638_1 (miss_air INTEGER)
SELECT MIN(miss_air) FROM table_30008638_1
### Context: CREATE TABLE table_30008638_1 (miss_air INTEGER) ### Question: What is the least amount of Miss Airs any country has had? ### Answer: SELECT MIN(miss_air) FROM table_30008638_1
what re the high assists for january 29?
CREATE TABLE table_29982187_4 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_29982187_4 WHERE date = "January 29"
### Context: CREATE TABLE table_29982187_4 (high_assists VARCHAR, date VARCHAR) ### Question: what re the high assists for january 29? ### Answer: SELECT high_assists FROM table_29982187_4 WHERE date = "January 29"
What team did the suns play on April 21?
CREATE TABLE table_29997127_4 (team VARCHAR, date VARCHAR)
SELECT team FROM table_29997127_4 WHERE date = "April 21"
### Context: CREATE TABLE table_29997127_4 (team VARCHAR, date VARCHAR) ### Question: What team did the suns play on April 21? ### Answer: SELECT team FROM table_29997127_4 WHERE date = "April 21"
In what game was the attendance at the America West Arena 18,756?
CREATE TABLE table_29997127_4 (game INTEGER, location_attendance VARCHAR)
SELECT MAX(game) FROM table_29997127_4 WHERE location_attendance = "America West Arena 18,756"
### Context: CREATE TABLE table_29997127_4 (game INTEGER, location_attendance VARCHAR) ### Question: In what game was the attendance at the America West Arena 18,756? ### Answer: SELECT MAX(game) FROM table_29997127_4 WHERE location_attendance = "America West Arena 18,756"
What is the official name of the municipality whose name in Basque is Bilar?
CREATE TABLE table_300283_1 (official_name VARCHAR, name_in_basque VARCHAR)
SELECT official_name FROM table_300283_1 WHERE name_in_basque = "Bilar"
### Context: CREATE TABLE table_300283_1 (official_name VARCHAR, name_in_basque VARCHAR) ### Question: What is the official name of the municipality whose name in Basque is Bilar? ### Answer: SELECT official_name FROM table_300283_1 WHERE name_in_basque = "Bilar"
What is the official name of the municipality whose name in Spanish is Cripán?
CREATE TABLE table_300283_1 (official_name VARCHAR, name_in_spanish VARCHAR)
SELECT official_name FROM table_300283_1 WHERE name_in_spanish = "Cripán"
### Context: CREATE TABLE table_300283_1 (official_name VARCHAR, name_in_spanish VARCHAR) ### Question: What is the official name of the municipality whose name in Spanish is Cripán? ### Answer: SELECT official_name FROM table_300283_1 WHERE name_in_spanish = "Cripán"
What is the official name of the municipality whose name in Spanish is Vitoria?
CREATE TABLE table_300283_1 (official_name VARCHAR, name_in_spanish VARCHAR)
SELECT official_name FROM table_300283_1 WHERE name_in_spanish = "Vitoria"
### Context: CREATE TABLE table_300283_1 (official_name VARCHAR, name_in_spanish VARCHAR) ### Question: What is the official name of the municipality whose name in Spanish is Vitoria? ### Answer: SELECT official_name FROM table_300283_1 WHERE name_in_spanish = "Vitoria"
What is the name in Basque of the municipality whose official name is Kuartango?
CREATE TABLE table_300283_1 (name_in_basque VARCHAR, official_name VARCHAR)
SELECT name_in_basque FROM table_300283_1 WHERE official_name = "Kuartango"
### Context: CREATE TABLE table_300283_1 (name_in_basque VARCHAR, official_name VARCHAR) ### Question: What is the name in Basque of the municipality whose official name is Kuartango? ### Answer: SELECT name_in_basque FROM table_300283_1 WHERE official_name = "Kuartango"
What is the INE code of the municipality whose official name is Berantevilla?
CREATE TABLE table_300283_1 (ine_code INTEGER, official_name VARCHAR)
SELECT MAX(ine_code) FROM table_300283_1 WHERE official_name = "Berantevilla"
### Context: CREATE TABLE table_300283_1 (ine_code INTEGER, official_name VARCHAR) ### Question: What is the INE code of the municipality whose official name is Berantevilla? ### Answer: SELECT MAX(ine_code) FROM table_300283_1 WHERE official_name = "Berantevilla"
What is every reference for type and usage of Germanium small-signal RF transistor?
CREATE TABLE table_30011_2 (reference VARCHAR, type_and_usage VARCHAR)
SELECT reference FROM table_30011_2 WHERE type_and_usage = "Germanium small-signal RF transistor"
### Context: CREATE TABLE table_30011_2 (reference VARCHAR, type_and_usage VARCHAR) ### Question: What is every reference for type and usage of Germanium small-signal RF transistor? ### Answer: SELECT reference FROM table_30011_2 WHERE type_and_usage = "Germanium small-signal RF transistor"
What is every equivalent for the example of asy28?
CREATE TABLE table_30011_2 (equivalent VARCHAR, example VARCHAR)
SELECT equivalent FROM table_30011_2 WHERE example = "ASY28"
### Context: CREATE TABLE table_30011_2 (equivalent VARCHAR, example VARCHAR) ### Question: What is every equivalent for the example of asy28? ### Answer: SELECT equivalent FROM table_30011_2 WHERE example = "ASY28"
What is every reference for the example of AF117?
CREATE TABLE table_30011_2 (reference VARCHAR, example VARCHAR)
SELECT reference FROM table_30011_2 WHERE example = "AF117"
### Context: CREATE TABLE table_30011_2 (reference VARCHAR, example VARCHAR) ### Question: What is every reference for the example of AF117? ### Answer: SELECT reference FROM table_30011_2 WHERE example = "AF117"
What is every prefix class for the equivalent of NTE160?
CREATE TABLE table_30011_2 (prefix_class VARCHAR, equivalent VARCHAR)
SELECT prefix_class FROM table_30011_2 WHERE equivalent = "NTE160"
### Context: CREATE TABLE table_30011_2 (prefix_class VARCHAR, equivalent VARCHAR) ### Question: What is every prefix class for the equivalent of NTE160? ### Answer: SELECT prefix_class FROM table_30011_2 WHERE equivalent = "NTE160"
What is every prefix class for the equivalent of NTE101?
CREATE TABLE table_30011_2 (prefix_class VARCHAR, equivalent VARCHAR)
SELECT prefix_class FROM table_30011_2 WHERE equivalent = "NTE101"
### Context: CREATE TABLE table_30011_2 (prefix_class VARCHAR, equivalent VARCHAR) ### Question: What is every prefix class for the equivalent of NTE101? ### Answer: SELECT prefix_class FROM table_30011_2 WHERE equivalent = "NTE101"
What is every example for the equivalent of NTE160?
CREATE TABLE table_30011_2 (example VARCHAR, equivalent VARCHAR)
SELECT example FROM table_30011_2 WHERE equivalent = "NTE160"
### Context: CREATE TABLE table_30011_2 (example VARCHAR, equivalent VARCHAR) ### Question: What is every example for the equivalent of NTE160? ### Answer: SELECT example FROM table_30011_2 WHERE equivalent = "NTE160"
How many manhunt beauty contets have been held in france?
CREATE TABLE table_30018460_1 (manhunt_international VARCHAR, country_territory VARCHAR)
SELECT manhunt_international FROM table_30018460_1 WHERE country_territory = "France"
### Context: CREATE TABLE table_30018460_1 (manhunt_international VARCHAR, country_territory VARCHAR) ### Question: How many manhunt beauty contets have been held in france? ### Answer: SELECT manhunt_international FROM table_30018460_1 WHERE country_territory = "France"
How many semifinalists where from peru?
CREATE TABLE table_30018460_1 (semifinalists VARCHAR, country_territory VARCHAR)
SELECT semifinalists FROM table_30018460_1 WHERE country_territory = "Peru"
### Context: CREATE TABLE table_30018460_1 (semifinalists VARCHAR, country_territory VARCHAR) ### Question: How many semifinalists where from peru? ### Answer: SELECT semifinalists FROM table_30018460_1 WHERE country_territory = "Peru"
How many first place participants where from croatia?
CREATE TABLE table_30018460_1 (country_territory VARCHAR)
SELECT 3 AS rd_runner_up FROM table_30018460_1 WHERE country_territory = "Croatia"
### Context: CREATE TABLE table_30018460_1 (country_territory VARCHAR) ### Question: How many first place participants where from croatia? ### Answer: SELECT 3 AS rd_runner_up FROM table_30018460_1 WHERE country_territory = "Croatia"
What is the minimum sum?
CREATE TABLE table_30018460_1 (total INTEGER)
SELECT MIN(total) FROM table_30018460_1
### Context: CREATE TABLE table_30018460_1 (total INTEGER) ### Question: What is the minimum sum? ### Answer: SELECT MIN(total) FROM table_30018460_1
What is the minimum manhunt beauty contest?
CREATE TABLE table_30018460_1 (manhunt_international INTEGER)
SELECT MIN(manhunt_international) FROM table_30018460_1
### Context: CREATE TABLE table_30018460_1 (manhunt_international INTEGER) ### Question: What is the minimum manhunt beauty contest? ### Answer: SELECT MIN(manhunt_international) FROM table_30018460_1
How many people wrote the episode directed by Arvin Brown?
CREATE TABLE table_30030227_1 (written_by VARCHAR, directed_by VARCHAR)
SELECT COUNT(written_by) FROM table_30030227_1 WHERE directed_by = "Arvin Brown"
### Context: CREATE TABLE table_30030227_1 (written_by VARCHAR, directed_by VARCHAR) ### Question: How many people wrote the episode directed by Arvin Brown? ### Answer: SELECT COUNT(written_by) FROM table_30030227_1 WHERE directed_by = "Arvin Brown"
When included ram (mib) is the model what is the sonnet?
CREATE TABLE table_3002894_4 (sonnet VARCHAR, model VARCHAR)
SELECT sonnet FROM table_3002894_4 WHERE model = "Included RAM (MiB)"
### Context: CREATE TABLE table_3002894_4 (sonnet VARCHAR, model VARCHAR) ### Question: When included ram (mib) is the model what is the sonnet? ### Answer: SELECT sonnet FROM table_3002894_4 WHERE model = "Included RAM (MiB)"
When 4 mb is the sonnet what is the apple?
CREATE TABLE table_3002894_4 (apple VARCHAR, sonnet VARCHAR)
SELECT apple FROM table_3002894_4 WHERE sonnet = "4 MB"
### Context: CREATE TABLE table_3002894_4 (apple VARCHAR, sonnet VARCHAR) ### Question: When 4 mb is the sonnet what is the apple? ### Answer: SELECT apple FROM table_3002894_4 WHERE sonnet = "4 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 sonnet FROM table_3002894_4 WHERE nupowr_117 = "0,4, or 8 MB"
### Context: CREATE TABLE table_3002894_4 (sonnet VARCHAR, nupowr_117 VARCHAR) ### Question: When 0,4, or 8 mb is the nupowr 117 what is the sonnet? ### Answer: SELECT sonnet FROM table_3002894_4 WHERE nupowr_117 = "0,4, or 8 MB"
When maker is the model what is the nupowr 167?
CREATE TABLE table_3002894_4 (nupowr_167 VARCHAR, model VARCHAR)
SELECT nupowr_167 FROM table_3002894_4 WHERE model = "Maker"
### Context: CREATE TABLE table_3002894_4 (nupowr_167 VARCHAR, model VARCHAR) ### Question: When maker is the model what is the nupowr 167? ### Answer: SELECT nupowr_167 FROM table_3002894_4 WHERE model = "Maker"
When 0,4, or 8 mb is the nupowr 117 what is the nupowr 183?
CREATE TABLE table_3002894_4 (nupowr_183 VARCHAR, nupowr_117 VARCHAR)
SELECT nupowr_183 FROM table_3002894_4 WHERE nupowr_117 = "0,4, or 8 MB"
### Context: CREATE TABLE table_3002894_4 (nupowr_183 VARCHAR, nupowr_117 VARCHAR) ### Question: When 0,4, or 8 mb is the nupowr 117 what is the nupowr 183? ### Answer: SELECT nupowr_183 FROM table_3002894_4 WHERE nupowr_117 = "0,4, or 8 MB"
What is the name of the episode written by glen mazzara?
CREATE TABLE table_30030477_1 (title VARCHAR, written_by VARCHAR)
SELECT title FROM table_30030477_1 WHERE written_by = "Glen Mazzara"
### Context: CREATE TABLE table_30030477_1 (title VARCHAR, written_by VARCHAR) ### Question: What is the name of the episode written by glen mazzara? ### Answer: SELECT title FROM table_30030477_1 WHERE written_by = "Glen Mazzara"
How many titles are there with the original air date of august3,2010?
CREATE TABLE table_30030477_1 (title VARCHAR, original_air_date VARCHAR)
SELECT COUNT(title) FROM table_30030477_1 WHERE original_air_date = "August3,2010"
### Context: CREATE TABLE table_30030477_1 (title VARCHAR, original_air_date VARCHAR) ### Question: How many titles are there with the original air date of august3,2010? ### Answer: SELECT COUNT(title) FROM table_30030477_1 WHERE original_air_date = "August3,2010"
Who directed the episdoe veiwed by 3.24 million viewers?
CREATE TABLE table_30030477_1 (directed_by VARCHAR, viewers__million_ VARCHAR)
SELECT directed_by FROM table_30030477_1 WHERE viewers__million_ = "3.24"
### Context: CREATE TABLE table_30030477_1 (directed_by VARCHAR, viewers__million_ VARCHAR) ### Question: Who directed the episdoe veiwed by 3.24 million viewers? ### Answer: SELECT directed_by FROM table_30030477_1 WHERE viewers__million_ = "3.24"
What dated the episode written by is adam e. fierro & glen mazzara air?
CREATE TABLE table_30030477_1 (original_air_date VARCHAR, written_by VARCHAR)
SELECT original_air_date FROM table_30030477_1 WHERE written_by = "Adam E. Fierro & Glen Mazzara"
### Context: CREATE TABLE table_30030477_1 (original_air_date VARCHAR, written_by VARCHAR) ### Question: What dated the episode written by is adam e. fierro & glen mazzara air? ### Answer: SELECT original_air_date FROM table_30030477_1 WHERE written_by = "Adam E. Fierro & Glen Mazzara"
in which date the strea was w 2
CREATE TABLE table_30047613_12 (date VARCHAR, streak VARCHAR)
SELECT date FROM table_30047613_12 WHERE streak = "W 2"
### Context: CREATE TABLE table_30047613_12 (date VARCHAR, streak VARCHAR) ### Question: in which date the strea was w 2 ### Answer: SELECT date FROM table_30047613_12 WHERE streak = "W 2"
in april 13 what was the streak
CREATE TABLE table_30047613_12 (streak VARCHAR, date VARCHAR)
SELECT streak FROM table_30047613_12 WHERE date = "April 13"
### Context: CREATE TABLE table_30047613_12 (streak VARCHAR, date VARCHAR) ### Question: in april 13 what was the streak ### Answer: SELECT streak FROM table_30047613_12 WHERE date = "April 13"
in april 13 who made the high rebounds
CREATE TABLE table_30047613_12 (high_rebounds VARCHAR, date VARCHAR)
SELECT high_rebounds FROM table_30047613_12 WHERE date = "April 13"
### Context: CREATE TABLE table_30047613_12 (high_rebounds VARCHAR, date VARCHAR) ### Question: in april 13 who made the high rebounds ### Answer: SELECT high_rebounds FROM table_30047613_12 WHERE date = "April 13"
Name the game for l 111–126
CREATE TABLE table_30049462_8 (game VARCHAR, score VARCHAR)
SELECT game FROM table_30049462_8 WHERE score = "L 111–126"
### Context: CREATE TABLE table_30049462_8 (game VARCHAR, score VARCHAR) ### Question: Name the game for l 111–126 ### Answer: SELECT game FROM table_30049462_8 WHERE score = "L 111–126"
Name the score for march 8
CREATE TABLE table_30049462_8 (score VARCHAR, date VARCHAR)
SELECT score FROM table_30049462_8 WHERE date = "March 8"
### Context: CREATE TABLE table_30049462_8 (score VARCHAR, date VARCHAR) ### Question: Name the score for march 8 ### Answer: SELECT score FROM table_30049462_8 WHERE date = "March 8"
in the detroit team who made the high points
CREATE TABLE table_30049462_5 (high_points VARCHAR, team VARCHAR)
SELECT high_points FROM table_30049462_5 WHERE team = "Detroit"
### Context: CREATE TABLE table_30049462_5 (high_points VARCHAR, team VARCHAR) ### Question: in the detroit team who made the high points ### Answer: SELECT high_points FROM table_30049462_5 WHERE team = "Detroit"
what is the score in the philadelphia team
CREATE TABLE table_30049462_5 (score VARCHAR, team VARCHAR)
SELECT COUNT(score) FROM table_30049462_5 WHERE team = "Philadelphia"
### Context: CREATE TABLE table_30049462_5 (score VARCHAR, team VARCHAR) ### Question: what is the score in the philadelphia team ### Answer: SELECT COUNT(score) FROM table_30049462_5 WHERE team = "Philadelphia"
in december 7 who made the high points
CREATE TABLE table_30049462_5 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_30049462_5 WHERE date = "December 7"
### Context: CREATE TABLE table_30049462_5 (high_points VARCHAR, date VARCHAR) ### Question: in december 7 who made the high points ### Answer: SELECT high_points FROM table_30049462_5 WHERE date = "December 7"
in how many dates the game was 2
CREATE TABLE table_30049462_3 (date VARCHAR, game VARCHAR)
SELECT COUNT(date) FROM table_30049462_3 WHERE game = 2
### Context: CREATE TABLE table_30049462_3 (date VARCHAR, game VARCHAR) ### Question: in how many dates the game was 2 ### Answer: SELECT COUNT(date) FROM table_30049462_3 WHERE game = 2
in the milwaukee team who made the high points
CREATE TABLE table_30049462_3 (high_points VARCHAR, team VARCHAR)
SELECT high_points FROM table_30049462_3 WHERE team = "Milwaukee"
### Context: CREATE TABLE table_30049462_3 (high_points VARCHAR, team VARCHAR) ### Question: in the milwaukee team who made the high points ### Answer: SELECT high_points FROM table_30049462_3 WHERE team = "Milwaukee"
What was the location and it's corresponding attendance during the game against Los Angeles?
CREATE TABLE table_30049462_4 (location_attendance VARCHAR, team VARCHAR)
SELECT location_attendance FROM table_30049462_4 WHERE team = "Los Angeles"
### Context: CREATE TABLE table_30049462_4 (location_attendance VARCHAR, team VARCHAR) ### Question: What was the location and it's corresponding attendance during the game against Los Angeles? ### Answer: SELECT location_attendance FROM table_30049462_4 WHERE team = "Los Angeles"
what is the km from wellington where the metlink code is mast?
CREATE TABLE table_3005450_1 (km_from_wellington VARCHAR, metlink_code VARCHAR)
SELECT km_from_wellington FROM table_3005450_1 WHERE metlink_code = "MAST"
### Context: CREATE TABLE table_3005450_1 (km_from_wellington VARCHAR, metlink_code VARCHAR) ### Question: what is the km from wellington where the metlink code is mast? ### Answer: SELECT km_from_wellington FROM table_3005450_1 WHERE metlink_code = "MAST"
what is the name of the station where the metlink code is mata?
CREATE TABLE table_3005450_1 (station VARCHAR, metlink_code VARCHAR)
SELECT station FROM table_3005450_1 WHERE metlink_code = "MATA"
### Context: CREATE TABLE table_3005450_1 (station VARCHAR, metlink_code VARCHAR) ### Question: what is the name of the station where the metlink code is mata? ### Answer: SELECT station FROM table_3005450_1 WHERE metlink_code = "MATA"
what is the metlink code that opened in 1908?
CREATE TABLE table_3005450_1 (metlink_code VARCHAR, opened VARCHAR)
SELECT metlink_code FROM table_3005450_1 WHERE opened = "1908"
### Context: CREATE TABLE table_3005450_1 (metlink_code VARCHAR, opened VARCHAR) ### Question: what is the metlink code that opened in 1908? ### Answer: SELECT metlink_code FROM table_3005450_1 WHERE opened = "1908"
How many teams did inge – 6 have the high assists with?
CREATE TABLE table_30054758_3 (team VARCHAR, high_assists VARCHAR)
SELECT COUNT(team) FROM table_30054758_3 WHERE high_assists = "Inge – 6"
### Context: CREATE TABLE table_30054758_3 (team VARCHAR, high_assists VARCHAR) ### Question: How many teams did inge – 6 have the high assists with? ### Answer: SELECT COUNT(team) FROM table_30054758_3 WHERE high_assists = "Inge – 6"
What is the record for december 3?
CREATE TABLE table_30054758_3 (record VARCHAR, date VARCHAR)
SELECT record FROM table_30054758_3 WHERE date = "December 3"
### Context: CREATE TABLE table_30054758_3 (record VARCHAR, date VARCHAR) ### Question: What is the record for december 3? ### Answer: SELECT record FROM table_30054758_3 WHERE date = "December 3"
How many entries are there for high rebounds when high points is inge – 19?
CREATE TABLE table_30054758_3 (high_rebounds VARCHAR, high_points VARCHAR)
SELECT COUNT(high_rebounds) FROM table_30054758_3 WHERE high_points = "Inge – 19"
### Context: CREATE TABLE table_30054758_3 (high_rebounds VARCHAR, high_points VARCHAR) ### Question: How many entries are there for high rebounds when high points is inge – 19? ### Answer: SELECT COUNT(high_rebounds) FROM table_30054758_3 WHERE high_points = "Inge – 19"
How many games are shown when the is location attendance is phog allen fieldhouse , lawrence, ks (16,300)?
CREATE TABLE table_30054758_3 (game VARCHAR, location_attendance VARCHAR)
SELECT COUNT(game) FROM table_30054758_3 WHERE location_attendance = "Phog Allen Fieldhouse , Lawrence, KS (16,300)"
### Context: CREATE TABLE table_30054758_3 (game VARCHAR, location_attendance VARCHAR) ### Question: How many games are shown when the is location attendance is phog allen fieldhouse , lawrence, ks (16,300)? ### Answer: SELECT COUNT(game) FROM table_30054758_3 WHERE location_attendance = "Phog Allen Fieldhouse , Lawrence, KS (16,300)"
how many high assits have a date of february 5?
CREATE TABLE table_30054758_5 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_30054758_5 WHERE date = "February 5"
### Context: CREATE TABLE table_30054758_5 (high_assists VARCHAR, date VARCHAR) ### Question: how many high assits have a date of february 5? ### Answer: SELECT high_assists FROM table_30054758_5 WHERE date = "February 5"
What is shown for fri 26 aug when mon 22 aug is —— no time?
CREATE TABLE table_30058355_2 (fri_26_aug VARCHAR, mon_22_aug VARCHAR)
SELECT fri_26_aug FROM table_30058355_2 WHERE mon_22_aug = "—— No Time"
### Context: CREATE TABLE table_30058355_2 (fri_26_aug VARCHAR, mon_22_aug VARCHAR) ### Question: What is shown for fri 26 aug when mon 22 aug is —— no time? ### Answer: SELECT fri_26_aug FROM table_30058355_2 WHERE mon_22_aug = "—— No Time"
What shows for sat 20 aug when fri 26 aug is 19' 30.70 116.023mph?
CREATE TABLE table_30058355_2 (sat_20_aug VARCHAR, fri_26_aug VARCHAR)
SELECT sat_20_aug FROM table_30058355_2 WHERE fri_26_aug = "19' 30.70 116.023mph"
### Context: CREATE TABLE table_30058355_2 (sat_20_aug VARCHAR, fri_26_aug VARCHAR) ### Question: What shows for sat 20 aug when fri 26 aug is 19' 30.70 116.023mph? ### Answer: SELECT sat_20_aug FROM table_30058355_2 WHERE fri_26_aug = "19' 30.70 116.023mph"
What shows for mon 22 aug whenwed 24 aug is 19' 56.16 113.553mph?
CREATE TABLE table_30058355_2 (mon_22_aug VARCHAR, wed_24_aug VARCHAR)
SELECT mon_22_aug FROM table_30058355_2 WHERE wed_24_aug = "19' 56.16 113.553mph"
### Context: CREATE TABLE table_30058355_2 (mon_22_aug VARCHAR, wed_24_aug VARCHAR) ### Question: What shows for mon 22 aug whenwed 24 aug is 19' 56.16 113.553mph? ### Answer: SELECT mon_22_aug FROM table_30058355_2 WHERE wed_24_aug = "19' 56.16 113.553mph"
What is the thurs 25 aug when wed 24 aug is 19' 59.73 113.216mph?
CREATE TABLE table_30058355_2 (thurs_25_aug VARCHAR, wed_24_aug VARCHAR)
SELECT thurs_25_aug FROM table_30058355_2 WHERE wed_24_aug = "19' 59.73 113.216mph"
### Context: CREATE TABLE table_30058355_2 (thurs_25_aug VARCHAR, wed_24_aug VARCHAR) ### Question: What is the thurs 25 aug when wed 24 aug is 19' 59.73 113.216mph? ### Answer: SELECT thurs_25_aug FROM table_30058355_2 WHERE wed_24_aug = "19' 59.73 113.216mph"
What shows for thurs 25 aug when fri 26 aug is 19' 30.70 116.023mph?
CREATE TABLE table_30058355_2 (thurs_25_aug VARCHAR, fri_26_aug VARCHAR)
SELECT thurs_25_aug FROM table_30058355_2 WHERE fri_26_aug = "19' 30.70 116.023mph"
### Context: CREATE TABLE table_30058355_2 (thurs_25_aug VARCHAR, fri_26_aug VARCHAR) ### Question: What shows for thurs 25 aug when fri 26 aug is 19' 30.70 116.023mph? ### Answer: SELECT thurs_25_aug FROM table_30058355_2 WHERE fri_26_aug = "19' 30.70 116.023mph"
What's the best rank possible?
CREATE TABLE table_30058355_5 (rank INTEGER)
SELECT MIN(rank) FROM table_30058355_5
### Context: CREATE TABLE table_30058355_5 (rank INTEGER) ### Question: What's the best rank possible? ### Answer: SELECT MIN(rank) FROM table_30058355_5
List all GT4 Cup winners played on the Spa-Francorchamps Report.
CREATE TABLE table_30060356_3 (gt4_cup_winner VARCHAR, circuit VARCHAR)
SELECT gt4_cup_winner FROM table_30060356_3 WHERE circuit = "Spa-Francorchamps Report"
### Context: CREATE TABLE table_30060356_3 (gt4_cup_winner VARCHAR, circuit VARCHAR) ### Question: List all GT4 Cup winners played on the Spa-Francorchamps Report. ### Answer: SELECT gt4_cup_winner FROM table_30060356_3 WHERE circuit = "Spa-Francorchamps Report"
Who are the gt3 pro / am cup winners when the gt3 pro cup winner was no. 1 vita4one?
CREATE TABLE table_30060356_3 (gt3_pro___am_cup_winner VARCHAR, gt3_pro_cup_winner VARCHAR)
SELECT gt3_pro___am_cup_winner FROM table_30060356_3 WHERE gt3_pro_cup_winner = "No. 1 Vita4One"
### Context: CREATE TABLE table_30060356_3 (gt3_pro___am_cup_winner VARCHAR, gt3_pro_cup_winner VARCHAR) ### Question: Who are the gt3 pro / am cup winners when the gt3 pro cup winner was no. 1 vita4one? ### Answer: SELECT gt3_pro___am_cup_winner FROM table_30060356_3 WHERE gt3_pro_cup_winner = "No. 1 Vita4One"
What is the highest numbered event?
CREATE TABLE table_30060356_3 (event INTEGER)
SELECT MAX(event) FROM table_30060356_3
### Context: CREATE TABLE table_30060356_3 (event INTEGER) ### Question: What is the highest numbered event? ### Answer: SELECT MAX(event) FROM table_30060356_3
What is every entry for Tuesday August 23 if the entry for Wednesday August 24 is 22' 23.29 101.116mph?
CREATE TABLE table_30058355_7 (tues_23_aug VARCHAR, wed_24_aug VARCHAR)
SELECT tues_23_aug FROM table_30058355_7 WHERE wed_24_aug = "22' 23.29 101.116mph"
### Context: CREATE TABLE table_30058355_7 (tues_23_aug VARCHAR, wed_24_aug VARCHAR) ### Question: What is every entry for Tuesday August 23 if the entry for Wednesday August 24 is 22' 23.29 101.116mph? ### Answer: SELECT tues_23_aug FROM table_30058355_7 WHERE wed_24_aug = "22' 23.29 101.116mph"
What is every entry for Saturday August 27 when the entry for Thursday August 25 is 23' 56.90 94.528mph?
CREATE TABLE table_30058355_7 (sat_27_aug VARCHAR, thurs_25_aug VARCHAR)
SELECT sat_27_aug FROM table_30058355_7 WHERE thurs_25_aug = "23' 56.90 94.528mph"
### Context: CREATE TABLE table_30058355_7 (sat_27_aug VARCHAR, thurs_25_aug VARCHAR) ### Question: What is every entry for Saturday August 27 when the entry for Thursday August 25 is 23' 56.90 94.528mph? ### Answer: SELECT sat_27_aug FROM table_30058355_7 WHERE thurs_25_aug = "23' 56.90 94.528mph"
What is every entry for Friday August 26 when the entry for Wednesday August 24 is 23' 52.67 94.807mph?
CREATE TABLE table_30058355_7 (fri_26_aug VARCHAR, wed_24_aug VARCHAR)
SELECT fri_26_aug FROM table_30058355_7 WHERE wed_24_aug = "23' 52.67 94.807mph"
### Context: CREATE TABLE table_30058355_7 (fri_26_aug VARCHAR, wed_24_aug VARCHAR) ### Question: What is every entry for Friday August 26 when the entry for Wednesday August 24 is 23' 52.67 94.807mph? ### Answer: SELECT fri_26_aug FROM table_30058355_7 WHERE wed_24_aug = "23' 52.67 94.807mph"
When david ashburn richard westbrook is the gt3 winner and 1 is the round what is the length?
CREATE TABLE table_30062172_3 (length VARCHAR, round VARCHAR, gt3_winner VARCHAR)
SELECT length FROM table_30062172_3 WHERE round = 1 AND gt3_winner = "David Ashburn Richard Westbrook"
### Context: CREATE TABLE table_30062172_3 (length VARCHAR, round VARCHAR, gt3_winner VARCHAR) ### Question: When david ashburn richard westbrook is the gt3 winner and 1 is the round what is the length? ### Answer: SELECT length FROM table_30062172_3 WHERE round = 1 AND gt3_winner = "David Ashburn Richard Westbrook"
When charles bateman michael lyons is the gt3 winner and donington park is the circuit who is the gt4 winner?
CREATE TABLE table_30062172_3 (gt4_winner VARCHAR, circuit VARCHAR, gt3_winner VARCHAR)
SELECT gt4_winner FROM table_30062172_3 WHERE circuit = "Donington Park" AND gt3_winner = "Charles Bateman Michael Lyons"
### Context: CREATE TABLE table_30062172_3 (gt4_winner VARCHAR, circuit VARCHAR, gt3_winner VARCHAR) ### Question: When charles bateman michael lyons is the gt3 winner and donington park is the circuit who is the gt4 winner? ### Answer: SELECT gt4_winner FROM table_30062172_3 WHERE circuit = "Donington Park" AND gt3_winner = "Charles Bateman Michael Lyons"
When charles bateman michael lyons is the gt3 winner and 9 is the round who is the gt4 winner?
CREATE TABLE table_30062172_3 (gt4_winner VARCHAR, round VARCHAR, gt3_winner VARCHAR)
SELECT gt4_winner FROM table_30062172_3 WHERE round = 9 AND gt3_winner = "Charles Bateman Michael Lyons"
### Context: CREATE TABLE table_30062172_3 (gt4_winner VARCHAR, round VARCHAR, gt3_winner VARCHAR) ### Question: When charles bateman michael lyons is the gt3 winner and 9 is the round who is the gt4 winner? ### Answer: SELECT gt4_winner FROM table_30062172_3 WHERE round = 9 AND gt3_winner = "Charles Bateman Michael Lyons"
When tim bridgman gregor fisken is the pole position who is the gt3 winner?
CREATE TABLE table_30062172_3 (gt3_winner VARCHAR, pole_position VARCHAR)
SELECT gt3_winner FROM table_30062172_3 WHERE pole_position = "Tim Bridgman Gregor Fisken"
### Context: CREATE TABLE table_30062172_3 (gt3_winner VARCHAR, pole_position VARCHAR) ### Question: When tim bridgman gregor fisken is the pole position who is the gt3 winner? ### Answer: SELECT gt3_winner FROM table_30062172_3 WHERE pole_position = "Tim Bridgman Gregor Fisken"
List the rider for the doncaster handicap compeition.
CREATE TABLE table_30098144_2 (jockey VARCHAR, race VARCHAR)
SELECT jockey FROM table_30098144_2 WHERE race = "Doncaster Handicap"
### Context: CREATE TABLE table_30098144_2 (jockey VARCHAR, race VARCHAR) ### Question: List the rider for the doncaster handicap compeition. ### Answer: SELECT jockey FROM table_30098144_2 WHERE race = "Doncaster Handicap"
Name the number of troops for troops per $1 billion being 2.45
CREATE TABLE table_30108346_1 (number_of_troops VARCHAR, troops_per_$1_billion___usd___gdp VARCHAR)
SELECT COUNT(number_of_troops) FROM table_30108346_1 WHERE troops_per_$1_billion___usd___gdp = "2.45"
### Context: CREATE TABLE table_30108346_1 (number_of_troops VARCHAR, troops_per_$1_billion___usd___gdp VARCHAR) ### Question: Name the number of troops for troops per $1 billion being 2.45 ### Answer: SELECT COUNT(number_of_troops) FROM table_30108346_1 WHERE troops_per_$1_billion___usd___gdp = "2.45"
Name the total number of troops per one million being 2.76
CREATE TABLE table_30108346_1 (troops_per_one_million_population VARCHAR, troops_per_$1_billion___usd___gdp VARCHAR)
SELECT COUNT(troops_per_one_million_population) FROM table_30108346_1 WHERE troops_per_$1_billion___usd___gdp = "2.76"
### Context: CREATE TABLE table_30108346_1 (troops_per_one_million_population VARCHAR, troops_per_$1_billion___usd___gdp VARCHAR) ### Question: Name the total number of troops per one million being 2.76 ### Answer: SELECT COUNT(troops_per_one_million_population) FROM table_30108346_1 WHERE troops_per_$1_billion___usd___gdp = "2.76"
Name the country for troops per one million being 54.9
CREATE TABLE table_30108346_1 (country VARCHAR, troops_per_one_million_population VARCHAR)
SELECT country FROM table_30108346_1 WHERE troops_per_one_million_population = "54.9"
### Context: CREATE TABLE table_30108346_1 (country VARCHAR, troops_per_one_million_population VARCHAR) ### Question: Name the country for troops per one million being 54.9 ### Answer: SELECT country FROM table_30108346_1 WHERE troops_per_one_million_population = "54.9"
Which player(s) played at Howard college?
CREATE TABLE table_30108930_6 (player VARCHAR, college VARCHAR)
SELECT player FROM table_30108930_6 WHERE college = "Howard"
### Context: CREATE TABLE table_30108930_6 (player VARCHAR, college VARCHAR) ### Question: Which player(s) played at Howard college? ### Answer: SELECT player FROM table_30108930_6 WHERE college = "Howard"
Which CFL team was pick #35?
CREATE TABLE table_30108930_6 (cfl_team VARCHAR, pick__number VARCHAR)
SELECT cfl_team FROM table_30108930_6 WHERE pick__number = 35
### Context: CREATE TABLE table_30108930_6 (cfl_team VARCHAR, pick__number VARCHAR) ### Question: Which CFL team was pick #35? ### Answer: SELECT cfl_team FROM table_30108930_6 WHERE pick__number = 35
Which CFL team got pick 34?
CREATE TABLE table_30108930_6 (cfl_team VARCHAR, pick__number VARCHAR)
SELECT cfl_team FROM table_30108930_6 WHERE pick__number = 34
### Context: CREATE TABLE table_30108930_6 (cfl_team VARCHAR, pick__number VARCHAR) ### Question: Which CFL team got pick 34? ### Answer: SELECT cfl_team FROM table_30108930_6 WHERE pick__number = 34
What is Tyrell Francisco's player position?
CREATE TABLE table_30108930_6 (position VARCHAR, player VARCHAR)
SELECT position FROM table_30108930_6 WHERE player = "Tyrell Francisco"
### Context: CREATE TABLE table_30108930_6 (position VARCHAR, player VARCHAR) ### Question: What is Tyrell Francisco's player position? ### Answer: SELECT position FROM table_30108930_6 WHERE player = "Tyrell Francisco"
What is the barony of the Gurraghy townland?
CREATE TABLE table_30120547_1 (barony VARCHAR, townland VARCHAR)
SELECT barony FROM table_30120547_1 WHERE townland = "Gurraghy"
### Context: CREATE TABLE table_30120547_1 (barony VARCHAR, townland VARCHAR) ### Question: What is the barony of the Gurraghy townland? ### Answer: SELECT barony FROM table_30120547_1 WHERE townland = "Gurraghy"
What is the civil parish of the cappanaboul townland?
CREATE TABLE table_30120547_1 (civil_parish VARCHAR, townland VARCHAR)
SELECT civil_parish FROM table_30120547_1 WHERE townland = "Cappanaboul"
### Context: CREATE TABLE table_30120547_1 (civil_parish VARCHAR, townland VARCHAR) ### Question: What is the civil parish of the cappanaboul townland? ### Answer: SELECT civil_parish FROM table_30120547_1 WHERE townland = "Cappanaboul"
What are the civil parishes of the townlands with an area of 119 acres?
CREATE TABLE table_30120547_1 (civil_parish VARCHAR, area__acres__ VARCHAR)
SELECT civil_parish FROM table_30120547_1 WHERE area__acres__ = 119
### Context: CREATE TABLE table_30120547_1 (civil_parish VARCHAR, area__acres__ VARCHAR) ### Question: What are the civil parishes of the townlands with an area of 119 acres? ### Answer: SELECT civil_parish FROM table_30120547_1 WHERE area__acres__ = 119
What civil paris appears when Ballynamona is the townland with 126 acres?
CREATE TABLE table_30120556_1 (civil_parish VARCHAR, townland VARCHAR, area__acres__ VARCHAR)
SELECT civil_parish FROM table_30120556_1 WHERE townland = "Ballynamona" AND area__acres__ = 126
### Context: CREATE TABLE table_30120556_1 (civil_parish VARCHAR, townland VARCHAR, area__acres__ VARCHAR) ### Question: What civil paris appears when Ballynamona is the townland with 126 acres? ### Answer: SELECT civil_parish FROM table_30120556_1 WHERE townland = "Ballynamona" AND area__acres__ = 126
What is the area of the civil parish kilworth and townland monadrishane?
CREATE TABLE table_30120556_1 (area__acres__ VARCHAR, civil_parish VARCHAR, townland VARCHAR)
SELECT area__acres__ FROM table_30120556_1 WHERE civil_parish = "Kilworth" AND townland = "Monadrishane"
### Context: CREATE TABLE table_30120556_1 (area__acres__ VARCHAR, civil_parish VARCHAR, townland VARCHAR) ### Question: What is the area of the civil parish kilworth and townland monadrishane? ### Answer: SELECT area__acres__ FROM table_30120556_1 WHERE civil_parish = "Kilworth" AND townland = "Monadrishane"
How many barony's appear when Ballyvadona is the townland.
CREATE TABLE table_30120556_1 (barony VARCHAR, townland VARCHAR)
SELECT COUNT(barony) FROM table_30120556_1 WHERE townland = "Ballyvadona"
### Context: CREATE TABLE table_30120556_1 (barony VARCHAR, townland VARCHAR) ### Question: How many barony's appear when Ballyvadona is the townland. ### Answer: SELECT COUNT(barony) FROM table_30120556_1 WHERE townland = "Ballyvadona"
How many items appear in the area column when Glasvaunta is the townland?
CREATE TABLE table_30120556_1 (area__acres__ VARCHAR, townland VARCHAR)
SELECT COUNT(area__acres__) FROM table_30120556_1 WHERE townland = "Glasvaunta"
### Context: CREATE TABLE table_30120556_1 (area__acres__ VARCHAR, townland VARCHAR) ### Question: How many items appear in the area column when Glasvaunta is the townland? ### Answer: SELECT COUNT(area__acres__) FROM table_30120556_1 WHERE townland = "Glasvaunta"
What is the fewest area in Derrynanool townland?
CREATE TABLE table_30120556_1 (area__acres__ INTEGER, townland VARCHAR)
SELECT MIN(area__acres__) FROM table_30120556_1 WHERE townland = "Derrynanool"
### Context: CREATE TABLE table_30120556_1 (area__acres__ INTEGER, townland VARCHAR) ### Question: What is the fewest area in Derrynanool townland? ### Answer: SELECT MIN(area__acres__) FROM table_30120556_1 WHERE townland = "Derrynanool"
What is Lisladeen poor law union?
CREATE TABLE table_30120566_1 (poor_law_union VARCHAR, townland VARCHAR)
SELECT poor_law_union FROM table_30120566_1 WHERE townland = "Lisladeen"
### Context: CREATE TABLE table_30120566_1 (poor_law_union VARCHAR, townland VARCHAR) ### Question: What is Lisladeen poor law union? ### Answer: SELECT poor_law_union FROM table_30120566_1 WHERE townland = "Lisladeen"
In what barony are both the townland Dawstown and the civil parish Matehy located?
CREATE TABLE table_30120566_1 (barony VARCHAR, townland VARCHAR, civil_parish VARCHAR)
SELECT barony FROM table_30120566_1 WHERE townland = "Dawstown" AND civil_parish = "Matehy"
### Context: CREATE TABLE table_30120566_1 (barony VARCHAR, townland VARCHAR, civil_parish VARCHAR) ### Question: In what barony are both the townland Dawstown and the civil parish Matehy located? ### Answer: SELECT barony FROM table_30120566_1 WHERE townland = "Dawstown" AND civil_parish = "Matehy"
What barony is Ballycunningham in?
CREATE TABLE table_30120566_1 (barony VARCHAR, townland VARCHAR)
SELECT barony FROM table_30120566_1 WHERE townland = "Ballycunningham"
### Context: CREATE TABLE table_30120566_1 (barony VARCHAR, townland VARCHAR) ### Question: What barony is Ballycunningham in? ### Answer: SELECT barony FROM table_30120566_1 WHERE townland = "Ballycunningham"
How many different sizes (in acres) are noted for Rathcoola East?
CREATE TABLE table_30120566_1 (area__acres__ VARCHAR, townland VARCHAR)
SELECT COUNT(area__acres__) FROM table_30120566_1 WHERE townland = "Rathcoola East"
### Context: CREATE TABLE table_30120566_1 (area__acres__ VARCHAR, townland VARCHAR) ### Question: How many different sizes (in acres) are noted for Rathcoola East? ### Answer: SELECT COUNT(area__acres__) FROM table_30120566_1 WHERE townland = "Rathcoola East"
how many areas have townland as kilgilky north?
CREATE TABLE table_30120560_1 (area__acres__ VARCHAR, townland VARCHAR)
SELECT COUNT(area__acres__) FROM table_30120560_1 WHERE townland = "Kilgilky North"
### Context: CREATE TABLE table_30120560_1 (area__acres__ VARCHAR, townland VARCHAR) ### Question: how many areas have townland as kilgilky north? ### Answer: SELECT COUNT(area__acres__) FROM table_30120560_1 WHERE townland = "Kilgilky North"
which cilvil parishes have areas of 405?
CREATE TABLE table_30120560_1 (civil_parish VARCHAR, area__acres__ VARCHAR)
SELECT civil_parish FROM table_30120560_1 WHERE area__acres__ = 405
### Context: CREATE TABLE table_30120560_1 (civil_parish VARCHAR, area__acres__ VARCHAR) ### Question: which cilvil parishes have areas of 405? ### Answer: SELECT civil_parish FROM table_30120560_1 WHERE area__acres__ = 405
what is the barony and an area of 560?
CREATE TABLE table_30120560_1 (barony VARCHAR, area__acres__ VARCHAR)
SELECT barony FROM table_30120560_1 WHERE area__acres__ = 560
### Context: CREATE TABLE table_30120560_1 (barony VARCHAR, area__acres__ VARCHAR) ### Question: what is the barony and an area of 560? ### Answer: SELECT barony FROM table_30120560_1 WHERE area__acres__ = 560