Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
41,100
<question>: What is the lowest value in the miss international column? <context>: CREATE TABLE table_29942205_1 (miss_international INTEGER)
SELECT MIN(miss_international) FROM table_29942205_1
41,101
<question>: What is the smallest quantity displayed under the title "first runner-up"? <context>: CREATE TABLE table_29942205_1 (Id VARCHAR)
SELECT MIN(1 AS st_runner_up) FROM table_29942205_1
41,102
<question>: How many women from Uruguay has become third runner-up in this pageant? <context>: CREATE TABLE table_29942205_1 (country_territory VARCHAR)
SELECT MAX(3 AS rd_runner_up) FROM table_29942205_1 WHERE country_territory = "Uruguay"
41,103
<question>: What year was player number 10? <context>: CREATE TABLE table_29970488_2 (year VARCHAR, _number VARCHAR)
SELECT year FROM table_29970488_2 WHERE _number = 10
41,104
<question>: How many hometowns are there when Charis Prep was the previous school? <context>: CREATE TABLE table_29970488_2 (hometown VARCHAR, previous_school VARCHAR)
SELECT COUNT(hometown) FROM table_29970488_2 WHERE previous_school = "Charis Prep"
41,105
<question>: How many different items appear in the weight column when Pittsburgh, PA is the hometown? <context>: CREATE TABLE table_29970488_2 (weight___lb__ VARCHAR, hometown VARCHAR)
SELECT COUNT(weight___lb__) FROM table_29970488_2 WHERE hometown = "Pittsburgh, PA"
41,106
<question>: Which episode is number 3 in the season? <context>: CREATE TABLE table_29960651_5 (episode VARCHAR, no_for_season VARCHAR)
SELECT episode FROM table_29960651_5 WHERE no_for_season = 3
41,107
<question>: What is the episode name for series number 45? <context>: CREATE TABLE table_29960651_5 (episode VARCHAR, no_for_series VARCHAR)
SELECT episode FROM table_29960651_5 WHERE no_for_series = 45
41,108
<question>: What is the highest total for any country/territory? <context>: CREATE TABLE table_30008638_1 (total INTEGER)
SELECT MAX(total) FROM table_30008638_1
41,109
<question>: How many semifinalists has Romania had? <context>: CREATE TABLE table_30008638_1 (semifinalists VARCHAR, country_territory VARCHAR)
SELECT semifinalists FROM table_30008638_1 WHERE country_territory = "Romania"
41,110
<question>: How many Miss Waters has Canada had? <context>: CREATE TABLE table_30008638_1 (miss_water INTEGER, country_territory VARCHAR)
SELECT MAX(miss_water) FROM table_30008638_1 WHERE country_territory = "Canada"
41,111
<question>: What is the most Miss Fires any country has had? <context>: CREATE TABLE table_30008638_1 (miss_fire INTEGER)
SELECT MAX(miss_fire) FROM table_30008638_1
41,112
<question>: What is the least amount of Miss Airs any country has had? <context>: CREATE TABLE table_30008638_1 (miss_air INTEGER)
SELECT MIN(miss_air) FROM table_30008638_1
41,113
<question>: what re the high assists for january 29? <context>: CREATE TABLE table_29982187_4 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_29982187_4 WHERE date = "January 29"
41,114
<question>: What team did the suns play on April 21? <context>: CREATE TABLE table_29997127_4 (team VARCHAR, date VARCHAR)
SELECT team FROM table_29997127_4 WHERE date = "April 21"
41,115
<question>: In what game was the attendance at the America West Arena 18,756? <context>: 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"
41,116
<question>: What is the official name of the municipality whose name in Basque is Bilar? <context>: CREATE TABLE table_300283_1 (official_name VARCHAR, name_in_basque VARCHAR)
SELECT official_name FROM table_300283_1 WHERE name_in_basque = "Bilar"
41,117
<question>: What is the official name of the municipality whose name in Spanish is CripΓ‘n? <context>: 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"
41,118
<question>: What is the official name of the municipality whose name in Spanish is Vitoria? <context>: CREATE TABLE table_300283_1 (official_name VARCHAR, name_in_spanish VARCHAR)
SELECT official_name FROM table_300283_1 WHERE name_in_spanish = "Vitoria"
41,119
<question>: What is the name in Basque of the municipality whose official name is Kuartango? <context>: CREATE TABLE table_300283_1 (name_in_basque VARCHAR, official_name VARCHAR)
SELECT name_in_basque FROM table_300283_1 WHERE official_name = "Kuartango"
41,120
<question>: What is the INE code of the municipality whose official name is Berantevilla? <context>: CREATE TABLE table_300283_1 (ine_code INTEGER, official_name VARCHAR)
SELECT MAX(ine_code) FROM table_300283_1 WHERE official_name = "Berantevilla"
41,121
<question>: What is every reference for type and usage of Germanium small-signal RF transistor? <context>: 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"
41,122
<question>: What is every equivalent for the example of asy28? <context>: CREATE TABLE table_30011_2 (equivalent VARCHAR, example VARCHAR)
SELECT equivalent FROM table_30011_2 WHERE example = "ASY28"
41,123
<question>: What is every reference for the example of AF117? <context>: CREATE TABLE table_30011_2 (reference VARCHAR, example VARCHAR)
SELECT reference FROM table_30011_2 WHERE example = "AF117"
41,124
<question>: What is every prefix class for the equivalent of NTE160? <context>: CREATE TABLE table_30011_2 (prefix_class VARCHAR, equivalent VARCHAR)
SELECT prefix_class FROM table_30011_2 WHERE equivalent = "NTE160"
41,125
<question>: What is every prefix class for the equivalent of NTE101? <context>: CREATE TABLE table_30011_2 (prefix_class VARCHAR, equivalent VARCHAR)
SELECT prefix_class FROM table_30011_2 WHERE equivalent = "NTE101"
41,126
<question>: What is every example for the equivalent of NTE160? <context>: CREATE TABLE table_30011_2 (example VARCHAR, equivalent VARCHAR)
SELECT example FROM table_30011_2 WHERE equivalent = "NTE160"
41,127
<question>: How many manhunt beauty contets have been held in france? <context>: CREATE TABLE table_30018460_1 (manhunt_international VARCHAR, country_territory VARCHAR)
SELECT manhunt_international FROM table_30018460_1 WHERE country_territory = "France"
41,128
<question>: How many semifinalists where from peru? <context>: CREATE TABLE table_30018460_1 (semifinalists VARCHAR, country_territory VARCHAR)
SELECT semifinalists FROM table_30018460_1 WHERE country_territory = "Peru"
41,129
<question>: How many first place participants where from croatia? <context>: CREATE TABLE table_30018460_1 (country_territory VARCHAR)
SELECT 3 AS rd_runner_up FROM table_30018460_1 WHERE country_territory = "Croatia"
41,130
<question>: What is the minimum sum? <context>: CREATE TABLE table_30018460_1 (total INTEGER)
SELECT MIN(total) FROM table_30018460_1
41,131
<question>: What is the minimum manhunt beauty contest? <context>: CREATE TABLE table_30018460_1 (manhunt_international INTEGER)
SELECT MIN(manhunt_international) FROM table_30018460_1
41,132
<question>: How many people wrote the episode directed by Arvin Brown? <context>: CREATE TABLE table_30030227_1 (written_by VARCHAR, directed_by VARCHAR)
SELECT COUNT(written_by) FROM table_30030227_1 WHERE directed_by = "Arvin Brown"
41,133
<question>: When included ram (mib) is the model what is the sonnet? <context>: CREATE TABLE table_3002894_4 (sonnet VARCHAR, model VARCHAR)
SELECT sonnet FROM table_3002894_4 WHERE model = "Included RAM (MiB)"
41,134
<question>: When 4 mb is the sonnet what is the apple? <context>: CREATE TABLE table_3002894_4 (apple VARCHAR, sonnet VARCHAR)
SELECT apple FROM table_3002894_4 WHERE sonnet = "4 MB"
41,135
<question>: When 0,4, or 8 mb is the nupowr 117 what is the sonnet? <context>: CREATE TABLE table_3002894_4 (sonnet VARCHAR, nupowr_117 VARCHAR)
SELECT sonnet FROM table_3002894_4 WHERE nupowr_117 = "0,4, or 8 MB"
41,136
<question>: When maker is the model what is the nupowr 167? <context>: CREATE TABLE table_3002894_4 (nupowr_167 VARCHAR, model VARCHAR)
SELECT nupowr_167 FROM table_3002894_4 WHERE model = "Maker"
41,137
<question>: When 0,4, or 8 mb is the nupowr 117 what is the nupowr 183? <context>: 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"
41,138
<question>: What is the name of the episode written by glen mazzara? <context>: CREATE TABLE table_30030477_1 (title VARCHAR, written_by VARCHAR)
SELECT title FROM table_30030477_1 WHERE written_by = "Glen Mazzara"
41,139
<question>: How many titles are there with the original air date of august3,2010? <context>: CREATE TABLE table_30030477_1 (title VARCHAR, original_air_date VARCHAR)
SELECT COUNT(title) FROM table_30030477_1 WHERE original_air_date = "August3,2010"
41,140
<question>: Who directed the episdoe veiwed by 3.24 million viewers? <context>: CREATE TABLE table_30030477_1 (directed_by VARCHAR, viewers__million_ VARCHAR)
SELECT directed_by FROM table_30030477_1 WHERE viewers__million_ = "3.24"
41,141
<question>: What dated the episode written by is adam e. fierro & glen mazzara air? <context>: 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"
41,142
<question>: in which date the strea was w 2 <context>: CREATE TABLE table_30047613_12 (date VARCHAR, streak VARCHAR)
SELECT date FROM table_30047613_12 WHERE streak = "W 2"
41,143
<question>: in april 13 what was the streak <context>: CREATE TABLE table_30047613_12 (streak VARCHAR, date VARCHAR)
SELECT streak FROM table_30047613_12 WHERE date = "April 13"
41,144
<question>: in april 13 who made the high rebounds <context>: CREATE TABLE table_30047613_12 (high_rebounds VARCHAR, date VARCHAR)
SELECT high_rebounds FROM table_30047613_12 WHERE date = "April 13"
41,145
<question>: Name the game for l 111–126 <context>: CREATE TABLE table_30049462_8 (game VARCHAR, score VARCHAR)
SELECT game FROM table_30049462_8 WHERE score = "L 111–126"
41,146
<question>: Name the score for march 8 <context>: CREATE TABLE table_30049462_8 (score VARCHAR, date VARCHAR)
SELECT score FROM table_30049462_8 WHERE date = "March 8"
41,147
<question>: in the detroit team who made the high points <context>: CREATE TABLE table_30049462_5 (high_points VARCHAR, team VARCHAR)
SELECT high_points FROM table_30049462_5 WHERE team = "Detroit"
41,148
<question>: what is the score in the philadelphia team <context>: CREATE TABLE table_30049462_5 (score VARCHAR, team VARCHAR)
SELECT COUNT(score) FROM table_30049462_5 WHERE team = "Philadelphia"
41,149
<question>: in december 7 who made the high points <context>: CREATE TABLE table_30049462_5 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_30049462_5 WHERE date = "December 7"
41,150
<question>: in how many dates the game was 2 <context>: CREATE TABLE table_30049462_3 (date VARCHAR, game VARCHAR)
SELECT COUNT(date) FROM table_30049462_3 WHERE game = 2
41,151
<question>: in the milwaukee team who made the high points <context>: CREATE TABLE table_30049462_3 (high_points VARCHAR, team VARCHAR)
SELECT high_points FROM table_30049462_3 WHERE team = "Milwaukee"
41,152
<question>: What was the location and it's corresponding attendance during the game against Los Angeles? <context>: CREATE TABLE table_30049462_4 (location_attendance VARCHAR, team VARCHAR)
SELECT location_attendance FROM table_30049462_4 WHERE team = "Los Angeles"
41,153
<question>: what is the km from wellington where the metlink code is mast? <context>: CREATE TABLE table_3005450_1 (km_from_wellington VARCHAR, metlink_code VARCHAR)
SELECT km_from_wellington FROM table_3005450_1 WHERE metlink_code = "MAST"
41,154
<question>: what is the name of the station where the metlink code is mata? <context>: CREATE TABLE table_3005450_1 (station VARCHAR, metlink_code VARCHAR)
SELECT station FROM table_3005450_1 WHERE metlink_code = "MATA"
41,155
<question>: what is the metlink code that opened in 1908? <context>: CREATE TABLE table_3005450_1 (metlink_code VARCHAR, opened VARCHAR)
SELECT metlink_code FROM table_3005450_1 WHERE opened = "1908"
41,156
<question>: How many teams did inge – 6 have the high assists with? <context>: CREATE TABLE table_30054758_3 (team VARCHAR, high_assists VARCHAR)
SELECT COUNT(team) FROM table_30054758_3 WHERE high_assists = "Inge – 6"
41,157
<question>: What is the record for december 3? <context>: CREATE TABLE table_30054758_3 (record VARCHAR, date VARCHAR)
SELECT record FROM table_30054758_3 WHERE date = "December 3"
41,158
<question>: How many entries are there for high rebounds when high points is inge – 19? <context>: CREATE TABLE table_30054758_3 (high_rebounds VARCHAR, high_points VARCHAR)
SELECT COUNT(high_rebounds) FROM table_30054758_3 WHERE high_points = "Inge – 19"
41,159
<question>: How many games are shown when the is location attendance is phog allen fieldhouse , lawrence, ks (16,300)? <context>: 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)"
41,160
<question>: how many high assits have a date of february 5? <context>: CREATE TABLE table_30054758_5 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_30054758_5 WHERE date = "February 5"
41,161
<question>: What is shown for fri 26 aug when mon 22 aug is β€”β€” no time? <context>: 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"
41,162
<question>: What shows for sat 20 aug when fri 26 aug is 19' 30.70 116.023mph? <context>: 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"
41,163
<question>: What shows for mon 22 aug whenwed 24 aug is 19' 56.16 113.553mph? <context>: 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"
41,164
<question>: What is the thurs 25 aug when wed 24 aug is 19' 59.73 113.216mph? <context>: 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"
41,165
<question>: What shows for thurs 25 aug when fri 26 aug is 19' 30.70 116.023mph? <context>: 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"
41,166
<question>: What's the best rank possible? <context>: CREATE TABLE table_30058355_5 (rank INTEGER)
SELECT MIN(rank) FROM table_30058355_5
41,167
<question>: List all GT4 Cup winners played on the Spa-Francorchamps Report. <context>: CREATE TABLE table_30060356_3 (gt4_cup_winner VARCHAR, circuit VARCHAR)
SELECT gt4_cup_winner FROM table_30060356_3 WHERE circuit = "Spa-Francorchamps Report"
41,168
<question>: Who are the gt3 pro / am cup winners when the gt3 pro cup winner was no. 1 vita4one? <context>: 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"
41,169
<question>: What is the highest numbered event? <context>: CREATE TABLE table_30060356_3 (event INTEGER)
SELECT MAX(event) FROM table_30060356_3
41,170
<question>: What is every entry for Tuesday August 23 if the entry for Wednesday August 24 is 22' 23.29 101.116mph? <context>: 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"
41,171
<question>: What is every entry for Saturday August 27 when the entry for Thursday August 25 is 23' 56.90 94.528mph? <context>: 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"
41,172
<question>: What is every entry for Friday August 26 when the entry for Wednesday August 24 is 23' 52.67 94.807mph? <context>: 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"
41,173
<question>: When david ashburn richard westbrook is the gt3 winner and 1 is the round what is the length? <context>: 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"
41,174
<question>: When charles bateman michael lyons is the gt3 winner and donington park is the circuit who is the gt4 winner? <context>: 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"
41,175
<question>: When charles bateman michael lyons is the gt3 winner and 9 is the round who is the gt4 winner? <context>: 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"
41,176
<question>: When tim bridgman gregor fisken is the pole position who is the gt3 winner? <context>: 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"
41,177
<question>: List the rider for the doncaster handicap compeition. <context>: CREATE TABLE table_30098144_2 (jockey VARCHAR, race VARCHAR)
SELECT jockey FROM table_30098144_2 WHERE race = "Doncaster Handicap"
41,178
<question>: Name the number of troops for troops per $1 billion being 2.45 <context>: 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"
41,179
<question>: Name the total number of troops per one million being 2.76 <context>: 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"
41,180
<question>: Name the country for troops per one million being 54.9 <context>: 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"
41,181
<question>: Which player(s) played at Howard college? <context>: CREATE TABLE table_30108930_6 (player VARCHAR, college VARCHAR)
SELECT player FROM table_30108930_6 WHERE college = "Howard"
41,182
<question>: Which CFL team was pick #35? <context>: CREATE TABLE table_30108930_6 (cfl_team VARCHAR, pick__number VARCHAR)
SELECT cfl_team FROM table_30108930_6 WHERE pick__number = 35
41,183
<question>: Which CFL team got pick 34? <context>: CREATE TABLE table_30108930_6 (cfl_team VARCHAR, pick__number VARCHAR)
SELECT cfl_team FROM table_30108930_6 WHERE pick__number = 34
41,184
<question>: What is Tyrell Francisco's player position? <context>: CREATE TABLE table_30108930_6 (position VARCHAR, player VARCHAR)
SELECT position FROM table_30108930_6 WHERE player = "Tyrell Francisco"
41,185
<question>: What is the barony of the Gurraghy townland? <context>: CREATE TABLE table_30120547_1 (barony VARCHAR, townland VARCHAR)
SELECT barony FROM table_30120547_1 WHERE townland = "Gurraghy"
41,186
<question>: What is the civil parish of the cappanaboul townland? <context>: CREATE TABLE table_30120547_1 (civil_parish VARCHAR, townland VARCHAR)
SELECT civil_parish FROM table_30120547_1 WHERE townland = "Cappanaboul"
41,187
<question>: What are the civil parishes of the townlands with an area of 119 acres? <context>: CREATE TABLE table_30120547_1 (civil_parish VARCHAR, area__acres__ VARCHAR)
SELECT civil_parish FROM table_30120547_1 WHERE area__acres__ = 119
41,188
<question>: What civil paris appears when Ballynamona is the townland with 126 acres? <context>: 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
41,189
<question>: What is the area of the civil parish kilworth and townland monadrishane? <context>: 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"
41,190
<question>: How many barony's appear when Ballyvadona is the townland. <context>: CREATE TABLE table_30120556_1 (barony VARCHAR, townland VARCHAR)
SELECT COUNT(barony) FROM table_30120556_1 WHERE townland = "Ballyvadona"
41,191
<question>: How many items appear in the area column when Glasvaunta is the townland? <context>: CREATE TABLE table_30120556_1 (area__acres__ VARCHAR, townland VARCHAR)
SELECT COUNT(area__acres__) FROM table_30120556_1 WHERE townland = "Glasvaunta"
41,192
<question>: What is the fewest area in Derrynanool townland? <context>: CREATE TABLE table_30120556_1 (area__acres__ INTEGER, townland VARCHAR)
SELECT MIN(area__acres__) FROM table_30120556_1 WHERE townland = "Derrynanool"
41,193
<question>: What is Lisladeen poor law union? <context>: CREATE TABLE table_30120566_1 (poor_law_union VARCHAR, townland VARCHAR)
SELECT poor_law_union FROM table_30120566_1 WHERE townland = "Lisladeen"
41,194
<question>: In what barony are both the townland Dawstown and the civil parish Matehy located? <context>: 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"
41,195
<question>: What barony is Ballycunningham in? <context>: CREATE TABLE table_30120566_1 (barony VARCHAR, townland VARCHAR)
SELECT barony FROM table_30120566_1 WHERE townland = "Ballycunningham"
41,196
<question>: How many different sizes (in acres) are noted for Rathcoola East? <context>: CREATE TABLE table_30120566_1 (area__acres__ VARCHAR, townland VARCHAR)
SELECT COUNT(area__acres__) FROM table_30120566_1 WHERE townland = "Rathcoola East"
41,197
<question>: how many areas have townland as kilgilky north? <context>: CREATE TABLE table_30120560_1 (area__acres__ VARCHAR, townland VARCHAR)
SELECT COUNT(area__acres__) FROM table_30120560_1 WHERE townland = "Kilgilky North"
41,198
<question>: which cilvil parishes have areas of 405? <context>: CREATE TABLE table_30120560_1 (civil_parish VARCHAR, area__acres__ VARCHAR)
SELECT civil_parish FROM table_30120560_1 WHERE area__acres__ = 405
41,199
<question>: what is the barony and an area of 560? <context>: CREATE TABLE table_30120560_1 (barony VARCHAR, area__acres__ VARCHAR)
SELECT barony FROM table_30120560_1 WHERE area__acres__ = 560