answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT launched FROM table_name_31 WHERE time_elapsed = "1991 days (5 yr, 5 mo, 12 d)"
CREATE TABLE table_name_31 (launched VARCHAR, time_elapsed VARCHAR)
What Launched has Time elapsed of 1991 days (5 yr, 5 mo, 12 d)?
SELECT closest_approach FROM table_name_54 WHERE launched = "3 july 1998"
CREATE TABLE table_name_54 (closest_approach VARCHAR, launched VARCHAR)
With a Launched of 3 July 1998 what is the Closest approach?
SELECT launched FROM table_name_56 WHERE spacecraft = "ulysses" AND time_elapsed = "491 days (1 yr, 4 mo, 3 d)"
CREATE TABLE table_name_56 (launched VARCHAR, spacecraft VARCHAR, time_elapsed VARCHAR)
What Launched has both a Spacecraft of Ulysses and 491 days (1 yr, 4 mo, 3 d) as Time elapsed?
SELECT karen_handel FROM table_name_45 WHERE eric_johnson = "13%" AND undecided = "22%"
CREATE TABLE table_name_45 (karen_handel VARCHAR, eric_johnson VARCHAR, undecided VARCHAR)
What percentage is Karen Handel at in the poll in which Eric Johnson is 13% and undecided is 22%?
SELECT poll_source FROM table_name_49 WHERE nathan_deal = "13%" AND john_oxendine = "28%"
CREATE TABLE table_name_49 (poll_source VARCHAR, nathan_deal VARCHAR, john_oxendine VARCHAR)
In what poll is Nathan Deal at 13% and John Oxendine at 28%?
SELECT eric_johnson FROM table_name_38 WHERE karen_handel = "12%"
CREATE TABLE table_name_38 (eric_johnson VARCHAR, karen_handel VARCHAR)
What is Eric Johnson at in the poll where Karen Handel is at 12%?
SELECT poll_source FROM table_name_67 WHERE john_oxendine = "32%"
CREATE TABLE table_name_67 (poll_source VARCHAR, john_oxendine VARCHAR)
In what poll is John Oxendine at 32%?
SELECT john_oxendine FROM table_name_75 WHERE karen_handel = "38%"
CREATE TABLE table_name_75 (john_oxendine VARCHAR, karen_handel VARCHAR)
What is John Oxendine at in the poll where Karen Handel is at 38%?
SELECT karen_handel FROM table_name_78 WHERE poll_source = "insideradvantage" AND john_oxendine = "15%"
CREATE TABLE table_name_78 (karen_handel VARCHAR, poll_source VARCHAR, john_oxendine VARCHAR)
What is Karen Handel polling at in the Insideradvantage poll where John Oxendine is at 15%?
SELECT score FROM table_name_6 WHERE year = "1991"
CREATE TABLE table_name_6 (score VARCHAR, year VARCHAR)
What was the 1991 score?
SELECT venue FROM table_name_18 WHERE winner = "gary cowan" AND year = "1966"
CREATE TABLE table_name_18 (venue VARCHAR, winner VARCHAR, year VARCHAR)
Where was the 1966 competition with a winner of Gary Cowan held?
SELECT runner_up FROM table_name_55 WHERE venue = "minikahda club"
CREATE TABLE table_name_55 (runner_up VARCHAR, venue VARCHAR)
Who was the runner-up of the competition played at Minikahda Club?
SELECT MAX(year) FROM table_name_16 WHERE next_highest_spender = "aarp" AND us_cham_spending = "$39,805,000" AND us_cham_rank > 1
CREATE TABLE table_name_16 (year INTEGER, us_cham_rank VARCHAR, next_highest_spender VARCHAR, us_cham_spending VARCHAR)
Which Year is the highest one that has a Next Highest Spender of aarp, and a US Cham Spending of $39,805,000, and a US Cham Rank larger than 1?
SELECT MIN(us_cham_rank) FROM table_name_94 WHERE next_highest_spender = "national assn of realtors" AND year < 2012
CREATE TABLE table_name_94 (us_cham_rank INTEGER, next_highest_spender VARCHAR, year VARCHAR)
Which US Cham Rank is the lowest one that has a Next Highest Spender of national assn of realtors, and a Year smaller than 2012?
SELECT MIN(year) FROM table_name_16 WHERE us_cham_rank < 1
CREATE TABLE table_name_16 (year INTEGER, us_cham_rank INTEGER)
Which Year is the lowest one that has a US Cham Rank smaller than 1?
SELECT score_in_final FROM table_name_21 WHERE tournament_name = "eckerd open"
CREATE TABLE table_name_21 (score_in_final VARCHAR, tournament_name VARCHAR)
What was the Score in Final of the Eckerd Open Tournament?
SELECT partner FROM table_name_62 WHERE tournament_name = "united airlines tournament (1)"
CREATE TABLE table_name_62 (partner VARCHAR, tournament_name VARCHAR)
Who was the Partner in the United Airlines Tournament (1)?
SELECT score_in_final FROM table_name_59 WHERE date = "february 19, 1989"
CREATE TABLE table_name_59 (score_in_final VARCHAR, date VARCHAR)
What was the Score in Final on February 19, 1989?
SELECT points FROM table_name_91 WHERE place = 9
CREATE TABLE table_name_91 (points VARCHAR, place VARCHAR)
What are the Points when the Place is 9?
SELECT COUNT(place) FROM table_name_88 WHERE singer = "mariza ikonomi" AND points > 20
CREATE TABLE table_name_88 (place VARCHAR, singer VARCHAR, points VARCHAR)
What is the total for the place when the singer is Mariza Ikonomi when points are larger than 20?
SELECT Double AS non_suited_match FROM table_name_74 WHERE suited_match = "13:1"
CREATE TABLE table_name_74 (Double VARCHAR, suited_match VARCHAR)
With a Suited Match of 13:1, what is the Double Non-Suited Match?
SELECT suited_match FROM table_name_44 WHERE house_edge = "2.99%"
CREATE TABLE table_name_44 (suited_match VARCHAR, house_edge VARCHAR)
What's the Suited Match with a 2.99% House Edge?
SELECT Double AS non_suited_match FROM table_name_99 WHERE non_suited_match = "3:1" AND house_edge = "3.53%"
CREATE TABLE table_name_99 (Double VARCHAR, non_suited_match VARCHAR, house_edge VARCHAR)
With a house edge of 3.53% and a Non-Suited Matched of 3:1, name the Double Non-Suited Match.
SELECT non_suited_match FROM table_name_60 WHERE number_of_decks > 6
CREATE TABLE table_name_60 (non_suited_match VARCHAR, number_of_decks INTEGER)
Name the Non-Suited Match that has greater than 6 Number of Decks.
SELECT Suited + non_suited_match FROM table_name_80 WHERE house_edge = "2.99%"
CREATE TABLE table_name_80 (Suited VARCHAR, non_suited_match VARCHAR, house_edge VARCHAR)
Name the Suited & Non-Suited Match with a 2.99% for House Edge.
SELECT Double AS non_suited_match FROM table_name_1 WHERE non_suited_match = "4:1" AND house_edge = "3.63%"
CREATE TABLE table_name_1 (Double VARCHAR, non_suited_match VARCHAR, house_edge VARCHAR)
With a House Edge of 3.63% and a Non-Suited Match of 4:1, what is the Double Non-Suited Match?
SELECT SUM(year) FROM table_name_16 WHERE wins < 0
CREATE TABLE table_name_16 (year INTEGER, wins INTEGER)
Wins smaller than 0 had what sum of year?
SELECT MIN(wins) FROM table_name_95 WHERE class = "125cc" AND year < 1966
CREATE TABLE table_name_95 (wins INTEGER, class VARCHAR, year VARCHAR)
Class of 125cc, and a Year smaller than 1966 had what lowest wins?
SELECT AVG(year) FROM table_name_75 WHERE class = "500cc" AND wins < 0
CREATE TABLE table_name_75 (year INTEGER, class VARCHAR, wins VARCHAR)
Class of 500cc, and a Wins smaller than 0 had what average year?
SELECT MAX(laps) FROM table_name_58 WHERE driver = "kazuki nakajima" AND grid > 19
CREATE TABLE table_name_58 (laps INTEGER, driver VARCHAR, grid VARCHAR)
What are the highest laps Kazuki Nakajima did with a Grid larger than 19?
SELECT constructor FROM table_name_87 WHERE grid = 17
CREATE TABLE table_name_87 (constructor VARCHAR, grid VARCHAR)
Which Constructor has a Grid of 17?
SELECT driver FROM table_name_37 WHERE grid > 2 AND constructor = "bmw sauber" AND time_retired = "+15.037"
CREATE TABLE table_name_37 (driver VARCHAR, time_retired VARCHAR, grid VARCHAR, constructor VARCHAR)
Who drives a BMW Sauber with a Grid larger than 2 and a Time/Retired of +15.037?
SELECT AVG(year) FROM table_name_11 WHERE participation_as = "actor, film editor"
CREATE TABLE table_name_11 (year INTEGER, participation_as VARCHAR)
Participation as of actor, film editor has what average year?
SELECT odds FROM table_name_14 WHERE finish = "1/4h"
CREATE TABLE table_name_14 (odds VARCHAR, finish VARCHAR)
What were the odds for the finish of 1/4h?
SELECT MIN(last_1_4) FROM table_name_30 WHERE time = "1:53.2" AND odds = "*1.30"
CREATE TABLE table_name_30 (last_1_4 INTEGER, time VARCHAR, odds VARCHAR)
What is the lowest last quarter with a time of 1:53.2 and odds of *1.30?
SELECT AVG(gold) FROM table_name_3 WHERE total = 11 AND silver > 2
CREATE TABLE table_name_3 (gold INTEGER, total VARCHAR, silver VARCHAR)
What is the average number of Gold when the total is 11 with more than 2 silver?
SELECT COUNT(rank) FROM table_name_88 WHERE total < 2 AND silver > 0
CREATE TABLE table_name_88 (rank VARCHAR, total VARCHAR, silver VARCHAR)
What is the total rank with more than 0 silver and less than 2 medals total?
SELECT bronze FROM table_name_91 WHERE total < 2
CREATE TABLE table_name_91 (bronze VARCHAR, total INTEGER)
What is the value of bronze with less than 2 in total?
SELECT COUNT(rank) FROM table_name_26 WHERE total > 2 AND bronze < 4
CREATE TABLE table_name_26 (rank VARCHAR, total VARCHAR, bronze VARCHAR)
What number of rank has more than 2 medals in total with less than 4 bronze?
SELECT building FROM table_name_22 WHERE status = "proposed" AND floors = 32
CREATE TABLE table_name_22 (building VARCHAR, status VARCHAR, floors VARCHAR)
what is a building that is proposed and will have 32 floors?
SELECT AVG(best) FROM table_name_21 WHERE name = "marcus marshall"
CREATE TABLE table_name_21 (best INTEGER, name VARCHAR)
What is the best time for marcus marshall?
SELECT MAX(best) FROM table_name_58 WHERE team = "rusport" AND qual_2 = "1:10.166"
CREATE TABLE table_name_58 (best INTEGER, team VARCHAR, qual_2 VARCHAR)
What is the best time for a rusport driver with a qual 2 time of 1:10.166?
SELECT team FROM table_name_92 WHERE qual_2 = "58.385"
CREATE TABLE table_name_92 (team VARCHAR, qual_2 VARCHAR)
What team had a qual 2 time of 58.385?
SELECT COUNT(university_of_dublin) FROM table_name_94 WHERE agricultural_panel = 0 AND nominated_by_the_taoiseach > 0 AND industrial_and_commercial_panel < 0
CREATE TABLE table_name_94 (university_of_dublin VARCHAR, industrial_and_commercial_panel VARCHAR, agricultural_panel VARCHAR, nominated_by_the_taoiseach VARCHAR)
What is the total for University of Dublin, having a panel of 0 for agricultural, was nominated by Taoiseach more than 0, and an industrial and commercial panel less than 0?
SELECT AVG(agricultural_panel) FROM table_name_16 WHERE national_university_of_ireland < 0
CREATE TABLE table_name_16 (agricultural_panel INTEGER, national_university_of_ireland INTEGER)
What is the average for the agricultural panel that has a National University of Ireland less than 0?
SELECT MIN(university_of_dublin) FROM table_name_93 WHERE administrative_panel = 3 AND cultural_and_educational_panel < 2
CREATE TABLE table_name_93 (university_of_dublin INTEGER, administrative_panel VARCHAR, cultural_and_educational_panel VARCHAR)
What is the lowest number for the University of Dublin, having and administrative panel of 3, and a Cultural and Educational panel less than 2?
SELECT record FROM table_name_59 WHERE game_site = "memorial stadium" AND date = "september 19, 1965"
CREATE TABLE table_name_59 (record VARCHAR, game_site VARCHAR, date VARCHAR)
What was the record at Memorial Stadium on September 19, 1965?
SELECT MAX(attendance) FROM table_name_51 WHERE game_site = "memorial stadium" AND date = "december 12, 1965"
CREATE TABLE table_name_51 (attendance INTEGER, game_site VARCHAR, date VARCHAR)
What is the largest attendance at Memorial Stadium on December 12, 1965?
SELECT MAX(extra_points) FROM table_name_97 WHERE player = "herman everhardus" AND field_goals > 0
CREATE TABLE table_name_97 (extra_points INTEGER, player VARCHAR, field_goals VARCHAR)
Which Extra points is the highest one that has a Player of herman everhardus, and a Field goals larger than 0?
SELECT SUM(extra_points) FROM table_name_45 WHERE points < 12 AND player = "chuck bernard" AND touchdowns > 1
CREATE TABLE table_name_45 (extra_points INTEGER, touchdowns VARCHAR, points VARCHAR, player VARCHAR)
Which Extra points has Points smaller than 12, and a Player of chuck bernard, and Touchdowns larger than 1?
SELECT SUM(field_goals) FROM table_name_45 WHERE touchdowns < 3 AND player = "willis ward" AND extra_points < 0
CREATE TABLE table_name_45 (field_goals INTEGER, extra_points VARCHAR, touchdowns VARCHAR, player VARCHAR)
How many Field goals have Touchdowns smaller than 3, and a Player of willis ward, and an Extra points smaller than 0?
SELECT AVG(extra_points) FROM table_name_35 WHERE points < 6
CREATE TABLE table_name_35 (extra_points INTEGER, points INTEGER)
Whicih Extra points are the average ones that have Points smaller than 6?
SELECT position FROM table_name_27 WHERE round = 7
CREATE TABLE table_name_27 (position VARCHAR, round VARCHAR)
Which position is round 7?
SELECT college_junior_club_team__league_ FROM table_name_92 WHERE position = "goaltender"
CREATE TABLE table_name_92 (college_junior_club_team__league_ VARCHAR, position VARCHAR)
Which college has a position of goaltender?
SELECT MAX(round) FROM table_name_91 WHERE player = "darryl fedorak"
CREATE TABLE table_name_91 (round INTEGER, player VARCHAR)
What is Darryl Fedorak's highest round?
SELECT nationality FROM table_name_86 WHERE round > 8
CREATE TABLE table_name_86 (nationality VARCHAR, round INTEGER)
What nationality has a higher round than 8?
SELECT connection_with_australia FROM table_name_74 WHERE connection_with_america = "born in the u.s.; mother is u.s. citizen"
CREATE TABLE table_name_74 (connection_with_australia VARCHAR, connection_with_america VARCHAR)
What is the connection with Australia when the connection with America shows born in the u.s.; mother is u.s. citizen?
SELECT notable_for FROM table_name_23 WHERE connection_with_australia = "born in australia" AND name = "rick springfield"
CREATE TABLE table_name_23 (notable_for VARCHAR, connection_with_australia VARCHAR, name VARCHAR)
What is the person born in Australia, rick springfield notable for?
SELECT born___died FROM table_name_93 WHERE connection_with_australia = "family moved to australia at age 6"
CREATE TABLE table_name_93 (born___died VARCHAR, connection_with_australia VARCHAR)
What is the Born–Died for the person whose family moved to Australia at age 6?
SELECT MAX(date) FROM table_name_64 WHERE cores_per_die___dies_per_module = "2 / 1" AND clock = "1.4-1.6ghz"
CREATE TABLE table_name_64 (date INTEGER, cores_per_die___dies_per_module VARCHAR, clock VARCHAR)
What is the latest date with Cores per die / Dies per module of 2 / 1, and a Clock of 1.4-1.6ghz?
SELECT process FROM table_name_61 WHERE date > 2000 AND clock = "1.4-1.6ghz"
CREATE TABLE table_name_61 (process VARCHAR, date VARCHAR, clock VARCHAR)
Which process has a date later than 2000 and a Clock of 1.4-1.6ghz?
SELECT date FROM table_name_61 WHERE clock = "0.8-1.6ghz"
CREATE TABLE table_name_61 (date VARCHAR, clock VARCHAR)
Which date has a Clock of 0.8-1.6ghz?
SELECT record FROM table_name_15 WHERE date = "may 21"
CREATE TABLE table_name_15 (record VARCHAR, date VARCHAR)
What was the record on May 21?
SELECT date FROM table_name_98 WHERE attendance = "24,976"
CREATE TABLE table_name_98 (date VARCHAR, attendance VARCHAR)
On what date was the attendance 24,976?
SELECT date FROM table_name_79 WHERE record = "21-26"
CREATE TABLE table_name_79 (date VARCHAR, record VARCHAR)
On what date was the record 21-26?
SELECT attendance FROM table_name_21 WHERE loss = "prokopec (2-7)"
CREATE TABLE table_name_21 (attendance VARCHAR, loss VARCHAR)
How many were in attendance with a loss of Prokopec (2-7)?
SELECT opponent FROM table_name_74 WHERE date = "may 20"
CREATE TABLE table_name_74 (opponent VARCHAR, date VARCHAR)
Who was the opponent on May 20?
SELECT tournament FROM table_name_13 WHERE date = "apr 6"
CREATE TABLE table_name_13 (tournament VARCHAR, date VARCHAR)
What is the tournament on Apr 6?
SELECT 1 AS st_prize___$__ FROM table_name_95 WHERE location = "scotland"
CREATE TABLE table_name_95 (location VARCHAR)
What is the 1st prize of the tournament in Scotland?
SELECT location FROM table_name_68 WHERE tournament = "sea pines heritage classic"
CREATE TABLE table_name_68 (location VARCHAR, tournament VARCHAR)
What is the location of the Sea Pines Heritage Classic tournament?
SELECT score FROM table_name_16 WHERE tournament = "tournament players championship"
CREATE TABLE table_name_16 (score VARCHAR, tournament VARCHAR)
What is the score of the Tournament Players Championship?
SELECT 1 AS st_prize___$__ FROM table_name_69 WHERE tournament = "u.s. open"
CREATE TABLE table_name_69 (tournament VARCHAR)
What is the 1st prize at the U.S. Open?
SELECT AVG(1 AS st_prize___) AS $__ FROM table_name_47 WHERE score = "279 (–9)"
CREATE TABLE table_name_47 (score VARCHAR)
What is the average first prize of the tournament with a score of 279 (–9)?
SELECT MIN(1 AS st_prize___) AS $__ FROM table_name_18 WHERE location = "california" AND tournament = "mercedes championships"
CREATE TABLE table_name_18 (location VARCHAR, tournament VARCHAR)
What is the lowest first prize of the Mercedes Championships tournament in California?
SELECT AVG(capacity) FROM table_name_29 WHERE team = "kommunalnik"
CREATE TABLE table_name_29 (capacity INTEGER, team VARCHAR)
What is the average capacity for the venue where the team kommunalnik played?
SELECT position_in_1999 FROM table_name_71 WHERE venue = "central, gomel"
CREATE TABLE table_name_71 (position_in_1999 VARCHAR, venue VARCHAR)
What is the position of the team that played at the venue, Central, Gomel?
SELECT position_in_1999 FROM table_name_70 WHERE capacity > 6 OFFSET 500
CREATE TABLE table_name_70 (position_in_1999 VARCHAR, capacity INTEGER)
What is the position of the team that played at the venue with more than 6,500 capacity?
SELECT MIN(assists) FROM table_name_71 WHERE pims = 70 AND goals < 19
CREATE TABLE table_name_71 (assists INTEGER, pims VARCHAR, goals VARCHAR)
What is the smallest number of assists with 70 Pims and less than 19 goals?
SELECT MIN(assists) FROM table_name_17 WHERE name = "ben duggan" AND points < 7
CREATE TABLE table_name_17 (assists INTEGER, name VARCHAR, points VARCHAR)
What is the smallest number of assists for Ben Duggan with less than 7 points?
SELECT year FROM table_name_77 WHERE national_champion = "rhode island"
CREATE TABLE table_name_77 (year VARCHAR, national_champion VARCHAR)
In what Year was Rhode Island the National Champion?
SELECT runner_up FROM table_name_59 WHERE host = "monroe county sports commission"
CREATE TABLE table_name_59 (runner_up VARCHAR, host VARCHAR)
What was the Runner-up in the Monroe County Sports Commission?
SELECT location FROM table_name_3 WHERE runner_up = "tbd"
CREATE TABLE table_name_3 (location VARCHAR, runner_up VARCHAR)
At what Location was the Runner-up TBD?
SELECT location FROM table_name_71 WHERE host = "robert morris university (illinois)" AND national_champion = "lindenwood"
CREATE TABLE table_name_71 (location VARCHAR, host VARCHAR, national_champion VARCHAR)
At what Location did Robert Morris University (Illinois) Host the Lindenwood National Chamption?
SELECT runner_up FROM table_name_53 WHERE national_champion = "ohio" AND location = "tucson, az"
CREATE TABLE table_name_53 (runner_up VARCHAR, national_champion VARCHAR, location VARCHAR)
What was the Runner-up with Ohio as the National Champion in Tucson, AZ?
SELECT graphics FROM table_name_43 WHERE vram = "512mb"
CREATE TABLE table_name_43 (graphics VARCHAR, vram VARCHAR)
Which graphics spec has a VRAM spec of 512MB?
SELECT msrp FROM table_name_2 WHERE storage = "128-512 gb ssd"
CREATE TABLE table_name_2 (msrp VARCHAR, storage VARCHAR)
What is the MSRP for the laptop with storage of 128-512 GB SSD?
SELECT opponent FROM table_name_25 WHERE game = 5
CREATE TABLE table_name_25 (opponent VARCHAR, game VARCHAR)
Name the opponent for game 5
SELECT status FROM table_name_17 WHERE name = "cadeby"
CREATE TABLE table_name_17 (status VARCHAR, name VARCHAR)
What status is shown for Cadeby?
SELECT former_local_authority FROM table_name_96 WHERE name = "ecclesfield"
CREATE TABLE table_name_96 (former_local_authority VARCHAR, name VARCHAR)
What is the Former local authority for Ecclesfield?
SELECT status FROM table_name_83 WHERE name = "mexborough"
CREATE TABLE table_name_83 (status VARCHAR, name VARCHAR)
What is the Status of Mexborough?
SELECT score FROM table_name_36 WHERE date = "december 1"
CREATE TABLE table_name_36 (score VARCHAR, date VARCHAR)
What is the score on December 1?
SELECT skip FROM table_name_63 WHERE second = "oliver dupont"
CREATE TABLE table_name_63 (skip VARCHAR, second VARCHAR)
Which skip has Oliver Dupont as a second?
SELECT second FROM table_name_91 WHERE third = "jean-michel arsenault"
CREATE TABLE table_name_91 (second VARCHAR, third VARCHAR)
Which second's third is Jean-Michel Arsenault?
SELECT skip FROM table_name_1 WHERE third = "steffen walstad"
CREATE TABLE table_name_1 (skip VARCHAR, third VARCHAR)
Which skip's third is Steffen Walstad?
SELECT skip FROM table_name_51 WHERE second = "martin hejhal"
CREATE TABLE table_name_51 (skip VARCHAR, second VARCHAR)
Which skip's second is Martin Hejhal?
SELECT skip FROM table_name_17 WHERE lead = "gordon mcdougall"
CREATE TABLE table_name_17 (skip VARCHAR, lead VARCHAR)
Which skip's lead is Gordon McDougall?
SELECT second FROM table_name_10 WHERE skip = "chris plys"
CREATE TABLE table_name_10 (second VARCHAR, skip VARCHAR)
Which second's skip is Chris Plys?
SELECT SUM(poles) FROM table_name_39 WHERE class = "125cc" AND team = "matteoni racing team" AND points > 3
CREATE TABLE table_name_39 (poles INTEGER, points VARCHAR, class VARCHAR, team VARCHAR)
How many Poles have a Class of 125cc, and a Team of matteoni racing team, and Points larger than 3?
SELECT SUM(podiums) FROM table_name_18 WHERE class = "250cc" AND f_laps = 0
CREATE TABLE table_name_18 (podiums INTEGER, class VARCHAR, f_laps VARCHAR)
How many Podiums have a Class of 250cc, and an F laps of 0?
SELECT COUNT(average) FROM table_name_20 WHERE team = "elgin city" AND highest < 537
CREATE TABLE table_name_20 (average VARCHAR, team VARCHAR, highest VARCHAR)
Team of elgin city, and a Highest smaller than 537 had what total number of average?