combined_text
stringlengths 106
1.05k
|
---|
###question:What were the scores when Jamie and Johns guest was Phillips Idowu?###answer:SELECT scores FROM table_29141354_2 WHERE jamie_and_johns_guest = "Phillips Idowu"###context:CREATE TABLE table_29141354_2 (scores VARCHAR, jamie_and_johns_guest VARCHAR) |
###question:When was episode 02x02 first broadcast?###answer:SELECT first_broadcast FROM table_29141354_2 WHERE episode = "02x02"###context:CREATE TABLE table_29141354_2 (first_broadcast VARCHAR, episode VARCHAR) |
###question:Who was Andrew and Georgies guest when Jamie and Johns guest was Jessica Ennis?###answer:SELECT andrew_and_georgies_guest FROM table_29141354_2 WHERE jamie_and_johns_guest = "Jessica Ennis"###context:CREATE TABLE table_29141354_2 (andrew_and_georgies_guest VARCHAR, jamie_and_johns_guest VARCHAR) |
###question:When was episode 02x07 first broadcast?###answer:SELECT first_broadcast FROM table_29141354_2 WHERE episode = "02x07"###context:CREATE TABLE table_29141354_2 (first_broadcast VARCHAR, episode VARCHAR) |
###question:List all the MCs with peak ranking of 6 who were inducted in 2007.###answer:SELECT top_mc FROM table_29160596_1 WHERE year_inducted = 2007 AND peak_ranking = 6###context:CREATE TABLE table_29160596_1 (top_mc VARCHAR, year_inducted VARCHAR, peak_ranking VARCHAR) |
###question:List all the MCs with 5 appearances who were inducted in 2007?###answer:SELECT top_mc FROM table_29160596_1 WHERE appearances = 5 AND year_inducted = 2007###context:CREATE TABLE table_29160596_1 (top_mc VARCHAR, appearances VARCHAR, year_inducted VARCHAR) |
###question:How many appearances by Meek Mill?###answer:SELECT MAX(appearances) FROM table_29160596_1 WHERE top_mc = "Meek Mill"###context:CREATE TABLE table_29160596_1 (appearances INTEGER, top_mc VARCHAR) |
###question:What are the championship venues where the score was 6–7 (4–7) , 3–6?###answer:SELECT championship FROM table_29163303_1 WHERE score = "6–7 (4–7) , 3–6"###context:CREATE TABLE table_29163303_1 (championship VARCHAR, score VARCHAR) |
###question:On what surface was the Australian Open (6) played on?###answer:SELECT surface FROM table_29163303_1 WHERE championship = "Australian Open (6)"###context:CREATE TABLE table_29163303_1 (surface VARCHAR, championship VARCHAR) |
###question:Who was Bob Bryan's partner/s on a hard surface in 2003?###answer:SELECT partner FROM table_29163303_1 WHERE year = 2003 AND surface = "Hard"###context:CREATE TABLE table_29163303_1 (partner VARCHAR, year VARCHAR, surface VARCHAR) |
###question:which vessel area was called for on november 30, 1970###answer:SELECT shipyard FROM table_291768_1 WHERE commissioned = "November 30, 1970"###context:CREATE TABLE table_291768_1 (shipyard VARCHAR, commissioned VARCHAR) |
###question:what project was initially started before september 20, 1968###answer:SELECT commissioned FROM table_291768_1 WHERE launched = "September 20, 1968"###context:CREATE TABLE table_291768_1 (commissioned VARCHAR, launched VARCHAR) |
###question:when was the first start date that actually began on august 6, 1969###answer:SELECT launched FROM table_291768_1 WHERE commissioned = "August 6, 1969"###context:CREATE TABLE table_291768_1 (launched VARCHAR, commissioned VARCHAR) |
###question:Who directed the episode with production code ip01003? ###answer:SELECT directed_by FROM table_29273057_1 WHERE production_code = "IP01003"###context:CREATE TABLE table_29273057_1 (directed_by VARCHAR, production_code VARCHAR) |
###question:How many poles does the European F3 Open series have?###answer:SELECT poles FROM table_29434211_1 WHERE series = "European F3 Open"###context:CREATE TABLE table_29434211_1 (poles VARCHAR, series VARCHAR) |
###question:What is the maximum season that has exactly 2 podiums?###answer:SELECT MAX(season) FROM table_29434211_1 WHERE podiums = 2###context:CREATE TABLE table_29434211_1 (season INTEGER, podiums VARCHAR) |
###question:Who wrote episode 23 of the season?###answer:SELECT written_by FROM table_29436007_1 WHERE no_in_season = 23###context:CREATE TABLE table_29436007_1 (written_by VARCHAR, no_in_season VARCHAR) |
###question:How many seasons are there for the 3rd position?###answer:SELECT COUNT(season) FROM table_29471472_1 WHERE position = "3rd"###context:CREATE TABLE table_29471472_1 (season VARCHAR, position VARCHAR) |
###question:What season was the team autosport academy?###answer:SELECT MAX(season) FROM table_29471472_1 WHERE team = "Autosport Academy"###context:CREATE TABLE table_29471472_1 (season INTEGER, team VARCHAR) |
###question:What is the series for race 7###answer:SELECT series FROM table_29471472_1 WHERE races = 7###context:CREATE TABLE table_29471472_1 (series VARCHAR, races VARCHAR) |
###question:What season shows podium 7?###answer:SELECT MIN(season) FROM table_29471472_1 WHERE podiums = 7###context:CREATE TABLE table_29471472_1 (season INTEGER, podiums VARCHAR) |
###question:How many French heads of state have a head of mission of Xavier Daufresne de la Chevalerie?###answer:SELECT COUNT(french_head_of_state) FROM table_29474481_4 WHERE head_of_mission = "Xavier Daufresne de la Chevalerie"###context:CREATE TABLE table_29474481_4 (french_head_of_state VARCHAR, head_of_mission VARCHAR) |
###question:What city is Tiffin University located in?###answer:SELECT location___city FROM table_29483673_1 WHERE institution = "Tiffin University"###context:CREATE TABLE table_29483673_1 (location___city VARCHAR, institution VARCHAR) |
###question:What is the enrollment at the private university?###answer:SELECT enrollment FROM table_29483673_1 WHERE affiliation = "Private"###context:CREATE TABLE table_29483673_1 (enrollment VARCHAR, affiliation VARCHAR) |
###question:What is the original air date when the director is Rowan Woods and the writer is Peter Duncan?###answer:SELECT originalair_date FROM table_29494395_3 WHERE director = "Rowan Woods" AND writer = "Peter Duncan"###context:CREATE TABLE table_29494395_3 (originalair_date VARCHAR, director VARCHAR, writer VARCHAR) |
###question:How many sources are there for south africa?###answer:SELECT COUNT(source_s_) FROM table_29487895_2 WHERE country___region = "South Africa"###context:CREATE TABLE table_29487895_2 (source_s_ VARCHAR, country___region VARCHAR) |
###question:What is the premiere date of the american disney xd tron uprising site?###answer:SELECT series_premiere FROM table_29487895_2 WHERE source_s_ = "American Disney XD Tron Uprising Site"###context:CREATE TABLE table_29487895_2 (series_premiere VARCHAR, source_s_ VARCHAR) |
###question:What country is in the region of France?###answer:SELECT title_in_country FROM table_29487895_2 WHERE country___region = "France"###context:CREATE TABLE table_29487895_2 (title_in_country VARCHAR, country___region VARCHAR) |
###question:What is the title in Canada?###answer:SELECT title_in_country FROM table_29487895_2 WHERE country___region = "Canada"###context:CREATE TABLE table_29487895_2 (title_in_country VARCHAR, country___region VARCHAR) |
###question:What was the best finish for 206 on the money list?###answer:SELECT best_finish FROM table_29499399_2 WHERE money_list_rank = "206"###context:CREATE TABLE table_29499399_2 (best_finish VARCHAR, money_list_rank VARCHAR) |
###question:How many ranks on the money list had a best finish of t10?###answer:SELECT COUNT(money_list_rank) FROM table_29499399_2 WHERE best_finish = "T10"###context:CREATE TABLE table_29499399_2 (money_list_rank VARCHAR, best_finish VARCHAR) |
###question:Which money list ranks had a best finish of 2?###answer:SELECT COUNT(money_list_rank) FROM table_29499399_2 WHERE best_finish = "2"###context:CREATE TABLE table_29499399_2 (money_list_rank VARCHAR, best_finish VARCHAR) |
###question:What is Jonathan Kaye's money list ranking?###answer:SELECT COUNT(money_list_rank) FROM table_29499399_2 WHERE player = "Jonathan Kaye"###context:CREATE TABLE table_29499399_2 (money_list_rank VARCHAR, player VARCHAR) |
###question:Where is Cameron Beckman's rank on the money list?###answer:SELECT money_list_rank FROM table_29499399_2 WHERE player = "Cameron Beckman"###context:CREATE TABLE table_29499399_2 (money_list_rank VARCHAR, player VARCHAR) |
###question:When 6 is the w what is the pa?###answer:SELECT pa FROM table_29565541_2 WHERE w = 6###context:CREATE TABLE table_29565541_2 (pa VARCHAR, w VARCHAR) |
###question:When 5 is the l what is the lowest amount of stolen ends?###answer:SELECT MIN(stolen_ends) FROM table_29565541_2 WHERE l = 5###context:CREATE TABLE table_29565541_2 (stolen_ends INTEGER, l VARCHAR) |
###question:How many million people in the US saw the episode with production code 105?###answer:SELECT us_viewers__millions_ FROM table_29569969_2 WHERE production_code = 105###context:CREATE TABLE table_29569969_2 (us_viewers__millions_ VARCHAR, production_code VARCHAR) |
###question:Who directed the episode that had 1.48 million viewers in the U.S.?###answer:SELECT directed_by FROM table_29569969_2 WHERE us_viewers__millions_ = "1.48"###context:CREATE TABLE table_29569969_2 (directed_by VARCHAR, us_viewers__millions_ VARCHAR) |
###question:what is the status for seed 14###answer:SELECT status FROM table_29572583_20 WHERE seed = 14###context:CREATE TABLE table_29572583_20 (status VARCHAR, seed VARCHAR) |
###question:which player had the status to the fourth round lost to tsvetana pironkova [32] Answers:###answer:SELECT player FROM table_29572583_20 WHERE status = "Fourth round lost to Tsvetana Pironkova [32]"###context:CREATE TABLE table_29572583_20 (player VARCHAR, status VARCHAR) |
###question:how many new points does the player roberta vinci have?###answer:SELECT MAX(new_points) FROM table_29572583_20 WHERE player = "Roberta Vinci"###context:CREATE TABLE table_29572583_20 (new_points INTEGER, player VARCHAR) |
###question:How many o-19% are where the quartier is in saint-loup?###answer:SELECT _percentage_0_19_years FROM table_29615165_5 WHERE quartier = "Saint-Loup"###context:CREATE TABLE table_29615165_5 (_percentage_0_19_years VARCHAR, quartier VARCHAR) |
###question:how many 20-39% are in pont-de-vivaux?###answer:SELECT COUNT(_percentage_20_39_years) FROM table_29615165_5 WHERE quartier = "Pont-de-Vivaux"###context:CREATE TABLE table_29615165_5 (_percentage_20_39_years VARCHAR, quartier VARCHAR) |
###question:the quartier menpenti has how many 40-59 year olds?###answer:SELECT _percentage_40_59_years FROM table_29615165_5 WHERE quartier = "Menpenti"###context:CREATE TABLE table_29615165_5 (_percentage_40_59_years VARCHAR, quartier VARCHAR) |
###question:What episode number in the series was directed by Winrich Kolbe?###answer:SELECT MIN(no_in_series) FROM table_29585196_1 WHERE directed_by = "Winrich Kolbe"###context:CREATE TABLE table_29585196_1 (no_in_series INTEGER, directed_by VARCHAR) |
###question:What is the position for the university of akron michigan bucks affiliation ###answer:SELECT position FROM table_29626583_1 WHERE affiliation = "University of Akron Michigan Bucks"###context:CREATE TABLE table_29626583_1 (position VARCHAR, affiliation VARCHAR) |
###question:What is the position for the university of north carolina carolina dynamo affiliation ###answer:SELECT position FROM table_29626583_1 WHERE affiliation = "University of North Carolina Carolina Dynamo"###context:CREATE TABLE table_29626583_1 (position VARCHAR, affiliation VARCHAR) |
###question:how many pick# does the chivas usa mls team have###answer:SELECT MAX(pick__number) FROM table_29626583_1 WHERE mls_team = "Chivas USA"###context:CREATE TABLE table_29626583_1 (pick__number INTEGER, mls_team VARCHAR) |
###question:how many pick# does the university of akron reading united michigan bucks affiliation have###answer:SELECT COUNT(pick__number) FROM table_29626583_1 WHERE affiliation = "University of Akron Reading United Michigan Bucks"###context:CREATE TABLE table_29626583_1 (pick__number VARCHAR, affiliation VARCHAR) |
###question:what is the position for the united states u-20 affiliation ###answer:SELECT position FROM table_29626583_1 WHERE affiliation = "United States U-20"###context:CREATE TABLE table_29626583_1 (position VARCHAR, affiliation VARCHAR) |
###question:What is the title of the episode with a production code of FL209?###answer:SELECT title FROM table_29747178_3 WHERE production_code = "FL209"###context:CREATE TABLE table_29747178_3 (title VARCHAR, production_code VARCHAR) |
###question:Who directed the episode that was watched by 2.67 million U.S. viewers?###answer:SELECT directed_by FROM table_29747178_3 WHERE us_viewers__million_ = "2.67"###context:CREATE TABLE table_29747178_3 (directed_by VARCHAR, us_viewers__million_ VARCHAR) |
###question:What is the lowest value for int. caps?###answer:SELECT MIN(int_caps) FROM table_29743928_5###context:CREATE TABLE table_29743928_5 (int_caps INTEGER) |
###question:How many trains are there for the route via trivandrum, ernakulam, newdelhi?###answer:SELECT COUNT(train_number) FROM table_29770377_1 WHERE route_via = "Trivandrum, Ernakulam, NewDelhi"###context:CREATE TABLE table_29770377_1 (train_number VARCHAR, route_via VARCHAR) |
###question:What is the route for the destination of guruvayur?###answer:SELECT route_via FROM table_29770377_1 WHERE destination = "Guruvayur"###context:CREATE TABLE table_29770377_1 (route_via VARCHAR, destination VARCHAR) |
###question:How many route/via's are there for the ernad express?###answer:SELECT COUNT(route_via) FROM table_29770377_1 WHERE train_name = "Ernad Express"###context:CREATE TABLE table_29770377_1 (route_via VARCHAR, train_name VARCHAR) |
###question:What is the destination of the route kulitthurai,neyyattinkara?###answer:SELECT destination FROM table_29770377_1 WHERE route_via = "Kulitthurai,Neyyattinkara"###context:CREATE TABLE table_29770377_1 (destination VARCHAR, route_via VARCHAR) |
###question:What is the train number for the train name island express with a destination of kanniyakumari?###answer:SELECT train_number FROM table_29770377_1 WHERE train_name = "Island Express" AND destination = "Kanniyakumari"###context:CREATE TABLE table_29770377_1 (train_number VARCHAR, train_name VARCHAR, destination VARCHAR) |
###question:How many reservations for sc/st are there in constituency 191?###answer:SELECT COUNT(reservation_for_sc_st) FROM table_29785324_4 WHERE constituency_no = 191###context:CREATE TABLE table_29785324_4 (reservation_for_sc_st VARCHAR, constituency_no VARCHAR) |
###question:Which locations had their first year in 2001? ###answer:SELECT location FROM table_29788320_2 WHERE first_year = 2001###context:CREATE TABLE table_29788320_2 (location VARCHAR, first_year VARCHAR) |
###question:How many editions did Club Q-base concept have ? ###answer:SELECT COUNT(number_of_editions) FROM table_29788320_2 WHERE concept = "Club Q-BASE"###context:CREATE TABLE table_29788320_2 (number_of_editions VARCHAR, concept VARCHAR) |
###question:What is the lowest value for runs when the average is 42.36?###answer:SELECT MIN(runs) FROM table_2985664_8 WHERE average = "42.36"###context:CREATE TABLE table_2985664_8 (runs INTEGER, average VARCHAR) |
###question:How many entries for 50 occur when strike rate is 92.81?###answer:SELECT COUNT(50) FROM table_2985664_8 WHERE strike_rate = "92.81"###context:CREATE TABLE table_2985664_8 (strike_rate VARCHAR) |
###question:What is the lowest value for innings?###answer:SELECT MIN(innings) FROM table_2985664_8###context:CREATE TABLE table_2985664_8 (innings INTEGER) |
###question:What is every strike rate when cathces/stumpings is 13/1?###answer:SELECT strike_rate FROM table_2985664_8 WHERE catches_stumpings = "13/1"###context:CREATE TABLE table_2985664_8 (strike_rate VARCHAR, catches_stumpings VARCHAR) |
###question:What is every high score for a strike rate of 84.88?###answer:SELECT high_score FROM table_2985664_8 WHERE strike_rate = "84.88"###context:CREATE TABLE table_2985664_8 (high_score VARCHAR, strike_rate VARCHAR) |
###question:How many entries for 100 occur when the average is 15.78?###answer:SELECT COUNT(100) FROM table_2985664_8 WHERE average = "15.78"###context:CREATE TABLE table_2985664_8 (average VARCHAR) |
###question:What is the chromosomal location of il-1β?###answer:SELECT chromosomal_location FROM table_29871617_1 WHERE name = "IL-1β"###context:CREATE TABLE table_29871617_1 (chromosomal_location VARCHAR, name VARCHAR) |
###question:What are the coreceptors of the chromosomes in that location 11q22.2-q22.3?###answer:SELECT coreceptor FROM table_29871617_1 WHERE chromosomal_location = "11q22.2-q22.3"###context:CREATE TABLE table_29871617_1 (coreceptor VARCHAR, chromosomal_location VARCHAR) |
###question:How many different chromosomal locations are there in the family il-1f8?###answer:SELECT COUNT(chromosomal_location) FROM table_29871617_1 WHERE family_name = "IL-1F8"###context:CREATE TABLE table_29871617_1 (chromosomal_location VARCHAR, family_name VARCHAR) |
###question:Where is il-36β located?###answer:SELECT chromosomal_location FROM table_29871617_1 WHERE name = "IL-36β"###context:CREATE TABLE table_29871617_1 (chromosomal_location VARCHAR, name VARCHAR) |
###question:What are the names listed in the family il-1f2?###answer:SELECT name FROM table_29871617_1 WHERE family_name = "IL-1F2"###context:CREATE TABLE table_29871617_1 (name VARCHAR, family_name VARCHAR) |
###question:Which chromosomes have an unknown property?###answer:SELECT name FROM table_29871617_1 WHERE property = "Unknown"###context:CREATE TABLE table_29871617_1 (name VARCHAR, property VARCHAR) |
###question:Name the least mister international###answer:SELECT MIN(mister_international) FROM table_30007505_1###context:CREATE TABLE table_30007505_1 (mister_international INTEGER) |
###question:Name the most total for south korea###answer:SELECT MAX(total) FROM table_30007505_1 WHERE country_territory = "South Korea"###context:CREATE TABLE table_30007505_1 (total INTEGER, country_territory VARCHAR) |
###question:Name the semifinalists for singapore###answer:SELECT semifinalists FROM table_30007505_1 WHERE country_territory = "Singapore"###context:CREATE TABLE table_30007505_1 (semifinalists VARCHAR, country_territory VARCHAR) |
###question:Name the number of semifinalists for 19 rank###answer:SELECT COUNT(semifinalists) FROM table_30007505_1 WHERE rank = 19###context:CREATE TABLE table_30007505_1 (semifinalists VARCHAR, rank VARCHAR) |
###question:Where was d: ~50nm, l: ~600nm geometry researched?###answer:SELECT researched_at FROM table_30057479_1 WHERE geometry = "D: ~50nm, L: ~600nm"###context:CREATE TABLE table_30057479_1 (researched_at VARCHAR, geometry VARCHAR) |
###question:How many materials are there for output power of ~0.1 pw per cycle (calculated)?###answer:SELECT COUNT(material) FROM table_30057479_1 WHERE output_power = "~0.1 pW per cycle (calculated)"###context:CREATE TABLE table_30057479_1 (material VARCHAR, output_power VARCHAR) |
###question:How many synthesis are there for 5~16.2 pw per cycle (calculated) output power?###answer:SELECT COUNT(synthesis) FROM table_30057479_1 WHERE output_power = "5~16.2 pW per cycle (calculated)"###context:CREATE TABLE table_30057479_1 (synthesis VARCHAR, output_power VARCHAR) |
###question:Where was d: ~100nm, l: 1 μm geometry researched?###answer:SELECT researched_at FROM table_30057479_1 WHERE geometry = "D: ~100nm, L: 1 μm"###context:CREATE TABLE table_30057479_1 (researched_at VARCHAR, geometry VARCHAR) |
###question:Where was d: 25~70nm, l: 10~20 μm geometry researched?###answer:SELECT researched_at FROM table_30057479_1 WHERE geometry = "D: 25~70nm, L: 10~20 μm"###context:CREATE TABLE table_30057479_1 (researched_at VARCHAR, geometry VARCHAR) |
###question:Who are all providers with destination of Liverpool?###answer:SELECT provider FROM table_3005999_1 WHERE destination = "Liverpool"###context:CREATE TABLE table_3005999_1 (provider VARCHAR, destination VARCHAR) |
###question:What is every entry for intermediate stops for the destination of Manchester?###answer:SELECT intermediate_stops FROM table_3005999_1 WHERE destination = "Manchester"###context:CREATE TABLE table_3005999_1 (intermediate_stops VARCHAR, destination VARCHAR) |
###question:How many route numbers occur for the origin of Birmingham and destination of Bristol?###answer:SELECT COUNT(route_number) FROM table_3005999_1 WHERE origin = "Birmingham" AND destination = "Bristol"###context:CREATE TABLE table_3005999_1 (route_number VARCHAR, origin VARCHAR, destination VARCHAR) |
###question:What is every origin for the destination of Manchester?###answer:SELECT origin FROM table_3005999_1 WHERE destination = "Manchester"###context:CREATE TABLE table_3005999_1 (origin VARCHAR, destination VARCHAR) |
###question:How many providers have a destination of Blackpool?###answer:SELECT COUNT(provider) FROM table_3005999_1 WHERE destination = "Blackpool"###context:CREATE TABLE table_3005999_1 (provider VARCHAR, destination VARCHAR) |
###question:What is the maximum number of starts?###answer:SELECT MAX(starts) FROM table_3005915_3###context:CREATE TABLE table_3005915_3 (starts INTEGER) |
###question:What is the maximum number of poles?###answer:SELECT MAX(poles) FROM table_3005915_3###context:CREATE TABLE table_3005915_3 (poles INTEGER) |
###question:What is the minimum number of poles?###answer:SELECT MIN(poles) FROM table_3005915_3###context:CREATE TABLE table_3005915_3 (poles INTEGER) |
###question:Name the date for s. valentino alla muta , italia###answer:SELECT date FROM table_30073089_2 WHERE location = "S. Valentino Alla Muta , Italia"###context:CREATE TABLE table_30073089_2 (date VARCHAR, location VARCHAR) |
###question:Name the date for 2011 and position larger than 2.0###answer:SELECT date FROM table_30073089_2 WHERE season = 2011 AND position > 2.0###context:CREATE TABLE table_30073089_2 (date VARCHAR, season VARCHAR, position VARCHAR) |
###question:Name the discipline for 1561 fis points###answer:SELECT discipline FROM table_30073089_2 WHERE fis_points = 1561###context:CREATE TABLE table_30073089_2 (discipline VARCHAR, fis_points VARCHAR) |
###question:Name the position for fis points being 3495###answer:SELECT position FROM table_30073089_2 WHERE fis_points = 3495###context:CREATE TABLE table_30073089_2 (position VARCHAR, fis_points VARCHAR) |
###question:what is the number of the wc matches if the matches were 79###answer:SELECT MAX(WC) AS matches FROM table_30085411_1 WHERE matches = 79###context:CREATE TABLE table_30085411_1 (WC INTEGER, matches VARCHAR) |
###question:what is the number of the least matches###answer:SELECT MIN(matches) FROM table_30085411_1###context:CREATE TABLE table_30085411_1 (matches INTEGER) |
###question:if the matches are 16 what is the wc matches###answer:SELECT MAX(WC) AS matches FROM table_30085411_1 WHERE matches = 16###context:CREATE TABLE table_30085411_1 (WC INTEGER, matches VARCHAR) |
###question:Which barony contains a townland with an area 24 acres?###answer:SELECT barony FROM table_30120555_1 WHERE area__acres__ = 24###context:CREATE TABLE table_30120555_1 (barony VARCHAR, area__acres__ VARCHAR) |
###question:How many different civil parishes is Canrooska a part of?###answer:SELECT COUNT(civil_parish) FROM table_30120555_1 WHERE townland = "Canrooska"###context:CREATE TABLE table_30120555_1 (civil_parish VARCHAR, townland VARCHAR) |
###question:What poor law union is Curradonohoe a part of?###answer:SELECT poor_law_union FROM table_30120555_1 WHERE townland = "Curradonohoe"###context:CREATE TABLE table_30120555_1 (poor_law_union VARCHAR, townland VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.