question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
When the united states won a total number of medals larger than 25, what was the lowest amount of Bronze medals won?
CREATE TABLE table_name_61 (bronze INTEGER, nation VARCHAR, total VARCHAR)
SELECT MIN(bronze) FROM table_name_61 WHERE nation = "united states" AND total > 25
What is the %FPv for the Workers' Party?
CREATE TABLE table_name_3 (_percentage_fpv VARCHAR, party VARCHAR)
SELECT _percentage_fpv FROM table_name_3 WHERE party = "workers' party"
What's the n Africa in 2012 with an N/A as the CPLP?
CREATE TABLE table_name_54 (n_africa_rank VARCHAR, year VARCHAR, cplp_rank VARCHAR)
SELECT n_africa_rank FROM table_name_54 WHERE year = 2012 AND cplp_rank = "n/a"
What was the earliest round that Purdue had a pick larger than 10?
CREATE TABLE table_name_16 (round INTEGER, college VARCHAR, pick VARCHAR)
SELECT MIN(round) FROM table_name_16 WHERE college = "purdue" AND pick > 10
What is the highest total for evm votes
CREATE TABLE table_24051013_3 (total_evm_votes INTEGER)
SELECT MAX(total_evm_votes) FROM table_24051013_3
What is the number of against when the difference is 10 and played is greater than 8?
CREATE TABLE table_name_3 (against VARCHAR, difference VARCHAR, played VARCHAR)
SELECT COUNT(against) FROM table_name_3 WHERE difference = "10" AND played > 8
What is the least amount of failures with 1 launch and 0 partial failures?
CREATE TABLE table_name_28 (failures INTEGER, launches VARCHAR, partial_failures VARCHAR)
SELECT MIN(failures) FROM table_name_28 WHERE launches = 1 AND partial_failures < 0
What venue featured essendon as home team?
CREATE TABLE table_name_25 (venue VARCHAR, home_team VARCHAR)
SELECT venue FROM table_name_25 WHERE home_team = "essendon"
What date was the visitor the Boston Bruins, and the record was 4–0–1?
CREATE TABLE table_name_25 (date VARCHAR, visitor VARCHAR, record VARCHAR)
SELECT date FROM table_name_25 WHERE visitor = "boston bruins" AND record = "4–0–1"
What was the original title of Run for Money?
CREATE TABLE table_18162883_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT original_title FROM table_18162883_1 WHERE film_title_used_in_nomination = "Run for Money"
What type of settlemen is Krušedol Selo?
CREATE TABLE table_2562572_50 (type VARCHAR, settlement VARCHAR)
SELECT type FROM table_2562572_50 WHERE settlement = "Krušedol Selo"
Who is the general classification leader for stage 3?
CREATE TABLE table_14710984_2 (general_classification VARCHAR, stage VARCHAR)
SELECT general_classification FROM table_14710984_2 WHERE stage = 3
Where did the away team Carlton play?
CREATE TABLE table_name_2 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_2 WHERE away_team = "carlton"
Which loss has an Opponent of @ angels, and a Date of august 1?
CREATE TABLE table_name_47 (loss VARCHAR, opponent VARCHAR, date VARCHAR)
SELECT loss FROM table_name_47 WHERE opponent = "@ angels" AND date = "august 1"
Which Season has a Rank smaller than 4, and a Club of barcelona, and less than 115 goals?
CREATE TABLE table_name_61 (season VARCHAR, goals VARCHAR, rank VARCHAR, club VARCHAR)
SELECT season FROM table_name_61 WHERE rank < 4 AND club = "barcelona" AND goals < 115
What is the operator of the ensemble from Yorkshire?
CREATE TABLE table_name_99 (operator VARCHAR, region VARCHAR)
SELECT operator FROM table_name_99 WHERE region = "yorkshire"
Who had the most points in game 4?
CREATE TABLE table_23211041_5 (high_points VARCHAR, game VARCHAR)
SELECT high_points FROM table_23211041_5 WHERE game = 4
How many points did Stuart have when he had less than 1 touchdown?
CREATE TABLE table_name_80 (points INTEGER, player VARCHAR, touchdowns VARCHAR)
SELECT SUM(points) FROM table_name_80 WHERE player = "stuart" AND touchdowns < 1
What is Angelarios Angelarij with a Start of Reign date before 1986 Birth Name?
CREATE TABLE table_name_45 (Birth VARCHAR, start_of_reign VARCHAR, name VARCHAR)
SELECT Birth AS name FROM table_name_45 WHERE start_of_reign < 1986 AND name = "angelarios angelarij"
Who was the opponent at the game that had a loss of Hendrickson (0-1)?
CREATE TABLE table_name_93 (opponent VARCHAR, loss VARCHAR)
SELECT opponent FROM table_name_93 WHERE loss = "hendrickson (0-1)"
What is the average number of caps for Meralomas with positions of centre?
CREATE TABLE table_name_75 (caps INTEGER, club_province VARCHAR, position VARCHAR)
SELECT AVG(caps) FROM table_name_75 WHERE club_province = "meralomas" AND position = "centre"
Which To par has a Place of t2, and a Player of mark james?
CREATE TABLE table_name_59 (to_par VARCHAR, place VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_59 WHERE place = "t2" AND player = "mark james"
What tournament has Samantha Stosur as the opponent in the final?
CREATE TABLE table_name_99 (tournament VARCHAR, opponent_in_the_final VARCHAR)
SELECT tournament FROM table_name_99 WHERE opponent_in_the_final = "samantha stosur"
What is the nationality of the player from the University of Michigan (NCAA)?
CREATE TABLE table_1965650_11 (nationality VARCHAR, college_junior_club_team VARCHAR)
SELECT nationality FROM table_1965650_11 WHERE college_junior_club_team = "University of Michigan (NCAA)"
What language is the film La Diagonale du Fou in?
CREATE TABLE table_name_24 (language VARCHAR, original_title VARCHAR)
SELECT language FROM table_name_24 WHERE original_title = "la diagonale du fou"
What player has a t57 as the finish?
CREATE TABLE table_name_65 (player VARCHAR, finish VARCHAR)
SELECT player FROM table_name_65 WHERE finish = "t57"
Which Rank has a Silver larger than 1 and a Total larger than 13?
CREATE TABLE table_name_95 (rank VARCHAR, silver VARCHAR, total VARCHAR)
SELECT rank FROM table_name_95 WHERE silver > 1 AND total > 13
What is the Home team at corio oval?
CREATE TABLE table_name_57 (home_team VARCHAR, venue VARCHAR)
SELECT home_team FROM table_name_57 WHERE venue = "corio oval"
What college did Jamie Butt go to?
CREATE TABLE table_name_78 (college_junior_club_team__league_ VARCHAR, player VARCHAR)
SELECT college_junior_club_team__league_ FROM table_name_78 WHERE player = "jamie butt"
Which title has a year later than 1986 with an album as the format?
CREATE TABLE table_name_29 (title VARCHAR, year VARCHAR, format_s_ VARCHAR)
SELECT title FROM table_name_29 WHERE year > 1986 AND format_s_ = "album"
what is the 2010 population density for municipio ponce?
CREATE TABLE table_name_83 (municipio VARCHAR)
SELECT 2010 AS _population_density FROM table_name_83 WHERE municipio = "ponce"
Which course had a mountain stage type on 3 June?
CREATE TABLE table_name_76 (course VARCHAR, type VARCHAR, date VARCHAR)
SELECT course FROM table_name_76 WHERE type = "mountain stage" AND date = "3 june"
What is the highest Pick number that had a road number that was less than 6, featured Bob Dailey as a player, and which had a Reg GP bigger than 257?
CREATE TABLE table_name_43 (pick__number INTEGER, reg_gp VARCHAR, rd__number VARCHAR, player VARCHAR)
SELECT MAX(pick__number) FROM table_name_43 WHERE rd__number < 6 AND player = "bob dailey" AND reg_gp > 257
Show id, first and last names for all customers with at least two cards.
CREATE TABLE Customers_cards (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_id VARCHAR)
SELECT T1.customer_id, T2.customer_first_name, T2.customer_last_name FROM Customers_cards AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id HAVING COUNT(*) >= 2
Which engine scored 9 points?
CREATE TABLE table_name_85 (engine VARCHAR, points VARCHAR)
SELECT engine FROM table_name_85 WHERE points = 9
Who is the home team when the score is 81-80?
CREATE TABLE table_name_56 (home VARCHAR, score VARCHAR)
SELECT home FROM table_name_56 WHERE score = "81-80"
What region is the ALCA-272 Catalog?
CREATE TABLE table_name_88 (region VARCHAR, catalog VARCHAR)
SELECT region FROM table_name_88 WHERE catalog = "alca-272"
Name the least rank when silver is less than 1 and bronze is less than 1 with total more than 1
CREATE TABLE table_name_5 (rank INTEGER, bronze VARCHAR, silver VARCHAR, total VARCHAR)
SELECT MIN(rank) FROM table_name_5 WHERE silver < 1 AND total > 1 AND bronze < 1
Which Record has a Score of 2–4, and a Home of quebec nordiques?
CREATE TABLE table_name_23 (record VARCHAR, score VARCHAR, home VARCHAR)
SELECT record FROM table_name_23 WHERE score = "2–4" AND home = "quebec nordiques"
What is the score of the copa libertadores group 3 competition round on 2 February 1994?
CREATE TABLE table_name_11 (score VARCHAR, competition_round VARCHAR, date VARCHAR)
SELECT score FROM table_name_11 WHERE competition_round = "copa libertadores group 3" AND date = "2 february 1994"
What is the total for set 2 17-25?
CREATE TABLE table_name_80 (total VARCHAR, set_2 VARCHAR)
SELECT total FROM table_name_80 WHERE set_2 = "17-25"
How many entries are there for founded when the location was springfield, ohio?
CREATE TABLE table_24195232_1 (founded VARCHAR, location VARCHAR)
SELECT COUNT(founded) FROM table_24195232_1 WHERE location = "Springfield, Ohio"
For the match played on 7 January 1956, with away team of Accrington Stanley, who was the home team?
CREATE TABLE table_name_47 (home_team VARCHAR, date VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_47 WHERE date = "7 january 1956" AND away_team = "accrington stanley"
Which class has more than 15 people in the class?
CREATE TABLE table_name_83 (class VARCHAR, number_in_class INTEGER)
SELECT class FROM table_name_83 WHERE number_in_class > 15
What is the pennant for 4 may 1943?
CREATE TABLE table_1220125_4 (pennant VARCHAR, laid_down VARCHAR)
SELECT pennant FROM table_1220125_4 WHERE laid_down = "4 May 1943"
Which Source has a Remainder of 15%, and a Topinka of 26%?
CREATE TABLE table_name_78 (source VARCHAR, remainder VARCHAR, topinka__r_ VARCHAR)
SELECT source FROM table_name_78 WHERE remainder = "15%" AND topinka__r_ = "26%"
Which Grand Prix is located in Jerez?
CREATE TABLE table_name_25 (grand_prix VARCHAR, location VARCHAR)
SELECT grand_prix FROM table_name_25 WHERE location = "jerez"
What is the average black value (Hispanic/Non-Hispanic) having a white (Hispanic/Non-Hispanic) under 61.9, Multiracial (Hispanic/Non-Hispanic) under 12.5 and Hispanic under 99.4?
CREATE TABLE table_name_99 (black__both_hispanic_and_non_hispanic_ INTEGER, hispanic__of_any_race_ VARCHAR, white__both_hispanic_and_non_hispanic_ VARCHAR, multiracial__both_hispanic_and_non_hispanic_ VARCHAR)
SELECT AVG(black__both_hispanic_and_non_hispanic_) FROM table_name_99 WHERE white__both_hispanic_and_non_hispanic_ < 61.9 AND multiracial__both_hispanic_and_non_hispanic_ < 12.5 AND hispanic__of_any_race_ < 99.4
What is the Electorate when the term of office was 1955–1972, for Peter Howson?
CREATE TABLE table_name_16 (electorate VARCHAR, term_of_office VARCHAR, member VARCHAR)
SELECT electorate FROM table_name_16 WHERE term_of_office = "1955–1972" AND member = "peter howson"
Which teams classification winners had a general classification winner of Allan Davis?
CREATE TABLE table_28092844_16 (teams_classification VARCHAR, general_classification_żółta_koszulka VARCHAR)
SELECT teams_classification FROM table_28092844_16 WHERE general_classification_żółta_koszulka = "Allan Davis"
What is the race title of Dick Johnson Racing?
CREATE TABLE table_name_73 (race_title VARCHAR, team VARCHAR)
SELECT race_title FROM table_name_73 WHERE team = "dick johnson racing"
Who was the home team at the game played at Kardinia Park?
CREATE TABLE table_name_44 (home_team VARCHAR, venue VARCHAR)
SELECT home_team FROM table_name_44 WHERE venue = "kardinia park"
How many rounds have Fabio Carbone for fastest lap?
CREATE TABLE table_26137666_3 (round VARCHAR, fastest_lap VARCHAR)
SELECT COUNT(round) FROM table_26137666_3 WHERE fastest_lap = "Fabio Carbone"
Name the maximum enrollment for st. andrews university
CREATE TABLE table_16168849_1 (enrollment INTEGER, institution VARCHAR)
SELECT MAX(enrollment) FROM table_16168849_1 WHERE institution = "St. Andrews University"
What is Trailing Party, when Party Won is "Janata Dal", and when Year is "1996"?
CREATE TABLE table_name_74 (trailing_party VARCHAR, party_won VARCHAR, year VARCHAR)
SELECT trailing_party FROM table_name_74 WHERE party_won = "janata dal" AND year = 1996
Name the number of draws for when conceded is 25
CREATE TABLE table_14889048_1 (draws VARCHAR, conceded VARCHAR)
SELECT COUNT(draws) FROM table_14889048_1 WHERE conceded = 25
What is the netflix episode number where Segment D is high-performance engines?
CREATE TABLE table_15187735_15 (netflix VARCHAR, segment_d VARCHAR)
SELECT netflix FROM table_15187735_15 WHERE segment_d = "High-Performance Engines"
When has a Leading scorer of ricky davis (20)?
CREATE TABLE table_name_48 (date VARCHAR, leading_scorer VARCHAR)
SELECT date FROM table_name_48 WHERE leading_scorer = "ricky davis (20)"
What is Davis Love III's total?
CREATE TABLE table_name_33 (total VARCHAR, player VARCHAR)
SELECT total FROM table_name_33 WHERE player = "davis love iii"
What is the film where Hannah Gal was the director?
CREATE TABLE table_name_67 (film VARCHAR, director_s_ VARCHAR)
SELECT film FROM table_name_67 WHERE director_s_ = "hannah gal"
What was the Runner-up during the 2005-06 Season with Kiveton Park as the Winner?
CREATE TABLE table_name_88 (runner_up VARCHAR, winner VARCHAR, season VARCHAR)
SELECT runner_up FROM table_name_88 WHERE winner = "kiveton park" AND season = "2005-06"
What is the Time/Retired value for constructor Jordan - Peugeot with 66 laps and grid value 5?
CREATE TABLE table_name_50 (time_retired VARCHAR, grid VARCHAR, laps VARCHAR, constructor VARCHAR)
SELECT time_retired FROM table_name_50 WHERE laps = "66" AND constructor = "jordan - peugeot" AND grid = "5"
What was the Location/Attendance on september 11?
CREATE TABLE table_name_3 (location_attendance VARCHAR, date VARCHAR)
SELECT location_attendance FROM table_name_3 WHERE date = "september 11"
What years did the person coach who had more than 31 ties?
CREATE TABLE table_name_5 (years VARCHAR, ties INTEGER)
SELECT years FROM table_name_5 WHERE ties > 31
Show the ids of students whose advisors are professors.
CREATE TABLE Student (StuID VARCHAR, advisor VARCHAR); CREATE TABLE Faculty (FacID VARCHAR, rank VARCHAR)
SELECT T2.StuID FROM Faculty AS T1 JOIN Student AS T2 ON T1.FacID = T2.advisor WHERE T1.rank = "Professor"
What is the market value in billions when the assets totaled 1,380.88?
CREATE TABLE table_1682026_7 (market_value__billion_$_ VARCHAR, assets__billion_$_ VARCHAR)
SELECT market_value__billion_$_ FROM table_1682026_7 WHERE assets__billion_$_ = "1,380.88"
How many areas are there for the corporation named fort st. john, city of?
CREATE TABLE table_28367242_1 (area__km²_ VARCHAR, corporate_name VARCHAR)
SELECT COUNT(area__km²_) FROM table_28367242_1 WHERE corporate_name = "Fort St. John, City of"
Name the number of incumbents for texas 12
CREATE TABLE table_1342359_42 (incumbent VARCHAR, district VARCHAR)
SELECT COUNT(incumbent) FROM table_1342359_42 WHERE district = "Texas 12"
What was the vote for Alvin Green when Jim DeMint was 62%?
CREATE TABLE table_name_71 (alvin_greene__d_ VARCHAR, jim_demint__r_ VARCHAR)
SELECT alvin_greene__d_ FROM table_name_71 WHERE jim_demint__r_ = "62%"
What platform has a year of 2007?
CREATE TABLE table_name_8 (platform_s_ VARCHAR, year VARCHAR)
SELECT platform_s_ FROM table_name_8 WHERE year = 2007
How much money does the player with a score of 74-71-76-76=297 have?
CREATE TABLE table_name_5 (money___$__ VARCHAR, score VARCHAR)
SELECT money___$__ FROM table_name_5 WHERE score = 74 - 71 - 76 - 76 = 297
Who is performer 2 of the episode on 9 April 1993 with Josie Lawrence as performer 4?
CREATE TABLE table_name_83 (performer_2 VARCHAR, performer_4 VARCHAR, date VARCHAR)
SELECT performer_2 FROM table_name_83 WHERE performer_4 = "josie lawrence" AND date = "9 april 1993"
What was the final score when tracy austin was runner up?
CREATE TABLE table_20986710_1 (score_in_final VARCHAR, runner_up VARCHAR)
SELECT score_in_final FROM table_20986710_1 WHERE runner_up = "Tracy Austin"
Name the 2008 with 1998 of a and 2002 of 1r with 2004 of 2r
CREATE TABLE table_name_88 (Id VARCHAR)
SELECT 2008 FROM table_name_88 WHERE 1998 = "a" AND 2002 = "1r" AND 2004 = "2r"
How many vehicle in total?
CREATE TABLE Vehicles (Id VARCHAR)
SELECT COUNT(*) FROM Vehicles
What is the average number of bronze of the nation with more than 1 gold and 1 silver medal?
CREATE TABLE table_name_96 (bronze INTEGER, gold VARCHAR, silver VARCHAR)
SELECT AVG(bronze) FROM table_name_96 WHERE gold > 1 AND silver = 1
Name the total number of average for wickets less than 265, runs less than 4564 and matches less than 52
CREATE TABLE table_name_99 (average VARCHAR, wickets VARCHAR, matches VARCHAR, runs VARCHAR)
SELECT COUNT(average) FROM table_name_99 WHERE matches < 52 AND runs < 4564 AND wickets < 265
What is the transfer fee of Diogo?
CREATE TABLE table_name_53 (transfer_fee VARCHAR, name VARCHAR)
SELECT transfer_fee FROM table_name_53 WHERE name = "diogo"
What is the rank of the person with more than 5 games played?
CREATE TABLE table_name_20 (rank INTEGER, games_played INTEGER)
SELECT SUM(rank) FROM table_name_20 WHERE games_played > 5
When has Clark University joined the Conference?
CREATE TABLE table_1974782_1 (joined INTEGER, institution VARCHAR)
SELECT MAX(joined) FROM table_1974782_1 WHERE institution = "Clark University"
How many coaches does each club has? List the club id, name and the number of coaches.
CREATE TABLE club (club_id VARCHAR, club_name VARCHAR); CREATE TABLE coach (club_id VARCHAR)
SELECT T1.club_id, T1.club_name, COUNT(*) FROM club AS T1 JOIN coach AS T2 ON T1.club_id = T2.club_id GROUP BY T1.club_id
How many times is the candidates charles f. mercer (f) 100%?
CREATE TABLE table_2668336_24 (incumbent VARCHAR, candidates VARCHAR)
SELECT COUNT(incumbent) FROM table_2668336_24 WHERE candidates = "Charles F. Mercer (F) 100%"
Name the data with a percent gain of 28.4%
CREATE TABLE table_name_41 (data VARCHAR, percent_gain VARCHAR)
SELECT data FROM table_name_41 WHERE percent_gain = "28.4%"
Where was there a change of 6.5%?
CREATE TABLE table_1425958_1 (name VARCHAR, _percentage_change VARCHAR)
SELECT name FROM table_1425958_1 WHERE _percentage_change = "6.5"
What's the British pronunciation when the American and Australian is i?
CREATE TABLE table_name_44 (british VARCHAR, american VARCHAR, australian VARCHAR)
SELECT british FROM table_name_44 WHERE american = "i" AND australian = "i"
What is the distance of the Sam's town 250 race?
CREATE TABLE table_name_24 (distance VARCHAR, race VARCHAR)
SELECT distance FROM table_name_24 WHERE race = "sam's town 250"
What type of surface was played on when the score was 2–6, 6–1, [10–5]?
CREATE TABLE table_name_7 (surface VARCHAR, score VARCHAR)
SELECT surface FROM table_name_7 WHERE score = "2–6, 6–1, [10–5]"
What is the earliest round drafted for a University of Southern California player?
CREATE TABLE table_name_91 (round INTEGER, school VARCHAR)
SELECT MIN(round) FROM table_name_91 WHERE school = "university of southern california"
Who was the winner from the Rip Curl Pro Search?
CREATE TABLE table_name_71 (winner VARCHAR, event VARCHAR)
SELECT winner FROM table_name_71 WHERE event = "rip curl pro search"
What is the launch site of the delta iv rocket with an unknown date and a gps iif-10 satellite?
CREATE TABLE table_name_86 (launch_site VARCHAR, satellite VARCHAR, date VARCHAR, rocket VARCHAR)
SELECT launch_site FROM table_name_86 WHERE date = "unknown" AND rocket = "delta iv" AND satellite = "gps iif-10"
Who was the winner of stage 12?
CREATE TABLE table_name_76 (winner VARCHAR, stage VARCHAR)
SELECT winner FROM table_name_76 WHERE stage = "12"
How many ranks have a ationality of canada, and a Time of dns?
CREATE TABLE table_name_12 (rank VARCHAR, nationality VARCHAR, time VARCHAR)
SELECT COUNT(rank) FROM table_name_12 WHERE nationality = "canada" AND time = "dns"
What are the different nationalities of pilots? Show each nationality and the number of pilots of each nationality.
CREATE TABLE pilot (Nationality VARCHAR)
SELECT Nationality, COUNT(*) FROM pilot GROUP BY Nationality
What was the date of appointment for javier aguirre's replacement?
CREATE TABLE table_name_53 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)
SELECT date_of_appointment FROM table_name_53 WHERE outgoing_manager = "javier aguirre"
What is the sum of Wins, when Against is less than 1033, when Golden Rivers is "Nullawil", and when Byes is less than 2?
CREATE TABLE table_name_85 (wins INTEGER, byes VARCHAR, against VARCHAR, golden_rivers VARCHAR)
SELECT SUM(wins) FROM table_name_85 WHERE against < 1033 AND golden_rivers = "nullawil" AND byes < 2
What is the source of the move from Port Vale?
CREATE TABLE table_name_97 (source VARCHAR, moving_from VARCHAR)
SELECT source FROM table_name_97 WHERE moving_from = "port vale"
When was the successor who got his seat because of "until august 2, 1813" seated?
CREATE TABLE table_225096_4 (date_successor_seated VARCHAR, reason_for_change VARCHAR)
SELECT date_successor_seated FROM table_225096_4 WHERE reason_for_change = "Until August 2, 1813"
What is the Original title of Children of Sarajevo?
CREATE TABLE table_name_42 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT original_title FROM table_name_42 WHERE film_title_used_in_nomination = "children of sarajevo"
What is the 2010–11 when the Event is colonial square ladies classic?
CREATE TABLE table_name_75 (event VARCHAR)
SELECT 2010 AS _11 FROM table_name_75 WHERE event = "colonial square ladies classic"
What's the place of 1989 with a comp of ECH?
CREATE TABLE table_name_94 (place VARCHAR, comp VARCHAR, date VARCHAR)
SELECT place FROM table_name_94 WHERE comp = "ech" AND date = "1989"