answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT home_team FROM table_name_61 WHERE date = "april 5, 2008"
Which home team played on April 5, 2008?
CREATE TABLE table_name_61 (home_team VARCHAR, date VARCHAR)
SELECT MAX(rank) FROM table_name_21 WHERE county_and_state = "silver bow county, montana" AND capacity__thousands_of_metric_tons_ > 45
In Silver Bow County, Montana, when the capicity is more than 45 tons, what's the highest rank found?
CREATE TABLE table_name_21 (rank INTEGER, county_and_state VARCHAR, capacity__thousands_of_metric_tons_ VARCHAR)
SELECT school_club_team_country FROM table_name_53 WHERE no_s_ < 4
What school, club team, or country did the player with a number smaller than 4 come from?
CREATE TABLE table_name_53 (school_club_team_country VARCHAR, no_s_ INTEGER)
SELECT season FROM table_name_76 WHERE opponent = "source: . last updated: 28 june 2007."
What is Season, when Opponent is source: . last updated: 28 june 2007.?
CREATE TABLE table_name_76 (season VARCHAR, opponent VARCHAR)
SELECT call_sign FROM table_name_60 WHERE branding = "jack fm"
What's the call sign for Jack FM?
CREATE TABLE table_name_60 (call_sign VARCHAR, branding VARCHAR)
SELECT COUNT(package_option) FROM table_15887683_6 WHERE television_service = "Sky Primafila 24"
Name the number of package/option for sky primafila 24
CREATE TABLE table_15887683_6 (package_option VARCHAR, television_service VARCHAR)
SELECT MAX(wins) FROM table_name_63 WHERE season < 1995 AND team = "central district" AND draws < 0
What is the highest number of wins for the team, Central District, who had less than 0 draws and took place during a season before 1995?
CREATE TABLE table_name_63 (wins INTEGER, draws VARCHAR, season VARCHAR, team VARCHAR)
SELECT MIN(lost) FROM table_name_88 WHERE goals_for > 52 AND points_1 = "44" AND drawn < 8
What is the lowest Lost, when Goals For is greater than 52, when Points 1 is "44", and when Drawn is less than 8?
CREATE TABLE table_name_88 (lost INTEGER, drawn VARCHAR, goals_for VARCHAR, points_1 VARCHAR)
SELECT fri_4_june FROM table_25220821_3 WHERE wed_2_june = "20' 50.62 108.608mph"
What is the Friday 4 June if the Wednesday 2 June is 20' 50.62 108.608mph?
CREATE TABLE table_25220821_3 (fri_4_june VARCHAR, wed_2_june VARCHAR)
SELECT displacement FROM table_name_95 WHERE year > 2002 AND power = "220kw (299hp) @ 4000"
What is the Displacement that has Power of 220kw (299hp) @ 4000, and a year larger than 2002?
CREATE TABLE table_name_95 (displacement VARCHAR, year VARCHAR, power VARCHAR)
SELECT SUM(game) FROM table_name_62 WHERE opponent = "new york islanders" AND february < 24
What is the number of the game when the opponent was the New York Islanders, and a February less than 24?
CREATE TABLE table_name_62 (game INTEGER, opponent VARCHAR, february VARCHAR)
SELECT goals_for_against FROM table_name_94 WHERE points = 17
What is the goals for/against of the club with 17 points?
CREATE TABLE table_name_94 (goals_for_against VARCHAR, points VARCHAR)
SELECT MIN(year) FROM table_name_96 WHERE title = "cold feet"
What is recorded as the lowest Year that has the Title of Cold Feet?
CREATE TABLE table_name_96 (year INTEGER, title VARCHAR)
SELECT result FROM table_name_4 WHERE opponent = "steve walker"
Which Result has an Opponent of steve walker?
CREATE TABLE table_name_4 (result VARCHAR, opponent VARCHAR)
SELECT date FROM table_24099476_8 WHERE win_lose = "Lose" AND round = "Play-off"
When was the win/lose lose and the round a play-off?
CREATE TABLE table_24099476_8 (date VARCHAR, win_lose VARCHAR, round VARCHAR)
SELECT COUNT(lyricist) FROM table_10416547_1 WHERE lyrics_theme_style = "Romance" AND duration = "3:50"
What is the total number of lyricist where the lyrics theme is romance and the song lasts 3:50?
CREATE TABLE table_10416547_1 (lyricist VARCHAR, lyrics_theme_style VARCHAR, duration VARCHAR)
SELECT pete_du_pont FROM table_name_13 WHERE pat_robertson = "16%"
When Pat Robertson was at 16%, what did Pete du Pont have?
CREATE TABLE table_name_13 (pete_du_pont VARCHAR, pat_robertson VARCHAR)
SELECT MIN(year) FROM table_name_90 WHERE festival_organization = "satellite award"
What is the first year that there was a Satellite Award?
CREATE TABLE table_name_90 (year INTEGER, festival_organization VARCHAR)
SELECT COUNT(frequency_mhz) FROM table_name_22 WHERE erp_w = 1 AND call_sign = "w215bj"
Name the total number of frequency Mhz for when it has ERP W of 1 and call sign of w215bj
CREATE TABLE table_name_22 (frequency_mhz VARCHAR, erp_w VARCHAR, call_sign VARCHAR)
SELECT telugu_తెలుగు FROM table_name_87 WHERE kannada_ಕನ್ನಡ = "chitra ಚಿತ್ತ"
Which Telugu తెలుగు has a Kannada ಕನ್ನಡ of chitra ಚಿತ್ತ?
CREATE TABLE table_name_87 (telugu_తెలుగు VARCHAR, kannada_ಕನ್ನಡ VARCHAR)
SELECT position FROM table_name_58 WHERE player = "pierre daigneault"
What is the position of Pierre Daigneault?
CREATE TABLE table_name_58 (position VARCHAR, player VARCHAR)
SELECT MAX(gold) FROM table_name_72 WHERE total > 13 AND silver > 9 AND bronze = 7
What is the highest amount of gold medals awarded to a team with more than 9 silver, 7 bronze and more than 13 medals total?
CREATE TABLE table_name_72 (gold INTEGER, bronze VARCHAR, total VARCHAR, silver VARCHAR)
SELECT crowd FROM table_name_6 WHERE away_team = "geelong"
What was away team Geelong's crowd numbers?
CREATE TABLE table_name_6 (crowd VARCHAR, away_team VARCHAR)
SELECT away_team AS score FROM table_name_77 WHERE venue = "junction oval"
What was the score of the away team at Junction Oval?
CREATE TABLE table_name_77 (away_team VARCHAR, venue VARCHAR)
SELECT COUNT(mens_open) FROM table_182298_5 WHERE country = "Sweden"
How many won the Men's Open if the players are from Sweden?
CREATE TABLE table_182298_5 (mens_open VARCHAR, country VARCHAR)
SELECT date_of_death FROM table_name_66 WHERE date_of_birth = "24 september 1851"
When did the person born 24 September 1851 pass away?
CREATE TABLE table_name_66 (date_of_death VARCHAR, date_of_birth VARCHAR)
SELECT MAX(year) FROM table_28601467_1 WHERE winner = "Ireland 4 points"
What is the most recent year in which the winner record is Ireland 4 points?
CREATE TABLE table_28601467_1 (year INTEGER, winner VARCHAR)
SELECT loss FROM table_name_57 WHERE opponent = "rangers" AND attendance > 43 OFFSET 211
What was the Loss when the opponent was the Rangers and the attendance was greater than 43,211?
CREATE TABLE table_name_57 (loss VARCHAR, opponent VARCHAR, attendance VARCHAR)
SELECT SUM(population) FROM table_name_49 WHERE type = "vl" AND region > 3
How many people have a vl type in a region greater than 3?
CREATE TABLE table_name_49 (population INTEGER, type VARCHAR, region VARCHAR)
SELECT country FROM table_14752049_6 WHERE change__2011_to_2012_ = "+13.4%"
When the change (2011 to 2012) is +13.4% what is the country?
CREATE TABLE table_14752049_6 (country VARCHAR, change__2011_to_2012_ VARCHAR)
SELECT MIN(round) FROM table_name_51 WHERE record = "5-3 (1)"
Which round has a record of 5-3 (1)?
CREATE TABLE table_name_51 (round INTEGER, record VARCHAR)
SELECT MAX(crowd) FROM table_name_65 WHERE venue = "punt road oval"
What was the biggest crowd at punt road oval?
CREATE TABLE table_name_65 (crowd INTEGER, venue VARCHAR)
SELECT margin_of_victory FROM table_name_48 WHERE runner_s__up = "justin rose"
What is the margin of victory in the race where Justin Rose was the runner-up?
CREATE TABLE table_name_48 (margin_of_victory VARCHAR, runner_s__up VARCHAR)
SELECT nhl_team FROM table_name_97 WHERE player = "vitali yeremeyev"
Name the team of vitali yeremeyev
CREATE TABLE table_name_97 (nhl_team VARCHAR, player VARCHAR)
SELECT position FROM table_20170644_3 WHERE college = "Regina"
What position is the player who went to Regina?
CREATE TABLE table_20170644_3 (position VARCHAR, college VARCHAR)
SELECT opponent_in_the_final FROM table_name_69 WHERE score = "6–3, 2–6, 7–5"
What was the opponent in the final when the score was 6–3, 2–6, 7–5?
CREATE TABLE table_name_69 (opponent_in_the_final VARCHAR, score VARCHAR)
SELECT COUNT(original_air_date) FROM table_20046379_3 WHERE no_in_series = "35"
On how many different dates did the episode with series number 35 air for the first time?
CREATE TABLE table_20046379_3 (original_air_date VARCHAR, no_in_series VARCHAR)
SELECT DISTINCT Registration_Date, Election_Cycle FROM VOTING_RECORD
Report the distinct registration date and the election cycle.
CREATE TABLE VOTING_RECORD (Registration_Date VARCHAR, Election_Cycle VARCHAR)
SELECT prefix FROM table_name_75 WHERE formula = "rsor'"
What is the prefix for the formula of Rsor'?
CREATE TABLE table_name_75 (prefix VARCHAR, formula VARCHAR)
SELECT resolution FROM table_name_65 WHERE active_pixels = "6726 x 5040" AND model = "afi 7"
What is the resolution of the camera that has 6726 x 5040 pixels and a model of afi 7?
CREATE TABLE table_name_65 (resolution VARCHAR, active_pixels VARCHAR, model VARCHAR)
SELECT run_2 FROM table_name_9 WHERE rank = "4"
Which Run 2 has a Rank of 4?
CREATE TABLE table_name_9 (run_2 VARCHAR, rank VARCHAR)
SELECT team FROM table_name_58 WHERE qual_2 < 59.612 AND best = 59.14
Which team has a qualifying 2 time under 59.612 and a best of 59.14?
CREATE TABLE table_name_58 (team VARCHAR, qual_2 VARCHAR, best VARCHAR)
SELECT player FROM table_name_40 WHERE money___$__ < 387 AND score = 73 - 76 - 74 - 72 = 295
What is Player, when Money ( $ ) is less than 387, and when Score is "73-76-74-72=295"?
CREATE TABLE table_name_40 (player VARCHAR, money___$__ VARCHAR, score VARCHAR)
SELECT MIN(102) FROM table_name_78 WHERE "friendly" = "friendly" AND austria = "greece"
What is the smallest number for 102 when Friendly of friendly, and an Austria of greece?
CREATE TABLE table_name_78 (austria VARCHAR)
SELECT country FROM table_name_92 WHERE to_par = "+1" AND score = 69 - 70 - 72 = 211
What country is the player ho had a To par of +1 and a score of 69-70-72=211 from?
CREATE TABLE table_name_92 (country VARCHAR, to_par VARCHAR, score VARCHAR)
SELECT SUM(agricultural_panel) FROM table_name_26 WHERE nominated_by_the_taoiseach > 6 AND total > 60
Which Agricultural Panel has a Nominated by the Taoiseach larger than 6, and a Total larger than 60?
CREATE TABLE table_name_26 (agricultural_panel INTEGER, nominated_by_the_taoiseach VARCHAR, total VARCHAR)
SELECT COUNT(combined_gross_enrollment_ratio__2009_) FROM table_25042332_33 WHERE hdi = "0.896"
How many regions had an hdi of 0.896?
CREATE TABLE table_25042332_33 (combined_gross_enrollment_ratio__2009_ VARCHAR, hdi VARCHAR)
SELECT tapered_grind FROM table_16731248_1 WHERE engine = "SureStart"
Is there a tapered grind on the Surestart engine?
CREATE TABLE table_16731248_1 (tapered_grind VARCHAR, engine VARCHAR)
SELECT margin_of_victory FROM table_name_71 WHERE winning_score = –10(69 - 68 - 74 - 67 = 278)
Who were the runner(s)-up when the winning score was –10 (69-68-74-67=278)?
CREATE TABLE table_name_71 (margin_of_victory VARCHAR, winning_score VARCHAR)
SELECT MAX(played) FROM table_name_51 WHERE points = 37 AND goals_conceded > 17
When goals conceded is greater than 17 with 37 points, what is the greatest played?
CREATE TABLE table_name_51 (played INTEGER, points VARCHAR, goals_conceded VARCHAR)
SELECT music FROM table_name_99 WHERE score = "13 (5, 4, 4)"
What was the music for the team who earned a score of 13 (5, 4, 4)?
CREATE TABLE table_name_99 (music VARCHAR, score VARCHAR)
SELECT protein_identity FROM table_16849531_2 WHERE length__bp_aa_ = "5304bp/377aa"
What is the protein identity with a length of 5304bp/377aa?
CREATE TABLE table_16849531_2 (protein_identity VARCHAR, length__bp_aa_ VARCHAR)
SELECT position FROM table_name_99 WHERE team_from = "ottawa 67's" AND pick__number < 47
Which Position has a Team from of ottawa 67's, and a Pick # smaller than 47?
CREATE TABLE table_name_99 (position VARCHAR, team_from VARCHAR, pick__number VARCHAR)
SELECT surface FROM table_name_46 WHERE opponent_in_the_final = "yaroslava shvedova"
What is the Surface of the match against Yaroslava Shvedova?
CREATE TABLE table_name_46 (surface VARCHAR, opponent_in_the_final VARCHAR)
SELECT name FROM table_name_90 WHERE wins < 3 AND matches < 15
What are the names of those who made less than 3 wins in 15 matches?
CREATE TABLE table_name_90 (name VARCHAR, wins VARCHAR, matches VARCHAR)
SELECT high_assists FROM table_27723526_10 WHERE date = "January 27"
Who had the high assist total on january 27?
CREATE TABLE table_27723526_10 (high_assists VARCHAR, date VARCHAR)
SELECT rank FROM table_name_47 WHERE gold = "9" AND silver = "9"
What is the rank of the games that had 9 gold and 9 silvers?
CREATE TABLE table_name_47 (rank VARCHAR, gold VARCHAR, silver VARCHAR)
SELECT mens_doubles FROM table_28211988_4 WHERE season = "1963/64"
Name the winners of the mens doubles in the season of 1963/64.
CREATE TABLE table_28211988_4 (mens_doubles VARCHAR, season VARCHAR)
SELECT MAX(losses) FROM table_name_33 WHERE wins > 11 AND goal_difference > 5 AND position = 3 AND draws > 3
What is the highest losses for more than 11 wins, a goal difference greater than 5, a 3 position, and more than 3 draws?
CREATE TABLE table_name_33 (losses INTEGER, draws VARCHAR, position VARCHAR, wins VARCHAR, goal_difference VARCHAR)
SELECT away_team FROM table_name_16 WHERE attendance = "76"
Who was the away team when the attendance was 76?
CREATE TABLE table_name_16 (away_team VARCHAR, attendance VARCHAR)
SELECT score FROM table_name_96 WHERE location = "richfield coliseum"
Which Score has a Location of richfield coliseum?
CREATE TABLE table_name_96 (score VARCHAR, location VARCHAR)
SELECT percentage__2006_ FROM table_189893_1 WHERE mother_tongue = "Polish"
What is every value for percentage(2006) with a Polish mother tongue?
CREATE TABLE table_189893_1 (percentage__2006_ VARCHAR, mother_tongue VARCHAR)
SELECT home_team FROM table_name_21 WHERE venue = "lake oval"
What is the home team of Lake Oval?
CREATE TABLE table_name_21 (home_team VARCHAR, venue VARCHAR)
SELECT opponent FROM table_name_71 WHERE time = "0:29"
Which opponent had a time of 0:29?
CREATE TABLE table_name_71 (opponent VARCHAR, time VARCHAR)
SELECT skip FROM table_name_45 WHERE third = "tony angiboust"
Which Skip has a Third of tony angiboust?
CREATE TABLE table_name_45 (skip VARCHAR, third VARCHAR)
SELECT product_id FROM product_suppliers ORDER BY total_amount_purchased DESC LIMIT 3
What are the ids of the top three products that were purchased in the largest amount?
CREATE TABLE product_suppliers (product_id VARCHAR, total_amount_purchased VARCHAR)
SELECT COUNT(females___percentage_) FROM table_name_1 WHERE females_rank < 21 AND state = "kerala" AND males_rank > 1
How many Females (%) have Females Rank smaller than 21, and a State of kerala, and Males Rank larger than 1?
CREATE TABLE table_name_1 (females___percentage_ VARCHAR, males_rank VARCHAR, females_rank VARCHAR, state VARCHAR)
SELECT worship_leader FROM table_name_33 WHERE lead_supporting_vocal = "marcus temu"
Who was the worship leader that had a lead supporting vocal Marcus Temu?
CREATE TABLE table_name_33 (worship_leader VARCHAR, lead_supporting_vocal VARCHAR)
SELECT 2008 FROM table_name_32 WHERE 2011 = "1r"
What is the 2008 entry for the row that as a 2011 entry of 1R?
CREATE TABLE table_name_32 (Id VARCHAR)
SELECT record FROM table_name_37 WHERE game = 56
What's the record of Game 56?
CREATE TABLE table_name_37 (record VARCHAR, game VARCHAR)
SELECT date_of_appointment FROM table_27374004_4 WHERE replaced_by = "Hugo Broos"
When was the date of appointment by Hugo Broos?
CREATE TABLE table_27374004_4 (date_of_appointment VARCHAR, replaced_by VARCHAR)
SELECT format FROM table_name_81 WHERE date = 1993 AND catalog = "cleo 2481-2"
Which Format has a Date of 1993, and a Catalog of cleo 2481-2?
CREATE TABLE table_name_81 (format VARCHAR, date VARCHAR, catalog VARCHAR)
SELECT result FROM table_name_49 WHERE year < 2010 AND tournament = "hypo-meeting"
What is the result of the hypo-meeting before 2010?
CREATE TABLE table_name_49 (result VARCHAR, year VARCHAR, tournament VARCHAR)
SELECT winning_score FROM table_name_93 WHERE date = "oct 22, 2000"
What is the Winning score on oct 22, 2000?
CREATE TABLE table_name_93 (winning_score VARCHAR, date VARCHAR)
SELECT result FROM table_name_39 WHERE competition = "2007 gulf cup of nations"
What was the result of the 2007 gulf cup of nations?
CREATE TABLE table_name_39 (result VARCHAR, competition VARCHAR)
SELECT us_viewers__million_ FROM table_19229713_6 WHERE production_code = "5.09"
How many u.s. viewers (million) have the production code of 5.09?
CREATE TABLE table_19229713_6 (us_viewers__million_ VARCHAR, production_code VARCHAR)
SELECT week_1 FROM table_name_67 WHERE week_3 = "36"
Name the week 3 of 36
CREATE TABLE table_name_67 (week_1 VARCHAR, week_3 VARCHAR)
SELECT church_name FROM table_name_94 WHERE sub_parish__sokn_ = "fresvik"
What is the church in the Sub-Parish of Fresvik called?
CREATE TABLE table_name_94 (church_name VARCHAR, sub_parish__sokn_ VARCHAR)
SELECT country FROM competition EXCEPT SELECT country FROM competition WHERE competition_type = 'Friendly'
Find the countries that have never participated in any competition with Friendly type.
CREATE TABLE competition (country VARCHAR, competition_type VARCHAR)
SELECT COUNT(avg_finish) FROM table_2169966_2 WHERE avg_start = "20.7"
How many years did he have an average start of 20.7?
CREATE TABLE table_2169966_2 (avg_finish VARCHAR, avg_start VARCHAR)
SELECT total_score FROM table_name_68 WHERE location = "san francisco, california" AND year > 1987 AND to_par_[a_] = "+1"
What is the total score for a location of san francisco, california, and a year after 1987, and a to pa [a] of +1?
CREATE TABLE table_name_68 (total_score VARCHAR, location VARCHAR, year VARCHAR, to_par_ VARCHAR, a_ VARCHAR)
SELECT birth_date FROM table_19900792_1 WHERE player = "Alexey Kuleshov"
When was Alexey Kuleshov born?
CREATE TABLE table_19900792_1 (birth_date VARCHAR, player VARCHAR)
SELECT MAX(year) FROM table_name_15 WHERE notes = "celebrity guest alongside yg family"
What is the highest Year, when Notes is "Celebrity Guest Alongside YG Family"?
CREATE TABLE table_name_15 (year INTEGER, notes VARCHAR)
SELECT event FROM table_name_51 WHERE total = "28"
Which event had a total of 28?
CREATE TABLE table_name_51 (event VARCHAR, total VARCHAR)
SELECT attendance FROM table_name_51 WHERE home_team = "chester city"
what is the attendance when the home team is chester city?
CREATE TABLE table_name_51 (attendance VARCHAR, home_team VARCHAR)
SELECT COUNT(placings) FROM table_name_1 WHERE points < 330.84 AND name = "silvo svajger"
How many Placings have Points smaller than 330.84, and a Name of silvo svajger?
CREATE TABLE table_name_1 (placings VARCHAR, points VARCHAR, name VARCHAR)
SELECT event FROM table_name_2 WHERE opponent = "kendall grove"
which Event that has an Opponent of kendall grove?
CREATE TABLE table_name_2 (event VARCHAR, opponent VARCHAR)
SELECT MIN(crowd) FROM table_name_83 WHERE away_team = "essendon"
What is the least amount of people that attended a game when Essendon was the away team?
CREATE TABLE table_name_83 (crowd INTEGER, away_team VARCHAR)
SELECT home_team AS score FROM table_name_25 WHERE venue = "kardinia park"
What is the home team score that played at Kardinia Park?
CREATE TABLE table_name_25 (home_team VARCHAR, venue VARCHAR)
SELECT age__before_ FROM table_22860_1 WHERE maghreb = "Maarifiense"
What are all ages for Maghreb is Maarifiense?
CREATE TABLE table_22860_1 (age__before_ VARCHAR, maghreb VARCHAR)
SELECT date FROM table_name_40 WHERE loss = "flanagan (6-7)"
On what date was the Loss by Flanagan (6-7)?
CREATE TABLE table_name_40 (date VARCHAR, loss VARCHAR)
SELECT date FROM table_name_64 WHERE away_team = "sydney spirit"
When was the game that had Sydney Spirit as the away team?
CREATE TABLE table_name_64 (date VARCHAR, away_team VARCHAR)
SELECT density__hab__km²__ FROM table_name_61 WHERE altitude_m = "1300"
What is the density (hab/ km²) when the altitude m is 1300?
CREATE TABLE table_name_61 (density__hab__km²__ VARCHAR, altitude_m VARCHAR)
SELECT rhel_release_date FROM table_1500146_1 WHERE scientific_linux_release = "3.0.4"
When is the rhel release date when scientific linux release is 3.0.4
CREATE TABLE table_1500146_1 (rhel_release_date VARCHAR, scientific_linux_release VARCHAR)
SELECT AVG(Num_of_Audience) FROM festival_detail
What is the average number of audience for festivals?
CREATE TABLE festival_detail (Num_of_Audience INTEGER)
SELECT to_par FROM table_name_55 WHERE place = "t9" AND country = "spain"
Which To par has a Place in t9 and a Country of Spain?
CREATE TABLE table_name_55 (to_par VARCHAR, place VARCHAR, country VARCHAR)
SELECT equivalence_in_varas FROM table_26538461_2 WHERE english_name = "Geometrical pace"
Name the equivalence for varas for geometrical pace
CREATE TABLE table_26538461_2 (equivalence_in_varas VARCHAR, english_name VARCHAR)
SELECT AVG(total) FROM table_name_36 WHERE to_par = 15
Can you tell me the average Total that has the To par of 15?
CREATE TABLE table_name_36 (total INTEGER, to_par VARCHAR)
SELECT AVG(pick) FROM table_name_76 WHERE player = "marc lewis (lhp)" AND round < 20
What is the mean pick when the play is Marc Lewis (lhp) and the round is less than 20?
CREATE TABLE table_name_76 (pick INTEGER, player VARCHAR, round VARCHAR)
SELECT COUNT(area__acres__) FROM table_30120556_1 WHERE townland = "Glasvaunta"
How many items appear in the area column when Glasvaunta is the townland?
CREATE TABLE table_30120556_1 (area__acres__ VARCHAR, townland VARCHAR)