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