output
stringlengths
18
557
instruction
stringlengths
22
540
SELECT COUNT(nationality) FROM table_30083499_1 WHERE tournament = "2011 Apertura"
CREATE TABLE table_30083499_1 (nationality VARCHAR, tournament VARCHAR), How many nationalities are there for the 2011 apertura?
SELECT team FROM table_30083499_1 WHERE tournament = "2012 Clausura"
CREATE TABLE table_30083499_1 (team VARCHAR, tournament VARCHAR), Which team was in the 2012 clausura tournament?
SELECT coefficient FROM table_30083499_1 WHERE player = "Agustín Marchesín (1)"
CREATE TABLE table_30083499_1 (coefficient VARCHAR, player VARCHAR), What is the coefficient for agustín marchesín (1)?
SELECT coefficient FROM table_30083499_1 WHERE tournament = "2010 Clausura"
CREATE TABLE table_30083499_1 (coefficient VARCHAR, tournament VARCHAR), the 2010 clausura tournament?
SELECT nationality FROM table_30083499_1 WHERE tournament = "2012 Clausura"
CREATE TABLE table_30083499_1 (nationality VARCHAR, tournament VARCHAR), What is the nationality of the 2012 clausura tournament?
SELECT high_points FROM table_30087032_5 WHERE game = 1
CREATE TABLE table_30087032_5 (high_points VARCHAR, game VARCHAR), Who did the high points in game number 1?
SELECT COUNT(game) FROM table_30087032_5 WHERE high_rebounds = "Oliver Miller (7)"
CREATE TABLE table_30087032_5 (game VARCHAR, high_rebounds VARCHAR), In how many different games did Oliver Miller (7) did the high rebounds?
SELECT high_assists FROM table_30087032_5 WHERE high_points = "Charles Barkley (21)"
CREATE TABLE table_30087032_5 (high_assists VARCHAR, high_points VARCHAR), Who did the high assists in the game where Charles Barkley (21) did the high points?
SELECT COUNT(high_points) FROM table_30087032_5 WHERE date = "May 15"
CREATE TABLE table_30087032_5 (high_points VARCHAR, date VARCHAR), How many different high points results are there for the game on May 15?
SELECT series FROM table_30087032_5 WHERE high_points = "Charles Barkley (34)"
CREATE TABLE table_30087032_5 (series VARCHAR, high_points VARCHAR), In what series did Charles Barkley (34) did most high points?
SELECT barony FROM table_30120605_1 WHERE townland = "Mountcotton"
CREATE TABLE table_30120605_1 (barony VARCHAR, townland VARCHAR), What is the barony of mountcotton?
SELECT area__acres__ FROM table_30120605_1 WHERE townland = "Gortnaskehy"
CREATE TABLE table_30120605_1 (area__acres__ VARCHAR, townland VARCHAR), What is the area in acres of gortnaskehy?
SELECT civil_parish FROM table_30120605_1 WHERE townland = "Ballymacandrick"
CREATE TABLE table_30120605_1 (civil_parish VARCHAR, townland VARCHAR), In which civil parish is ballymacandrick?
SELECT townland FROM table_30120664_1 WHERE poor_law_union = "Fermoy" AND civil_parish = "Ballynoe"
CREATE TABLE table_30120664_1 (townland VARCHAR, poor_law_union VARCHAR, civil_parish VARCHAR), Name the townland for fermoy and ballynoe
SELECT civil_parish FROM table_30120664_1 WHERE townland = "Garryduff"
CREATE TABLE table_30120664_1 (civil_parish VARCHAR, townland VARCHAR), name the civil parish for garryduff
SELECT area__acres__ FROM table_30120664_1 WHERE civil_parish = "Ballynoe" AND townland = "Killasseragh"
CREATE TABLE table_30120664_1 (area__acres__ VARCHAR, civil_parish VARCHAR, townland VARCHAR), Name the area for civil parish ballynoe and killasseragh
SELECT poor_law_union FROM table_30121046_1 WHERE townland = "Kilmaloda"
CREATE TABLE table_30121046_1 (poor_law_union VARCHAR, townland VARCHAR), What is the poor law union of the Kilmaloda townland?
SELECT poor_law_union FROM table_30121046_1 WHERE townland = "Lackenagobidane"
CREATE TABLE table_30121046_1 (poor_law_union VARCHAR, townland VARCHAR), What is the poor law union of the Lackenagobidane townland?
SELECT poor_law_union FROM table_30121046_1 WHERE townland = "Ardacrow"
CREATE TABLE table_30121046_1 (poor_law_union VARCHAR, townland VARCHAR), What is the poor law union of the Ardacrow townland?
SELECT MAX(area__acres__) FROM table_30121046_1 WHERE townland = "Knockacullen"
CREATE TABLE table_30121046_1 (area__acres__ INTEGER, townland VARCHAR), What is the maximum area (in acres) of the Knockacullen townland?
SELECT civil_parish FROM table_30121082_1 WHERE townland = "Loughmarsh"
CREATE TABLE table_30121082_1 (civil_parish VARCHAR, townland VARCHAR), What are the civil parishes of the Loughmarsh townland?
SELECT MAX(area__acres__) FROM table_30121082_1 WHERE poor_law_union = "Skibbereen" AND civil_parish = "Tullagh"
CREATE TABLE table_30121082_1 (area__acres__ INTEGER, poor_law_union VARCHAR, civil_parish VARCHAR), What is the greatest area when the Poor Law Union is Skibbereen and the Civil Parish is Tullagh?
SELECT area__acres__ FROM table_30121082_1 WHERE townland = "Kilnahera East"
CREATE TABLE table_30121082_1 (area__acres__ VARCHAR, townland VARCHAR), What are the areas (in acres) of the Kilnahera East townland?
SELECT barony FROM table_30121082_1 WHERE area__acres__ = 276
CREATE TABLE table_30121082_1 (barony VARCHAR, area__acres__ VARCHAR), What are the Baronies when the area (in acres) is 276?
SELECT poor_law_union FROM table_30121082_1 WHERE area__acres__ = 142
CREATE TABLE table_30121082_1 (poor_law_union VARCHAR, area__acres__ VARCHAR), What are the Poor Law Unions when the area (in acres) is 142?
SELECT AVG(rank) FROM table_name_30 WHERE losses < 6 AND wins < 11 AND school = "michigan state"
CREATE TABLE table_name_30 (rank INTEGER, school VARCHAR, losses VARCHAR, wins VARCHAR), Tell me the average Rank for lossess less than 6 and wins less than 11 for michigan state
SELECT SUM(losses) FROM table_name_60 WHERE wins < 2 AND rank = 10 AND appearances > 3
CREATE TABLE table_name_60 (losses INTEGER, appearances VARCHAR, wins VARCHAR, rank VARCHAR), Tell me the sum of losses for wins less than 2 and rank of 10 with appearances larger than 3
SELECT COUNT(rank) FROM table_name_56 WHERE silver = 0 AND gold = 2 AND total < 2
CREATE TABLE table_name_56 (rank VARCHAR, total VARCHAR, silver VARCHAR, gold VARCHAR), Which Rank number has a Silver of 0, Gold of 2 and total smaller than 2?
SELECT MIN(total) FROM table_name_92 WHERE bronze = 0 AND rank < 2
CREATE TABLE table_name_92 (total INTEGER, bronze VARCHAR, rank VARCHAR), What is the lowest Total containing a Bronze of 0 and Rank smaller than 2?
SELECT track FROM table_name_44 WHERE date = "june 9"
CREATE TABLE table_name_44 (track VARCHAR, date VARCHAR), Tell me the track for june 9
SELECT track FROM table_name_47 WHERE race_winner = "scott lagasse jr."
CREATE TABLE table_name_47 (track VARCHAR, race_winner VARCHAR), Tell me the track for scott lagasse jr.
SELECT event_name FROM table_name_98 WHERE pole_winner = "michael mcdowell" AND race_winner = "billy leslie"
CREATE TABLE table_name_98 (event_name VARCHAR, pole_winner VARCHAR, race_winner VARCHAR), Tell me the event name for michael mcdowell and billy leslie
SELECT pole_winner FROM table_name_91 WHERE date = "may 12"
CREATE TABLE table_name_91 (pole_winner VARCHAR, date VARCHAR), Tell me the pole winner of may 12
SELECT MIN(kazakhstan) FROM table_name_20 WHERE kyrghizstan = 4.62 AND belarus < 2.46
CREATE TABLE table_name_20 (kazakhstan INTEGER, kyrghizstan VARCHAR, belarus VARCHAR), Tell me the lowest kazakhstan for kyrghizstan of 4.62 and belarus less than 2.46
SELECT MIN(gold) FROM table_name_16 WHERE rank = "6" AND total < 2
CREATE TABLE table_name_16 (gold INTEGER, rank VARCHAR, total VARCHAR), Tell me the lowest gold for rank of 6 and total less than 2
SELECT rank FROM table_name_28 WHERE bronze < 17 AND silver > 1 AND gold < 1
CREATE TABLE table_name_28 (rank VARCHAR, gold VARCHAR, bronze VARCHAR, silver VARCHAR), Tell me the rank for bronze less than 17 and gold less than 1
SELECT w_l__doubles_ FROM table_name_73 WHERE debut = 1999
CREATE TABLE table_name_73 (w_l__doubles_ VARCHAR, debut VARCHAR), Tell me the WL doubles with a debut of 1999
SELECT COUNT(win__percentage) FROM table_name_93 WHERE conference = "hockey east" AND _number_of_bids < 4
CREATE TABLE table_name_93 (win__percentage VARCHAR, conference VARCHAR, _number_of_bids VARCHAR), For the Hockey East conference, what is the total number of win percentages when there are less than 4 bids?
SELECT AVG(regional_finals) FROM table_name_3 WHERE record = "3-2" AND _number_of_bids > 3
CREATE TABLE table_name_3 (regional_finals INTEGER, record VARCHAR, _number_of_bids VARCHAR), What is the average Regional Finals score when the record is 3-2 and there are more than 3 bids?
SELECT competition FROM table_name_30 WHERE score = "12.8 (80) - 8.7 (55)"
CREATE TABLE table_name_30 (competition VARCHAR, score VARCHAR), In what competition was the score reported as 12.8 (80) - 8.7 (55)?
SELECT venue FROM table_name_89 WHERE score = "7.14 (56) - 4.5 (29)"
CREATE TABLE table_name_89 (venue VARCHAR, score VARCHAR), At what venue was there a competition with a score reported as 7.14 (56) - 4.5 (29)?
SELECT venue FROM table_name_51 WHERE opponent = "collingwood" AND score = "7.14 (56) - 4.5 (29)"
CREATE TABLE table_name_51 (venue VARCHAR, opponent VARCHAR, score VARCHAR), At what venue did the team from Collingwood score 7.14 (56) - 4.5 (29)?
SELECT mls_team FROM table_name_41 WHERE player = "jimmy frazelle"
CREATE TABLE table_name_41 (mls_team VARCHAR, player VARCHAR), What team does Jimmy Frazelle play on?
SELECT mls_team FROM table_name_86 WHERE pick__number = 41
CREATE TABLE table_name_86 (mls_team VARCHAR, pick__number VARCHAR), Which MLS team has the #41 pick?
SELECT position FROM table_name_78 WHERE pick__number > 47 AND affiliation = "ucla"
CREATE TABLE table_name_78 (position VARCHAR, pick__number VARCHAR, affiliation VARCHAR), What position has UCLA pick that is larger than #47?
SELECT position FROM table_name_38 WHERE mls_team = "colorado rapids"
CREATE TABLE table_name_38 (position VARCHAR, mls_team VARCHAR), What is the position of the Colorado Rapids team?
SELECT in_service FROM table_name_52 WHERE versions = "l-410uvp"
CREATE TABLE table_name_52 (in_service VARCHAR, versions VARCHAR), Tell me the service for versions l-410uvp
SELECT versions FROM table_name_80 WHERE origin = "czechoslovakia"
CREATE TABLE table_name_80 (versions VARCHAR, origin VARCHAR), Tell me the versions for czechoslovakia?
SELECT aircraft FROM table_name_1 WHERE versions = "pzl-104"
CREATE TABLE table_name_1 (aircraft VARCHAR, versions VARCHAR), Tell me the aircraft for pzl-104
SELECT origin FROM table_name_57 WHERE versions = "mi-2"
CREATE TABLE table_name_57 (origin VARCHAR, versions VARCHAR), Tell me the origin for mi-2
SELECT COUNT(top_25) FROM table_name_59 WHERE cuts_made = 22 AND wins < 1
CREATE TABLE table_name_59 (top_25 VARCHAR, cuts_made VARCHAR, wins VARCHAR), Tell me the total number of top 25 for wins less than 1 and cuts made of 22
SELECT COUNT(events) FROM table_name_32 WHERE tournament = "masters tournament" AND top_25 < 6
CREATE TABLE table_name_32 (events VARCHAR, tournament VARCHAR, top_25 VARCHAR), Tell me the total number of events for tournament of masters tournament and top 25 less than 6
SELECT MIN(year) FROM table_name_52 WHERE league = "usisl pro league"
CREATE TABLE table_name_52 (year INTEGER, league VARCHAR), What was the earliest year for the USISL Pro League?
SELECT 2007 FROM table_name_8 WHERE 2010 = "3.137"
CREATE TABLE table_name_8 (Id VARCHAR), What is the 2007 Lukoil oil prodroduction when in 2010 oil production 3.137 million tonnes?
SELECT 2010 FROM table_name_25 WHERE 2009 = "21.662"
CREATE TABLE table_name_25 (Id VARCHAR), What is the 2010 Lukoil oil prodroduction when in 2009 oil production 21.662 million tonnes?
SELECT 2004 FROM table_name_40 WHERE 2011 = "90.917"
CREATE TABLE table_name_40 (Id VARCHAR), What is the 2004 Lukoil oil prodroduction when in 2011 oil production 90.917 million tonnes?
SELECT 2005 FROM table_name_25 WHERE 2007 = "91.100"
CREATE TABLE table_name_25 (Id VARCHAR), What is the 2005 Lukoil oil prodroduction when in 2007 oil production 91.100 million tonnes?
SELECT 2005 FROM table_name_88 WHERE 2007 = "5.545"
CREATE TABLE table_name_88 (Id VARCHAR), What is the 2005 Lukoil oil prodroduction when in 2007 oil production 5.545 million tonnes?
SELECT MAX(home_runs) FROM table_name_92 WHERE team = "cleveland indians" AND year < 1931
CREATE TABLE table_name_92 (home_runs INTEGER, team VARCHAR, year VARCHAR), Tell me the highest home runs for cleveland indians years before 1931
SELECT MIN(gold) FROM table_name_56 WHERE rank > 9
CREATE TABLE table_name_56 (gold INTEGER, rank INTEGER), What nation has the lowest gold average that has a rank over 9?
SELECT country FROM table_name_38 WHERE director = "julian schnabel"
CREATE TABLE table_name_38 (country VARCHAR, director VARCHAR), Tell me the country for julian schnabel
SELECT english_title FROM table_name_17 WHERE director = "jean-pierre jeunet"
CREATE TABLE table_name_17 (english_title VARCHAR, director VARCHAR), Name the title of jean-pierre jeunet
SELECT power_output__kw_ FROM table_name_32 WHERE model = "hxd2b"
CREATE TABLE table_name_32 (power_output__kw_ VARCHAR, model VARCHAR), What is the power output (kw) of model hxd2b?
SELECT model FROM table_name_20 WHERE builder__family_ = "zhuzhou" AND power_output__kw_ = "9600"
CREATE TABLE table_name_20 (model VARCHAR, builder__family_ VARCHAR, power_output__kw_ VARCHAR), What model has a builder of zhuzhou, and a power output of 9600 (kw)?
SELECT power_output__kw_ FROM table_name_6 WHERE model = "hxd3d"
CREATE TABLE table_name_6 (power_output__kw_ VARCHAR, model VARCHAR), What is the power output (kw) of model hxd3d?
SELECT power_output__kw_ FROM table_name_79 WHERE total_production = "2" AND builder__family_ = "zhuzhou" AND model = "hxd1d"
CREATE TABLE table_name_79 (power_output__kw_ VARCHAR, model VARCHAR, total_production VARCHAR, builder__family_ VARCHAR), What is the power output (kw) of builder zhuzhou, model hxd1d, with a total production of 2?
SELECT AVG(bronze) FROM table_name_32 WHERE total < 1
CREATE TABLE table_name_32 (bronze INTEGER, total INTEGER), Name the average bronze for total less than 1
SELECT recipient FROM table_name_77 WHERE play = "much ado about nothing" AND year = 1973
CREATE TABLE table_name_77 (recipient VARCHAR, play VARCHAR, year VARCHAR), Name the recipient of much ado about nothing for 1973
SELECT recipient FROM table_name_69 WHERE year = 1976
CREATE TABLE table_name_69 (recipient VARCHAR, year VARCHAR), Name the recipientof the year for 1976
SELECT play FROM table_name_20 WHERE year = 1976
CREATE TABLE table_name_20 (play VARCHAR, year VARCHAR), Name the play for 1976
SELECT AVG(year) FROM table_name_50 WHERE play = "much ado about nothing" AND recipient = "ray virta"
CREATE TABLE table_name_50 (year INTEGER, play VARCHAR, recipient VARCHAR), Name the average year for much ado about nothing and recipient of ray virta
SELECT modulation FROM table_name_91 WHERE power = "32 kw horizontal" AND channel = 32
CREATE TABLE table_name_91 (modulation VARCHAR, power VARCHAR, channel VARCHAR), On channel 32, when the power is 32 kW horizontal, what is the modulation?
SELECT frequency FROM table_name_32 WHERE power = "32 kw horizontal" AND channel = 32
CREATE TABLE table_name_32 (frequency VARCHAR, power VARCHAR, channel VARCHAR), On channel 32, when the power is 32 kW horizontal, what is the frequency?
SELECT MAX(wins) FROM table_name_42 WHERE year < 2000 AND best_finish = "4" AND tournaments_played < 3
CREATE TABLE table_name_42 (wins INTEGER, tournaments_played VARCHAR, year VARCHAR, best_finish VARCHAR), Tell me the highest wins for year less than 2000 and best finish of 4 and tournaments played less than 3
SELECT scoring_average FROM table_name_92 WHERE year < 1998 AND wins > 3
CREATE TABLE table_name_92 (scoring_average VARCHAR, year VARCHAR, wins VARCHAR), Tell me the scoring average for year less than 1998 and wins more than 3
SELECT result FROM table_name_51 WHERE week < 15 AND date = "november 20, 1983"
CREATE TABLE table_name_51 (result VARCHAR, week VARCHAR, date VARCHAR), What happened on November 20, 1983 before week 15?
SELECT winner FROM table_name_92 WHERE trainer = "gary simms"
CREATE TABLE table_name_92 (winner VARCHAR, trainer VARCHAR), Who won under Gary Simms?
SELECT trainer FROM table_name_34 WHERE year < 2009 AND time = "1:10.09"
CREATE TABLE table_name_34 (trainer VARCHAR, year VARCHAR, time VARCHAR), Which trainer had a time of 1:10.09 with a year less than 2009?
SELECT trainer FROM table_name_97 WHERE year < 2010 AND winner = "hyroglyphic"
CREATE TABLE table_name_97 (trainer VARCHAR, year VARCHAR, winner VARCHAR), Which trainer won the hyroglyphic in a year that was before 2010?
SELECT time FROM table_name_48 WHERE winner = "screen your friend"
CREATE TABLE table_name_48 (time VARCHAR, winner VARCHAR), What was the time for Screen Your Friend?
SELECT MIN(points) FROM table_name_8 WHERE place > 10
CREATE TABLE table_name_8 (points INTEGER, place INTEGER), Which places have points larger than 10?
SELECT COUNT(grid) FROM table_name_59 WHERE rider = "fonsi nieto" AND laps > 22
CREATE TABLE table_name_59 (grid VARCHAR, rider VARCHAR, laps VARCHAR), What is the total grid number when Fonsi Nieto had more than 22 laps?
SELECT COUNT(laps) FROM table_name_39 WHERE grid = 10
CREATE TABLE table_name_39 (laps VARCHAR, grid VARCHAR), When the grid number is 10, what is the total number of laps?
SELECT bike FROM table_name_34 WHERE grid > 14 AND laps < 22 AND rider = "jiri drazdak"
CREATE TABLE table_name_34 (bike VARCHAR, rider VARCHAR, grid VARCHAR, laps VARCHAR), Which bike did Jiri Drazdak ride when he had a grid number larger than 14 and less than 22 laps?
SELECT winning_driver FROM table_name_1 WHERE name = "pau grand prix"
CREATE TABLE table_name_1 (winning_driver VARCHAR, name VARCHAR), Tell me the winning driver for pau grand prix
SELECT report FROM table_name_86 WHERE date = "30 july"
CREATE TABLE table_name_86 (report VARCHAR, date VARCHAR), Tell me the report for 30 july
SELECT report FROM table_name_64 WHERE date = "10 april"
CREATE TABLE table_name_64 (report VARCHAR, date VARCHAR), Tell me the report for 10 april
SELECT winning_constructor FROM table_name_42 WHERE name = "paris cup"
CREATE TABLE table_name_42 (winning_constructor VARCHAR, name VARCHAR), Tell me the winning constructor for the paris cup
SELECT date FROM table_name_27 WHERE class = "non-championship f2" AND driver = "josé froilán gonzález" AND position > 2
CREATE TABLE table_name_27 (date VARCHAR, position VARCHAR, class VARCHAR, driver VARCHAR), what date has the class of non-championship f2 as well as a driver name josé froilán gonzález that has a position larger than 2?
SELECT team FROM table_name_46 WHERE position > 1 AND date = "9/1953" AND driver = "emmanuel de graffenried"
CREATE TABLE table_name_46 (team VARCHAR, driver VARCHAR, position VARCHAR, date VARCHAR), what team has a drive name emmanuel de graffenried and a position larger than 1 as well as the date of 9/1953?
SELECT class FROM table_name_56 WHERE date = "8/1954"
CREATE TABLE table_name_56 (class VARCHAR, date VARCHAR), what class has the date of 8/1954?
SELECT driver FROM table_name_51 WHERE team = "officine alfieri maserati" AND class = "non-championship f2" AND position = 2 AND date = "9/1952"
CREATE TABLE table_name_51 (driver VARCHAR, date VARCHAR, position VARCHAR, team VARCHAR, class VARCHAR), what driver has a team of officine alfieri maserati and belongs to the class of non-championship f2 and has a position of 2, as well as a date of 9/1952?
SELECT MAX(attendance) FROM table_name_85 WHERE result = "w 16-13" AND week < 12
CREATE TABLE table_name_85 (attendance INTEGER, result VARCHAR, week VARCHAR), How many people attended the game with a result of w 16-13 and a week earlier than 12?
SELECT AVG(total_apps) FROM table_name_41 WHERE total_goals = 0 AND fa_cup_goals > 0
CREATE TABLE table_name_41 (total_apps INTEGER, total_goals VARCHAR, fa_cup_goals VARCHAR), It has fa cup goals larger than 0 and total goals of 0, what is the average total apps?
SELECT COUNT(total_apps) FROM table_name_6 WHERE fa_cup_goals < 4 AND fa_cup_apps > 7
CREATE TABLE table_name_6 (total_apps VARCHAR, fa_cup_goals VARCHAR, fa_cup_apps VARCHAR), It has a FA Cup Goals smaller than 4, and a FA Cup Apps larger than 7, what is the total number of total apps?
SELECT COUNT(total_goals) FROM table_name_20 WHERE fa_cup_apps > 1 AND total_apps = 37 AND league_apps < 30
CREATE TABLE table_name_20 (total_goals VARCHAR, league_apps VARCHAR, fa_cup_apps VARCHAR, total_apps VARCHAR), The total goals have a FA Cup Apps larger than 1, and a Total Apps of 37, and a League Apps smaller than 30?, what is the total number?
SELECT result FROM table_name_63 WHERE week < 4 AND record = "1-0"
CREATE TABLE table_name_63 (result VARCHAR, week VARCHAR, record VARCHAR), What is the result when the record was 1-0 and it was earlier than week 4?
SELECT bore_ & _stroke FROM table_name_28 WHERE carburetor = "4-barrel" AND vin_code = "a"
CREATE TABLE table_name_28 (bore_ VARCHAR, _stroke VARCHAR, carburetor VARCHAR, vin_code VARCHAR), What are the bore & stroke specifications for an engine with 4-barrel carburetor and VIN code of A?
SELECT opponent FROM table_name_43 WHERE attendance = "unknown" AND result = "lost 2-0"
CREATE TABLE table_name_43 (opponent VARCHAR, attendance VARCHAR, result VARCHAR), Which opponent has unknown attendance, and lost 2-0?
SELECT result FROM table_name_89 WHERE opponent = "leeds united"
CREATE TABLE table_name_89 (result VARCHAR, opponent VARCHAR), What is the result from the Leeds United opponent?