question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What is the maximum money list rank for Matt Hansen?
CREATE TABLE table_24747844_2 (money_list_rank INTEGER, player VARCHAR)
SELECT MAX(money_list_rank) FROM table_24747844_2 WHERE player = "Matt Hansen"
What is the minimum money list rank for the players having a best finish of T9?
CREATE TABLE table_24747844_2 (money_list_rank INTEGER, best_finish VARCHAR)
SELECT MIN(money_list_rank) FROM table_24747844_2 WHERE best_finish = "T9"
What is the minimum number of starts for the players having a best finish of T18?
CREATE TABLE table_24747844_2 (starts INTEGER, best_finish VARCHAR)
SELECT MIN(starts) FROM table_24747844_2 WHERE best_finish = "T18"
What is the minimum number of cuts made for Hunter Mahan?
CREATE TABLE table_24747844_2 (cuts_made INTEGER, player VARCHAR)
SELECT MIN(cuts_made) FROM table_24747844_2 WHERE player = "Hunter Mahan"
What was the profession of the celebrity who was featured on season 15 and finished 7th place?
CREATE TABLE table_24775967_1 (notability_profession VARCHAR, season VARCHAR, finish VARCHAR)
SELECT notability_profession FROM table_24775967_1 WHERE season = 15 AND finish = "7th"
When winner is the outcome what is the score?
CREATE TABLE table_24901152_2 (score VARCHAR, outcome VARCHAR)
SELECT score FROM table_24901152_2 WHERE outcome = "Winner"
When us open (2) is the championship what is the surface?
CREATE TABLE table_24901152_2 (surface VARCHAR, championship VARCHAR)
SELECT surface FROM table_24901152_2 WHERE championship = "US Open (2)"
When Australian open is the championship what is the lowest year?
CREATE TABLE table_24901152_2 (year INTEGER, championship VARCHAR)
SELECT MIN(year) FROM table_24901152_2 WHERE championship = "Australian Open"
When alicia molik is the partner what is the outcome?
CREATE TABLE table_24901152_2 (outcome VARCHAR, partner VARCHAR)
SELECT outcome FROM table_24901152_2 WHERE partner = "Alicia Molik"
When did they win 7 races?
CREATE TABLE table_24937583_1 (seasons VARCHAR, wins VARCHAR)
SELECT seasons FROM table_24937583_1 WHERE wins = 7
What were the starts when the points dropped 18?
CREATE TABLE table_24937583_1 (races__starts_ VARCHAR, points__dropped_points_ VARCHAR)
SELECT races__starts_ FROM table_24937583_1 WHERE points__dropped_points_ = "18"
What is the minimum amount of poles?
CREATE TABLE table_24937583_1 (poles INTEGER)
SELECT MIN(poles) FROM table_24937583_1
What was the least amount of wins?
CREATE TABLE table_24937583_1 (wins INTEGER)
SELECT MIN(wins) FROM table_24937583_1
What is the value for congi core 1 if the code name is Redwood and core clock(mhz) is 500?
CREATE TABLE table_25005714_3 (config_core_1 VARCHAR, code_name VARCHAR, core_clock___mhz__ VARCHAR)
SELECT config_core_1 FROM table_25005714_3 WHERE code_name = "Redwood" AND core_clock___mhz__ = "500"
What is every bus type for the texture of fillrate?
CREATE TABLE table_25005714_3 (bus_type VARCHAR, texture___gt__s_ VARCHAR)
SELECT bus_type FROM table_25005714_3 WHERE texture___gt__s_ = "Fillrate"
What is every code name for the model Radeon HD 6650m?
CREATE TABLE table_25005714_3 (code_name VARCHAR, model VARCHAR)
SELECT code_name FROM table_25005714_3 WHERE model = "Radeon HD 6650M"
What place is there a change of -19.3?
CREATE TABLE table_2500440_1 (name VARCHAR, change___percentage_ VARCHAR)
SELECT COUNT(name) FROM table_2500440_1 WHERE change___percentage_ = "-19.3"
What is the density per km in Smoky Lake County?
CREATE TABLE table_2500440_1 (population_density__per_km_2__ VARCHAR, municipal_district VARCHAR)
SELECT population_density__per_km_2__ FROM table_2500440_1 WHERE municipal_district = "Smoky Lake County"
What is the population per km2 in Fishing Lake?
CREATE TABLE table_2500440_1 (population_density__per_km_2__ VARCHAR, name VARCHAR)
SELECT population_density__per_km_2__ FROM table_2500440_1 WHERE name = "Fishing Lake"
What is the population density in Buffalo Lake?
CREATE TABLE table_2500440_1 (population_density__per_km_2__ VARCHAR, name VARCHAR)
SELECT population_density__per_km_2__ FROM table_2500440_1 WHERE name = "Buffalo Lake"
How many years was lynn muscarella the high school principal and charlie wiltse the superintendent?
CREATE TABLE table_25037577_1 (year VARCHAR, high_school_principal VARCHAR, superintendent VARCHAR)
SELECT COUNT(year) FROM table_25037577_1 WHERE high_school_principal = "Lynn Muscarella" AND superintendent = "Charlie Wiltse"
Who were the superintendent(s) when the middle school principal was alan degroote, the gorham principal was paul lahue, and the year was 2006-2007?
CREATE TABLE table_25037577_1 (superintendent VARCHAR, year VARCHAR, middle_school_principal VARCHAR, gorham_principal VARCHAR)
SELECT superintendent FROM table_25037577_1 WHERE middle_school_principal = "Alan Degroote" AND gorham_principal = "Paul Lahue" AND year = "2006-2007"
Who was the gorham principal in 2010-2011?
CREATE TABLE table_25037577_1 (gorham_principal VARCHAR, year VARCHAR)
SELECT gorham_principal FROM table_25037577_1 WHERE year = "2010-2011"
How many middlesex principals were there in 2000-2001?
CREATE TABLE table_25037577_1 (middlesex_principal VARCHAR, year VARCHAR)
SELECT COUNT(middlesex_principal) FROM table_25037577_1 WHERE year = "2000-2001"
How many high school principals were there in 2000-2001?
CREATE TABLE table_25037577_1 (high_school_principal VARCHAR, year VARCHAR)
SELECT high_school_principal FROM table_25037577_1 WHERE year = "2000-2001"
Who were the middle school principal(s) in 2010-2011?
CREATE TABLE table_25037577_1 (middle_school_principal VARCHAR, year VARCHAR)
SELECT middle_school_principal FROM table_25037577_1 WHERE year = "2010-2011"
When Mark Cavendish wins sprint classification and Maarten Tjallingii wins most courageous, who wins youth classification?
CREATE TABLE table_25055040_22 (youth_classification VARCHAR, sprint_classification VARCHAR, most_courageous VARCHAR)
SELECT youth_classification FROM table_25055040_22 WHERE sprint_classification = "Mark Cavendish" AND most_courageous = "Maarten Tjallingii"
Who won the mountains classification when Maarten Tjallingii won most corageous?
CREATE TABLE table_25055040_22 (mountains_classification VARCHAR, most_courageous VARCHAR)
SELECT mountains_classification FROM table_25055040_22 WHERE most_courageous = "Maarten Tjallingii"
When Brett Lancaster won the general classification, who won the team calssification?
CREATE TABLE table_25055040_22 (team_classification VARCHAR, general_classification VARCHAR)
SELECT team_classification FROM table_25055040_22 WHERE general_classification = "Brett Lancaster"
When Peter Sagan won the youth classification and Thomas Rabou won the most corageous, who won the sprint classification?
CREATE TABLE table_25055040_22 (sprint_classification VARCHAR, youth_classification VARCHAR, most_courageous VARCHAR)
SELECT sprint_classification FROM table_25055040_22 WHERE youth_classification = "Peter Sagan" AND most_courageous = "Thomas Rabou"
When Yaroslav Popovych won most corageous, who won the mountains classification?
CREATE TABLE table_25055040_22 (mountains_classification VARCHAR, most_courageous VARCHAR)
SELECT mountains_classification FROM table_25055040_22 WHERE most_courageous = "Yaroslav Popovych"
When Ryan Anderson won the mountains classification, and Michael Rogers won the general classification, who won the sprint classification?
CREATE TABLE table_25055040_22 (sprint_classification VARCHAR, mountains_classification VARCHAR, general_classification VARCHAR)
SELECT sprint_classification FROM table_25055040_22 WHERE mountains_classification = "Ryan Anderson" AND general_classification = "Michael Rogers"
What the rank in the top 10 when the winnings were $1,741,176?
CREATE TABLE table_2506300_1 (top_10 INTEGER, winnings VARCHAR)
SELECT MIN(top_10) FROM table_2506300_1 WHERE winnings = "$1,741,176"
when the gdp per emissions (in us dollars per ton) is 3903, what is the maximum annual co2 emissions (in thousands of metric tons)?
CREATE TABLE table_2508175_1 (annual_co2_emissions__in_thousands_of_metric_tons_ INTEGER, gdp_per_emissions__in_us_dollars_per_ton_ VARCHAR)
SELECT MAX(annual_co2_emissions__in_thousands_of_metric_tons_) FROM table_2508175_1 WHERE gdp_per_emissions__in_us_dollars_per_ton_ = 3903
when the annual co2 emissions (in thousands of metric tons) is 1811, what is the country?
CREATE TABLE table_2508175_1 (country VARCHAR, annual_co2_emissions__in_thousands_of_metric_tons_ VARCHAR)
SELECT country FROM table_2508175_1 WHERE annual_co2_emissions__in_thousands_of_metric_tons_ = 1811
What pick number did the buffalo bills get?
CREATE TABLE table_2508633_5 (pick__number VARCHAR, nfl_team VARCHAR)
SELECT pick__number FROM table_2508633_5 WHERE nfl_team = "Buffalo Bills"
What was bruce baldwin's pick #?
CREATE TABLE table_2508633_5 (pick__number VARCHAR, player VARCHAR)
SELECT pick__number FROM table_2508633_5 WHERE player = "Bruce Baldwin"
What is the highest pick number the los angeles raiders got?
CREATE TABLE table_2508633_5 (pick__number INTEGER, nfl_team VARCHAR)
SELECT MAX(pick__number) FROM table_2508633_5 WHERE nfl_team = "Los Angeles Raiders"
Which player did the green bay packers pick?
CREATE TABLE table_2508633_5 (player VARCHAR, nfl_team VARCHAR)
SELECT player FROM table_2508633_5 WHERE nfl_team = "Green Bay Packers"
How many players did the philadelphia eagles pick?
CREATE TABLE table_2508633_5 (position VARCHAR, nfl_team VARCHAR)
SELECT COUNT(position) FROM table_2508633_5 WHERE nfl_team = "Philadelphia Eagles"
Mame the reg season for 2001
CREATE TABLE table_2511876_1 (reg_season VARCHAR, year VARCHAR)
SELECT reg_season FROM table_2511876_1 WHERE year = 2001
Name the league for 2003
CREATE TABLE table_2511876_1 (league VARCHAR, year VARCHAR)
SELECT league FROM table_2511876_1 WHERE year = 2003
Name the number of playoffs for 3rd round
CREATE TABLE table_2511876_1 (playoffs VARCHAR, open_cup VARCHAR)
SELECT COUNT(playoffs) FROM table_2511876_1 WHERE open_cup = "3rd Round"
Name the total number of years for usisl pro league
CREATE TABLE table_2511876_1 (year VARCHAR, league VARCHAR)
SELECT COUNT(year) FROM table_2511876_1 WHERE league = "USISL Pro league"
Name the playoffs for usisl select league
CREATE TABLE table_2511876_1 (playoffs VARCHAR, league VARCHAR)
SELECT playoffs FROM table_2511876_1 WHERE league = "USISL Select league"
What position did the driver earn 31 points?
CREATE TABLE table_25146455_1 (position VARCHAR, points VARCHAR)
SELECT position FROM table_25146455_1 WHERE points = 31
In what series did Bobby Labonte drive?
CREATE TABLE table_25146455_1 (series VARCHAR, driver VARCHAR)
SELECT series FROM table_25146455_1 WHERE driver = "Bobby Labonte"
In what position was the driver who won $60,000?
CREATE TABLE table_25146455_1 (position INTEGER, winnings VARCHAR)
SELECT MIN(position) FROM table_25146455_1 WHERE winnings = "$60,000"
How much did Jeff Burton win?
CREATE TABLE table_25146455_1 (winnings VARCHAR, driver VARCHAR)
SELECT winnings FROM table_25146455_1 WHERE driver = "Jeff Burton"
How much did Kenny Brack win?
CREATE TABLE table_25146455_1 (winnings VARCHAR, driver VARCHAR)
SELECT winnings FROM table_25146455_1 WHERE driver = "Kenny Brack"
what is the special edition for the english version of james baskett?
CREATE TABLE table_25173505_13 (special_edition VARCHAR, english_version VARCHAR)
SELECT special_edition FROM table_25173505_13 WHERE english_version = "James Baskett"
what is the special edition where the english version is nick stewart?
CREATE TABLE table_25173505_13 (special_edition VARCHAR, english_version VARCHAR)
SELECT special_edition FROM table_25173505_13 WHERE english_version = "Nick Stewart"
what is the english version that is buena vista edition is daisuke gouri?
CREATE TABLE table_25173505_13 (english_version VARCHAR, buena_vista_edition VARCHAR)
SELECT english_version FROM table_25173505_13 WHERE buena_vista_edition = "Daisuke Gouri"
who is the character where the special edition is koichi sakaguchi?
CREATE TABLE table_25173505_13 (character VARCHAR, special_edition VARCHAR)
SELECT character FROM table_25173505_13 WHERE special_edition = "Koichi Sakaguchi"
who is the buena vista edidtion where special edition is koichi sakaguchi?
CREATE TABLE table_25173505_13 (buena_vista_edition VARCHAR, special_edition VARCHAR)
SELECT buena_vista_edition FROM table_25173505_13 WHERE special_edition = "Koichi Sakaguchi"
How many contestants were there when the runner-up was Monique Evans?
CREATE TABLE table_25214321_1 (contestants INTEGER, runner_up VARCHAR)
SELECT MAX(contestants) FROM table_25214321_1 WHERE runner_up = "Monique Evans"
How many contestants were there when the runner-up was Sérgio Abreu?
CREATE TABLE table_25214321_1 (contestants INTEGER, runner_up VARCHAR)
SELECT MAX(contestants) FROM table_25214321_1 WHERE runner_up = "Sérgio Abreu"
In what season was the winner Dado Dolabella?
CREATE TABLE table_25214321_1 (season INTEGER, winner VARCHAR)
SELECT MAX(season) FROM table_25214321_1 WHERE winner = "Dado Dolabella"
Who was the winner when Mateus Rocha finished in 3rd place?
CREATE TABLE table_25214321_1 (winner VARCHAR, third_place VARCHAR)
SELECT winner FROM table_25214321_1 WHERE third_place = "Mateus Rocha"
In what season did Raquel Pacheco finish in third place?
CREATE TABLE table_25214321_1 (season VARCHAR, third_place VARCHAR)
SELECT season FROM table_25214321_1 WHERE third_place = "Raquel Pacheco"
Who finished in third place when the winner was Karina Bacchi?
CREATE TABLE table_25214321_1 (third_place VARCHAR, winner VARCHAR)
SELECT third_place FROM table_25214321_1 WHERE winner = "Karina Bacchi"
List the branding name for channel tv-62.
CREATE TABLE table_2523809_1 (branding VARCHAR, channel VARCHAR)
SELECT branding FROM table_2523809_1 WHERE channel = "TV-62"
Which area did estrella tv 62 provide coverage for?
CREATE TABLE table_2523809_1 (coverage VARCHAR, branding VARCHAR)
SELECT coverage FROM table_2523809_1 WHERE branding = "Estrella TV 62"
List the power output for Phoenix.
CREATE TABLE table_2523809_1 (power__kw_ VARCHAR, coverage VARCHAR)
SELECT power__kw_ FROM table_2523809_1 WHERE coverage = "Phoenix"
List the branding for krca-tv.
CREATE TABLE table_2523809_1 (branding VARCHAR, callsign VARCHAR)
SELECT branding FROM table_2523809_1 WHERE callsign = "KRCA-TV"
What's the power output for channel tv-29?
CREATE TABLE table_2523809_1 (power__kw_ VARCHAR, channel VARCHAR)
SELECT power__kw_ FROM table_2523809_1 WHERE channel = "TV-29"
Which city did kpnz-tv provide coverage for?
CREATE TABLE table_2523809_1 (coverage VARCHAR, callsign VARCHAR)
SELECT coverage FROM table_2523809_1 WHERE callsign = "KPNZ-TV"
What is the maximum renewable energy (gw×h) for the state of Delaware?
CREATE TABLE table_25244412_1 (renewable_electricity__gw INTEGER, state VARCHAR)
SELECT MAX(renewable_electricity__gw) AS •h_ FROM table_25244412_1 WHERE state = "Delaware"
Which state has 5179 (gw×h) of renewable energy without hydrogen power?wha
CREATE TABLE table_25244412_1 (state VARCHAR, renewable_electricity_w_o_hydro__gw•h_ VARCHAR)
SELECT state FROM table_25244412_1 WHERE renewable_electricity_w_o_hydro__gw•h_ = 5179
When renewable electricity is 5760 (gw×h) what is the minimum amount of renewable elecrrixity without hydrogen power?
CREATE TABLE table_25244412_1 (renewable_electricity_w_o_hydro__gw INTEGER, renewable_electricity__gw•h_ VARCHAR)
SELECT MIN(renewable_electricity_w_o_hydro__gw) AS •h_ FROM table_25244412_1 WHERE renewable_electricity__gw•h_ = 5760
What is the amount of renewable electricity without hydrogen power when the percentage of renewable energy is 83.4?
CREATE TABLE table_25244412_1 (renewable_electricity_w_o_hydro__gw•h_ VARCHAR, _percentage_renewable VARCHAR)
SELECT renewable_electricity_w_o_hydro__gw•h_ FROM table_25244412_1 WHERE _percentage_renewable = "83.4"
Which states have renewable electricity equal to 9667 (gw×h)?
CREATE TABLE table_25244412_1 (state VARCHAR, renewable_electricity__gw•h_ VARCHAR)
SELECT state FROM table_25244412_1 WHERE renewable_electricity__gw•h_ = 9667
What is shown for august 21-22 when november 3 is november 3, 1994?
CREATE TABLE table_25252080_3 (august_21_22 VARCHAR, november_3 VARCHAR)
SELECT august_21_22 FROM table_25252080_3 WHERE november_3 = "november_3, 1994"
What is the number for march 27-29 whern november 3 is 153?
CREATE TABLE table_25252080_3 (march_27_29 VARCHAR, november_3 VARCHAR)
SELECT march_27_29 FROM table_25252080_3 WHERE november_3 = "153"
What number is shown for january 15-16 when november 3 is 133?
CREATE TABLE table_25252080_3 (january_15_16 VARCHAR, november_3 VARCHAR)
SELECT january_15_16 FROM table_25252080_3 WHERE november_3 = "133"
What is shown for november 3 when june 10-11 is june 10, 1964?
CREATE TABLE table_25252080_3 (november_3 VARCHAR, june_10_11 VARCHAR)
SELECT november_3 FROM table_25252080_3 WHERE june_10_11 = "June 10, 1964"
november 3 where march 27-29 is 149?
CREATE TABLE table_25252080_3 (november_3 VARCHAR, march_27_29 VARCHAR)
SELECT november_3 FROM table_25252080_3 WHERE march_27_29 = "149"
What number is shown for november 3 where january 15-16 is 151?
CREATE TABLE table_25252080_3 (november_3 VARCHAR, january_15_16 VARCHAR)
SELECT november_3 FROM table_25252080_3 WHERE january_15_16 = "151"
What year were outputs is 2x pro bias, rca loop out and notes is vacuum tube released?
CREATE TABLE table_25276250_3 (release_year VARCHAR, outputs VARCHAR, notes VARCHAR)
SELECT release_year FROM table_25276250_3 WHERE outputs = "2x Pro Bias, RCA Loop Out" AND notes = "Vacuum tube"
How many outputs are there for solid state, battery operated for portable use listed in notes?
CREATE TABLE table_25276250_3 (outputs VARCHAR, notes VARCHAR)
SELECT COUNT(outputs) FROM table_25276250_3 WHERE notes = "Solid state, battery operated for portable use"
Who sang for the movie Amar Deep?
CREATE TABLE table_2528382_5 (singer VARCHAR, movie_album VARCHAR)
SELECT singer FROM table_2528382_5 WHERE movie_album = "Amar Deep"
What movie did Vijayalaxmi Co-star in and Shakeel Badayuni write the lyrics?
CREATE TABLE table_2528382_5 (movie_album VARCHAR, co_stars VARCHAR, lyricist VARCHAR)
SELECT movie_album FROM table_2528382_5 WHERE co_stars = "VijayaLaxmi" AND lyricist = "Shakeel Badayuni"
What year did Naushad Direct the Music?
CREATE TABLE table_2528382_5 (year INTEGER, music_director VARCHAR)
SELECT MAX(year) FROM table_2528382_5 WHERE music_director = "Naushad"
How many co-singers were there when Parveen Babi co-starred?
CREATE TABLE table_2528382_5 (singers VARCHAR, Co VARCHAR, co_stars VARCHAR)
SELECT COUNT(Co) - singers FROM table_2528382_5 WHERE co_stars = "Parveen Babi"
What movie did Bela Bose co-star in?
CREATE TABLE table_2528382_5 (movie_album VARCHAR, co_stars VARCHAR)
SELECT movie_album FROM table_2528382_5 WHERE co_stars = "Bela Bose"
Who wrote the lyrics when Jeevankala co-starred?
CREATE TABLE table_2528382_5 (lyricist VARCHAR, co_stars VARCHAR)
SELECT lyricist FROM table_2528382_5 WHERE co_stars = "Jeevankala"
How many episodes are written by Lew Schneider?
CREATE TABLE table_25356350_2 (series__number VARCHAR, written_by VARCHAR)
SELECT COUNT(series__number) FROM table_25356350_2 WHERE written_by = "Lew Schneider"
What is the title of the episode written by Jack Orman?
CREATE TABLE table_25356350_2 (title VARCHAR, written_by VARCHAR)
SELECT title FROM table_25356350_2 WHERE written_by = "Jack Orman"
How many viewers (in millions) did episode 1 have?
CREATE TABLE table_25356350_2 (viewers__in_millions_ VARCHAR, series__number VARCHAR)
SELECT viewers__in_millions_ FROM table_25356350_2 WHERE series__number = 1
How many games played catagories are there for Lauren McGee?
CREATE TABLE table_25401874_1 (games_played VARCHAR, name VARCHAR)
SELECT COUNT(games_played) FROM table_25401874_1 WHERE name = "Lauren McGee"
How many numbers belong to the player with 10 assists?
CREATE TABLE table_25401874_1 (number VARCHAR, assists VARCHAR)
SELECT COUNT(number) FROM table_25401874_1 WHERE assists = 10
How many names are listed for the player with 50 points?
CREATE TABLE table_25401874_1 (name VARCHAR, points VARCHAR)
SELECT COUNT(name) FROM table_25401874_1 WHERE points = 50
What type of school is in swarthmore, pennsylvania?
CREATE TABLE table_254776_1 (type VARCHAR, location VARCHAR)
SELECT type FROM table_254776_1 WHERE location = "Swarthmore, Pennsylvania"
When was Dickinson College founded?
CREATE TABLE table_254776_1 (founded VARCHAR, institution VARCHAR)
SELECT founded FROM table_254776_1 WHERE institution = "Dickinson College"
How many F.L. are listed for Formula Three Euroseries?
CREATE TABLE table_25548630_1 (fl VARCHAR, series VARCHAR)
SELECT COUNT(fl) FROM table_25548630_1 WHERE series = "Formula Three Euroseries"
What are the most poles listed?
CREATE TABLE table_25548630_1 (poles INTEGER)
SELECT MAX(poles) FROM table_25548630_1
What is the least amount of podiums?
CREATE TABLE table_25548630_1 (podiums INTEGER)
SELECT MIN(podiums) FROM table_25548630_1
How many points does Marussia Manor Racing have?
CREATE TABLE table_25548630_1 (points VARCHAR, team VARCHAR)
SELECT COUNT(points) FROM table_25548630_1 WHERE team = "Marussia Manor Racing"
What are all the vicinity (km²) where profits magnificence (2007) is 2nd
CREATE TABLE table_255812_1 (area__km²_ VARCHAR, income_class__2007_ VARCHAR)
SELECT area__km²_ FROM table_255812_1 WHERE income_class__2007_ = "2nd"
What are all the profits elegance (2007) in which mayor is ma. Ester a. Hamor
CREATE TABLE table_255812_1 (income_class__2007_ VARCHAR, mayor VARCHAR)
SELECT income_class__2007_ FROM table_255812_1 WHERE mayor = "Ma. Ester A. Hamor"