question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
What is the location/attendance of the game with a 3-1 record?
columns: - name: location_attendance type: VARCHAR - name: record type: VARCHAR table: table_name_1
SELECT location_attendance FROM table_name_1 WHERE record = "3-1"
What types of stations are located in Cebu?
columns: - name: station_type type: VARCHAR - name: location type: VARCHAR table: table_28794440_1
SELECT station_type FROM table_28794440_1 WHERE location = "Cebu"
What was the High points when date was February 11?
columns: - name: high_points type: VARCHAR - name: date type: VARCHAR table: table_name_55
SELECT high_points FROM table_name_55 WHERE date = "february 11"
Can you tell me the average Chapter that has Articles smaller than 15?
columns: - name: chapter type: INTEGER - name: articles type: INTEGER table: table_name_48
SELECT AVG(chapter) FROM table_name_48 WHERE articles < 15
What is the position of player Tiffany Garofano (2)?
columns: - name: position type: VARCHAR - name: player type: VARCHAR table: table_name_59
SELECT position FROM table_name_59 WHERE player = "tiffany garofano (2)"
What is the total number of bronze when gold is less than 1 and silver is more than 1?
columns: - name: bronze type: INTEGER - name: gold type: VARCHAR - name: silver type: VARCHAR table: table_name_53
SELECT SUM(bronze) FROM table_name_53 WHERE gold < 1 AND silver > 1
The cylinder layout v8 is produced in what years?
columns: - name: years_produced type: VARCHAR - name: cylinder_layout type: VARCHAR table: table_26352332_4
SELECT years_produced FROM table_26352332_4 WHERE cylinder_layout = "V8"
Which To par has $100 in money played by Vic Ghezzi?
columns: - name: to_par type: VARCHAR - name: money___$__ type: VARCHAR - name: player type: VARCHAR table: table_name_88
SELECT to_par FROM table_name_88 WHERE money___$__ = 100 AND player = "vic ghezzi"
What is the earliest year in the 125cc class with more than 102 points and a rank of 2nd?
columns: - name: year type: INTEGER - name: rank type: VARCHAR - name: class type: VARCHAR - name: points type: VARCHAR table: table_name_74
SELECT MIN(year) FROM table_name_74 WHERE class = "125cc" AND points > 102 AND rank = "2nd"
When hermann uhde is the count who is the conductor?
columns: - name: conductor type: VARCHAR - name: count type: VARCHAR table: table_29728787_1
SELECT conductor FROM table_29728787_1 WHERE count = "Hermann Uhde"
When 4 clubs are involved, what is the average number of fixtures?
columns: - name: fixtures type: INTEGER - name: clubs_involved type: VARCHAR table: table_name_3
SELECT AVG(fixtures) FROM table_name_3 WHERE clubs_involved = 4
What date has yani tseng as the runner (s)-up?
columns: - name: date type: VARCHAR - name: runner_s__up type: VARCHAR table: table_name_91
SELECT date FROM table_name_91 WHERE runner_s__up = "yani tseng"
What day did they play in week 6?
columns: - name: date type: VARCHAR - name: week type: VARCHAR table: table_name_36
SELECT date FROM table_name_36 WHERE week = 6
What is the total Rank for ümit karan when Apps is more than 39 and Rate is more than 0.58?
columns: - name: rank type: INTEGER - name: rate type: VARCHAR - name: apps type: VARCHAR - name: player type: VARCHAR table: table_name_15
SELECT SUM(rank) FROM table_name_15 WHERE apps > 39 AND player = "ümit karan" AND rate > 0.58
How many colleges provided players with positions LB?
columns: - name: college type: VARCHAR - name: position type: VARCHAR table: table_25085059_3
SELECT COUNT(college) FROM table_25085059_3 WHERE position = "LB"
What nation was Pageos 1 from?
columns: - name: nation type: VARCHAR - name: satellite type: VARCHAR table: table_2150068_1
SELECT nation FROM table_2150068_1 WHERE satellite = "PAGEOS 1"
How many locations were recorded when the opponent Columbus Blue Jackets?
columns: - name: location type: VARCHAR - name: opponent type: VARCHAR table: table_17360840_9
SELECT COUNT(location) FROM table_17360840_9 WHERE opponent = "Columbus Blue Jackets"
What type of environment is the venue that was built in 2003?
columns: - name: environment type: VARCHAR - name: year_built type: VARCHAR table: table_name_11
SELECT environment FROM table_name_11 WHERE year_built = "2003"
What is the date of the Sydney, Australia tournament with a hard surface?
columns: - name: date type: VARCHAR - name: surface type: VARCHAR - name: tournament type: VARCHAR table: table_name_50
SELECT date FROM table_name_50 WHERE surface = "hard" AND tournament = "sydney, australia"
What is the score of the away team when the home team is Essendon?
columns: - name: away_team type: VARCHAR - name: home_team type: VARCHAR table: table_name_12
SELECT away_team AS score FROM table_name_12 WHERE home_team = "essendon"
Which Road team has a Home team of portland, and a Date of may 31?
columns: - name: road_team type: VARCHAR - name: home_team type: VARCHAR - name: date type: VARCHAR table: table_name_17
SELECT road_team FROM table_name_17 WHERE home_team = "portland" AND date = "may 31"
Who was the original artist for week number Top 16 (8 women)?
columns: - name: original_artist type: VARCHAR - name: week__number type: VARCHAR table: table_15796072_1
SELECT original_artist FROM table_15796072_1 WHERE week__number = "Top 16 (8 Women)"
What is the organized date of the stake with an occupation of senior buyer for Wal-mart?
columns: - name: organized type: VARCHAR - name: occupation type: VARCHAR table: table_name_67
SELECT organized FROM table_name_67 WHERE occupation = "senior buyer for wal-mart"
What is the rank of Club Valencia with a U-17 Caps of 20?
columns: - name: rank type: VARCHAR - name: club_s_ type: VARCHAR - name: u_17_caps type: VARCHAR table: table_name_17
SELECT COUNT(rank) FROM table_name_17 WHERE club_s_ = "valencia" AND u_17_caps = 20
What was the score for the player from the United states that was +1 to par?
columns: - name: score type: VARCHAR - name: to_par type: VARCHAR - name: country type: VARCHAR table: table_name_64
SELECT score FROM table_name_64 WHERE to_par = "+1" AND country = "united states"
How many wins in the season he finished 33rd
columns: - name: winnings type: VARCHAR - name: position type: VARCHAR table: table_1875157_1
SELECT winnings FROM table_1875157_1 WHERE position = "33rd"
What is the average Worst score for Mario Lopez as the Best dancer and Tango as the Dance?
columns: - name: worst_score type: INTEGER - name: best_dancer type: VARCHAR - name: dance type: VARCHAR table: table_name_81
SELECT AVG(worst_score) FROM table_name_81 WHERE best_dancer = "mario lopez" AND dance = "tango"
How many people attended the game where the leading scorer was Tim Duncan (24), and the home team was the Spurs?
columns: - name: attendance type: INTEGER - name: leading_scorer type: VARCHAR - name: home type: VARCHAR table: table_name_96
SELECT MIN(attendance) FROM table_name_96 WHERE leading_scorer = "tim duncan (24)" AND home = "spurs"
Which serials were issued with a design of black on yellow?
columns: - name: serials_issued type: VARCHAR - name: design type: VARCHAR table: table_name_78
SELECT serials_issued FROM table_name_78 WHERE design = "black on yellow"
Namem the number of cities that contains Voivodeship of elbląg voivodeship
columns: - name: no_of_cities type: VARCHAR - name: voivodeship type: VARCHAR table: table_name_38
SELECT no_of_cities FROM table_name_38 WHERE voivodeship = "elbląg voivodeship"
On what date was My Lord What a Mornin' recorded?
columns: - name: recording_date type: VARCHAR - name: title type: VARCHAR table: table_name_55
SELECT recording_date FROM table_name_55 WHERE title = "my lord what a mornin'"
Which Away team has Carlton for it's Home team?
columns: - name: away_team type: VARCHAR - name: home_team type: VARCHAR table: table_name_96
SELECT away_team FROM table_name_96 WHERE home_team = "carlton"
Name the points for games of 16 16
columns: - name: points type: VARCHAR - name: games type: VARCHAR table: table_name_43
SELECT points FROM table_name_43 WHERE games = "16 16"
What is Position, when Nationality is "Canada", and when Round is greater than 3?
columns: - name: position type: VARCHAR - name: nationality type: VARCHAR - name: round type: VARCHAR table: table_name_31
SELECT position FROM table_name_31 WHERE nationality = "canada" AND round > 3
Which team had an outgoing manager of Behtash Fariba?
columns: - name: team type: VARCHAR - name: outgoing_manager type: VARCHAR table: table_22297140_3
SELECT team FROM table_22297140_3 WHERE outgoing_manager = "Behtash Fariba"
Tell me the Australia march 17, 2005
columns: - name: australia type: VARCHAR - name: japan type: VARCHAR table: table_name_84
SELECT australia FROM table_name_84 WHERE japan = "march 17, 2005"
What date was the result 3-1 in Hague?
columns: - name: date type: VARCHAR - name: result type: VARCHAR - name: location type: VARCHAR table: table_name_13
SELECT date FROM table_name_13 WHERE result = "3-1" AND location = "hague"
What is the total area with the census ranking of 3,129 of 5,008, and a Population smaller than 460?
columns: - name: area_km_2 type: VARCHAR - name: census_ranking type: VARCHAR - name: population type: VARCHAR table: table_name_60
SELECT COUNT(area_km_2) FROM table_name_60 WHERE census_ranking = "3,129 of 5,008" AND population < 460
What is the name of the race on 9 July?
columns: - name: name type: VARCHAR - name: date type: VARCHAR table: table_name_72
SELECT name FROM table_name_72 WHERE date = "9 july"
what is the district where the incumbent is james a. haley?
columns: - name: district type: VARCHAR - name: incumbent type: VARCHAR table: table_1341672_10
SELECT district FROM table_1341672_10 WHERE incumbent = "James A. Haley"
Which Driver has a Grid smaller than 17, and Points larger than 0, and a Lapse of 87, and a Time/Retired of 1:48:11.023?
columns: - name: driver type: VARCHAR - name: time_retired type: VARCHAR - name: laps type: VARCHAR - name: grid type: VARCHAR - name: points type: VARCHAR table: table_name_72
SELECT driver FROM table_name_72 WHERE grid < 17 AND points > 0 AND laps = 87 AND time_retired = "1:48:11.023"
what is the time/retired when the laps is 6, the grid is less than 18 and the driver is clay regazzoni?
columns: - name: time_retired type: VARCHAR - name: driver type: VARCHAR - name: laps type: VARCHAR - name: grid type: VARCHAR table: table_name_79
SELECT time_retired FROM table_name_79 WHERE laps = 6 AND grid < 18 AND driver = "clay regazzoni"
What is the Result of the game with an Attendance of 55,353?
columns: - name: result type: VARCHAR - name: attendance type: VARCHAR table: table_name_53
SELECT result FROM table_name_53 WHERE attendance = "55,353"
What is the most gold when the rank is 7 and bronze is less than 0?
columns: - name: gold type: INTEGER - name: rank type: VARCHAR - name: bronze type: VARCHAR table: table_name_40
SELECT MAX(gold) FROM table_name_40 WHERE rank = "7" AND bronze < 0
What is the record on December 11?
columns: - name: record type: VARCHAR - name: date type: VARCHAR table: table_name_77
SELECT record FROM table_name_77 WHERE date = "december 11"
For which industry was the profit smaller than 14.2 billion and the assets larger than 2,467.9 billion?
columns: - name: industry type: VARCHAR - name: profits__billion_$_ type: VARCHAR - name: assets__billion_$_ type: VARCHAR table: table_name_83
SELECT industry FROM table_name_83 WHERE profits__billion_$_ < 14.2 AND assets__billion_$_ > 2 OFFSET 467.9
What is the total dist with Johnny Murtagh and less than 26 runners?
columns: - name: dist__f_ type: INTEGER - name: jockey type: VARCHAR - name: runners type: VARCHAR table: table_name_12
SELECT SUM(dist__f_) FROM table_name_12 WHERE jockey = "johnny murtagh" AND runners < 26
Who is born on 1982-01-29?
columns: - name: name type: VARCHAR - name: date_of_birth type: VARCHAR table: table_name_7
SELECT name FROM table_name_7 WHERE date_of_birth = "1982-01-29"
What was the Year to Open for the Dandeung Bridge?
columns: - name: year_to_open type: VARCHAR - name: name type: VARCHAR table: table_name_51
SELECT COUNT(year_to_open) FROM table_name_51 WHERE name = "dandeung bridge"
What Nickname(s) has a Location of elkville, illinois?
columns: - name: nickname_s_ type: VARCHAR - name: location type: VARCHAR table: table_name_65
SELECT nickname_s_ FROM table_name_65 WHERE location = "elkville, illinois"
What were the overall event results when Michael Demichele was runner-up?
columns: - name: results type: VARCHAR - name: runner_up type: VARCHAR table: table_name_78
SELECT results FROM table_name_78 WHERE runner_up = "michael demichele"
What is the lowest Grid for jj lehto with over 51 laps?
columns: - name: grid type: INTEGER - name: laps type: VARCHAR - name: driver type: VARCHAR table: table_name_81
SELECT MIN(grid) FROM table_name_81 WHERE laps > 51 AND driver = "jj lehto"
Which Skip has a Third of carlo alessandro zisa?
columns: - name: skip type: VARCHAR - name: third type: VARCHAR table: table_name_34
SELECT skip FROM table_name_34 WHERE third = "carlo alessandro zisa"
Wins of 0 involves what team?
columns: - name: team type: VARCHAR - name: wins type: VARCHAR table: table_name_96
SELECT team FROM table_name_96 WHERE wins = 0
What is the ranktotal number if the Hashan Tillakaratne?
columns: - name: rank type: VARCHAR - name: player type: VARCHAR table: table_26041144_16
SELECT COUNT(rank) FROM table_26041144_16 WHERE player = "Hashan Tillakaratne"
What is the place of To par of e when Arron Oberholser was the player ?
columns: - name: place type: VARCHAR - name: to_par type: VARCHAR - name: player type: VARCHAR table: table_name_66
SELECT place FROM table_name_66 WHERE to_par = "e" AND player = "arron oberholser"
What is the lowest episode # with an air date of October 31, 2001?
columns: - name: episode__number type: INTEGER - name: airdate type: VARCHAR table: table_name_42
SELECT MIN(episode__number) FROM table_name_42 WHERE airdate = "october 31, 2001"
Who were all the pictorials when the centerfold model was Rebekka Armstrong?
columns: - name: pictorials type: VARCHAR - name: centerfold_model type: VARCHAR table: table_1566848_7
SELECT COUNT(pictorials) FROM table_1566848_7 WHERE centerfold_model = "Rebekka Armstrong"
How many losses have points against less than 15?
columns: - name: lost type: VARCHAR - name: against type: INTEGER table: table_name_1
SELECT COUNT(lost) FROM table_name_1 WHERE against < 15
Which venue has 1st as the result?
columns: - name: venue type: VARCHAR - name: result type: VARCHAR table: table_name_45
SELECT venue FROM table_name_45 WHERE result = "1st"
What is the away team score for the home team listed as Footscray?
columns: - name: away_team type: VARCHAR - name: home_team type: VARCHAR table: table_name_16
SELECT away_team AS score FROM table_name_16 WHERE home_team = "footscray"
Which Laps have a Bike of kawasaki zx-6r, and a Time of +26.891?
columns: - name: laps type: INTEGER - name: bike type: VARCHAR - name: time type: VARCHAR table: table_name_14
SELECT MIN(laps) FROM table_name_14 WHERE bike = "kawasaki zx-6r" AND time = "+26.891"
what was the total for the Wolverhampton Wanderers?
columns: - name: league_goals type: VARCHAR - name: club type: VARCHAR table: table_name_61
SELECT league_goals FROM table_name_61 WHERE club = "wolverhampton wanderers"
What is the quarterfinal week for Austin Anderson?
columns: - name: qtr_final__week_ type: INTEGER - name: name_name_of_act type: VARCHAR table: table_27529608_21
SELECT MIN(qtr_final__week_) FROM table_27529608_21 WHERE name_name_of_act = "Austin Anderson"
In what city is the July temperature 23/9°c (73/48°f)?
columns: - name: city type: VARCHAR - name: july type: VARCHAR table: table_name_49
SELECT city FROM table_name_49 WHERE july = "23/9°c (73/48°f)"
Which ZX Spectrum has a C=64 of c64, and a Title of ankh?
columns: - name: zx_spectrum type: VARCHAR - name: c64 type: VARCHAR - name: title type: VARCHAR - name: c type: VARCHAR table: table_name_7
SELECT zx_spectrum FROM table_name_7 WHERE c = 64 = c64 AND title = "ankh"
What is the vote % for Cliff Breitkreuz?
columns: - name: votes__percentage type: VARCHAR - name: candidate type: VARCHAR table: table_name_24
SELECT votes__percentage FROM table_name_24 WHERE candidate = "cliff breitkreuz"
What was the attendance at the West Ham United home game?
columns: - name: attendance type: VARCHAR - name: home_team type: VARCHAR table: table_name_69
SELECT attendance FROM table_name_69 WHERE home_team = "west ham united"
WHAT ARE THE GOALS WITH DRAWS SMALLER THAN 6, AND LOSSES SMALLER THAN 7?
columns: - name: goals_for type: INTEGER - name: draws type: VARCHAR - name: losses type: VARCHAR table: table_name_9
SELECT AVG(goals_for) FROM table_name_9 WHERE draws < 6 AND losses < 7
What is the highest run 2 of athlete eric neilson, who has a run 3 larger than 55.97?
columns: - name: run_2 type: INTEGER - name: athlete type: VARCHAR - name: run_3 type: VARCHAR table: table_name_54
SELECT MAX(run_2) FROM table_name_54 WHERE athlete = "eric neilson" AND run_3 > 55.97
What is the rank of the swimmer named Petria Thomas?
columns: - name: rank type: VARCHAR - name: name type: VARCHAR table: table_name_34
SELECT rank FROM table_name_34 WHERE name = "petria thomas"
What is the averaged scored number of team guaraní, which has less than 6 draws and less than 5 losses?
columns: - name: scored type: INTEGER - name: losses type: VARCHAR - name: draws type: VARCHAR - name: team type: VARCHAR table: table_name_30
SELECT AVG(scored) FROM table_name_30 WHERE draws < 6 AND team = "guaraní" AND losses < 5
Name the english name for 崖城镇
columns: - name: english_name type: VARCHAR - name: simplified type: VARCHAR table: table_1638437_2
SELECT english_name FROM table_1638437_2 WHERE simplified = "崖城镇"
Which entrant has fewer than 12 points, a Climax engine, and a Lotus 24 chassis?
columns: - name: entrant type: VARCHAR - name: chassis type: VARCHAR - name: pts type: VARCHAR - name: engine type: VARCHAR table: table_name_63
SELECT entrant FROM table_name_63 WHERE pts < 12 AND engine = "climax" AND chassis = "lotus 24"
what is the mccain % where obama got 19.3%
columns: - name: mccain__percentage type: VARCHAR - name: obama__percentage type: VARCHAR table: table_20424014_1
SELECT mccain__percentage FROM table_20424014_1 WHERE obama__percentage = "19.3%"
what i the maximum number in the series where the production code is 3wab07?
columns: - name: no_in_series type: INTEGER - name: production_code type: VARCHAR table: table_20726262_4
SELECT MAX(no_in_series) FROM table_20726262_4 WHERE production_code = "3WAB07"
Which Car # has a Make of toyota, and a Pos of 7?
columns: - name: car__number type: INTEGER - name: make type: VARCHAR - name: pos type: VARCHAR table: table_name_93
SELECT AVG(car__number) FROM table_name_93 WHERE make = "toyota" AND pos = 7
what is the year for borderlands 2?
columns: - name: year type: VARCHAR - name: game type: VARCHAR table: table_name_81
SELECT year FROM table_name_81 WHERE game = "borderlands 2"
How many total viewers have April 21, 2010 as the original airing on channel 4?
columns: - name: total_viewers type: VARCHAR - name: original_airing_on_channel_4 type: VARCHAR table: table_22170495_6
SELECT COUNT(total_viewers) FROM table_22170495_6 WHERE original_airing_on_channel_4 = "April 21, 2010"
Who did the Colts play against on September 25, 1966?
columns: - name: opponent type: VARCHAR - name: date type: VARCHAR table: table_name_8
SELECT opponent FROM table_name_8 WHERE date = "september 25, 1966"
Tell me north america for january 23, 2013
columns: - name: north_america type: VARCHAR - name: japan type: VARCHAR table: table_name_83
SELECT north_america FROM table_name_83 WHERE japan = "january 23, 2013"
What is the location of South Adelaide?
columns: - name: location type: VARCHAR - name: team type: VARCHAR table: table_name_46
SELECT location FROM table_name_46 WHERE team = "south adelaide"
Tell me the result for week of 3
columns: - name: result type: VARCHAR - name: week type: VARCHAR table: table_name_33
SELECT result FROM table_name_33 WHERE week = 3
What was the Score on January 30?
columns: - name: score type: VARCHAR - name: date type: VARCHAR table: table_name_93
SELECT score FROM table_name_93 WHERE date = "january 30"
Who had the fastest lap where Joan Lascorz was the winner?
columns: - name: fastest_lap type: VARCHAR - name: race_winner type: VARCHAR table: table_name_45
SELECT fastest_lap FROM table_name_45 WHERE race_winner = "joan lascorz"
What is the Time of Driver Jan Heylen (r)?
columns: - name: time_retired type: VARCHAR - name: driver type: VARCHAR table: table_name_44
SELECT time_retired FROM table_name_44 WHERE driver = "jan heylen (r)"
what is the lowest amount of silver when the gold is less than 0?
columns: - name: silver type: INTEGER - name: gold type: INTEGER table: table_name_70
SELECT MIN(silver) FROM table_name_70 WHERE gold < 0
What year had less than 36 laps?
columns: - name: year type: VARCHAR - name: laps type: INTEGER table: table_name_17
SELECT year FROM table_name_17 WHERE laps < 36
Name the mountain range for nunavut with location of 73.2294°n 78.6233°w
columns: - name: mountain_range type: VARCHAR - name: province type: VARCHAR - name: location type: VARCHAR table: table_name_26
SELECT mountain_range FROM table_name_26 WHERE province = "nunavut" AND location = "73.2294°n 78.6233°w"
Name the syrian christians for kollam
columns: - name: syrian_christians type: VARCHAR - name: district type: VARCHAR table: table_23214055_2
SELECT syrian_christians FROM table_23214055_2 WHERE district = "Kollam"
Tell me the average gold for moldova and bronze less than 1
columns: - name: gold type: INTEGER - name: nation type: VARCHAR - name: bronze type: VARCHAR table: table_name_25
SELECT AVG(gold) FROM table_name_25 WHERE nation = "moldova" AND bronze < 1
What was marlboro brm's lowest points by using brm p160b?
columns: - name: points type: INTEGER - name: entrant type: VARCHAR - name: chassis type: VARCHAR table: table_name_60
SELECT MIN(points) FROM table_name_60 WHERE entrant = "marlboro brm" AND chassis = "brm p160b"
What is the lowest amount of money that Craig Stadler won?
columns: - name: money___ type: INTEGER - name: player type: VARCHAR table: table_name_64
SELECT MIN(money___) AS $__ FROM table_name_64 WHERE player = "craig stadler"
What Nationality is Dave Hynes?
columns: - name: nationality type: VARCHAR - name: player type: VARCHAR table: table_name_74
SELECT nationality FROM table_name_74 WHERE player = "dave hynes"
Who won at Krško?
columns: - name: winners type: VARCHAR - name: venue type: VARCHAR table: table_name_25
SELECT winners FROM table_name_25 WHERE venue = "krško"
What is the sum of To Par, when Country is "United States", and when Year(s) Won is "1973"?
columns: - name: to_par type: INTEGER - name: country type: VARCHAR - name: year_s__won type: VARCHAR table: table_name_23
SELECT SUM(to_par) FROM table_name_23 WHERE country = "united states" AND year_s__won = "1973"
What is Games, when Points is less than 340, and when Rank is greater than 3?
columns: - name: games type: VARCHAR - name: points type: VARCHAR - name: rank type: VARCHAR table: table_name_89
SELECT games FROM table_name_89 WHERE points < 340 AND rank > 3
What other cadidate ran against Dave Treen?
columns: - name: candidates type: VARCHAR - name: incumbent type: VARCHAR table: table_1341663_19
SELECT candidates FROM table_1341663_19 WHERE incumbent = "Dave Treen"
In Round 10, what was the Overall for Ed Tomlin?
columns: - name: overall type: INTEGER - name: round type: VARCHAR - name: name type: VARCHAR table: table_name_45
SELECT AVG(overall) FROM table_name_45 WHERE round = 10 AND name = "ed tomlin"
How many pageants were in san fernando, pampanga?
columns: - name: pageant type: VARCHAR - name: hometown type: VARCHAR table: table_1825751_14
SELECT COUNT(pageant) FROM table_1825751_14 WHERE hometown = "San Fernando, Pampanga"