answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT AVG(appearances) FROM table_name_50 WHERE club = "fc igea virtus" AND goals = 1
How many appearances with fc igea virtus and 1 goal?
CREATE TABLE table_name_50 (appearances INTEGER, club VARCHAR, goals VARCHAR)
SELECT COUNT(points) FROM table_name_94 WHERE engine = "maserati straight-4" AND year > 1959
What is the number of points for the maserati straight-4 engine, later than 1959?
CREATE TABLE table_name_94 (points VARCHAR, engine VARCHAR, year VARCHAR)
SELECT fastest_lap FROM table_1139087_2 WHERE rd = 8
Who drove the fastest lap for round 8?
CREATE TABLE table_1139087_2 (fastest_lap VARCHAR, rd VARCHAR)
SELECT attendance FROM table_name_82 WHERE away_team = "rosso kumamoto"
What is the attendance of the match with rosso kumamoto as the away team?
CREATE TABLE table_name_82 (attendance VARCHAR, away_team VARCHAR)
SELECT equatorial_bulge FROM table_name_74 WHERE body = "earth"
What is the Equatorial bulge of the Body: Earth?
CREATE TABLE table_name_74 (equatorial_bulge VARCHAR, body VARCHAR)
SELECT song FROM table_10848177_1 WHERE picturization = "Vijay"
Which song has picturization by only vijay?
CREATE TABLE table_10848177_1 (song VARCHAR, picturization VARCHAR)
SELECT COUNT(scored) FROM table_name_48 WHERE position > 4 AND points = 19
What is the total number scored for the team that had 19 points and a position larger than 4?
CREATE TABLE table_name_48 (scored VARCHAR, position VARCHAR, points VARCHAR)
SELECT AVG(pick__number) FROM table_name_66 WHERE name = "deji karim" AND round < 6
What was the pick number for Deji Karim, in a round lower than 6?
CREATE TABLE table_name_66 (pick__number INTEGER, name VARCHAR, round VARCHAR)
SELECT director_s_ FROM table_name_45 WHERE rank = "nominated" AND film = "blood on his hands"
Who directed the nominated film 'blood on his hands'?
CREATE TABLE table_name_45 (director_s_ VARCHAR, rank VARCHAR, film VARCHAR)
SELECT MAX(game) FROM table_name_60 WHERE opponent = "vancouver canucks" AND november < 4
What Vancouver canucks game was on a date closest to November 4?
CREATE TABLE table_name_60 (game INTEGER, opponent VARCHAR, november VARCHAR)
SELECT DISTINCT T1.Fname FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat' OR T3.pettype = 'dog'
Find the first name of students who have cat or dog pet.
CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE student (Fname VARCHAR, stuid VARCHAR); CREATE TABLE pets (petid VARCHAR, pettype VARCHAR)
SELECT MIN(founded) FROM table_name_42 WHERE club = "bizerte athletic f.c."
What is the lowest founded that has bizerte athletic f.c. as the club?
CREATE TABLE table_name_42 (founded INTEGER, club VARCHAR)
SELECT MIN(gold) FROM table_name_68 WHERE silver < 0
Which team has the lowest gold and 0 silver?
CREATE TABLE table_name_68 (gold INTEGER, silver INTEGER)
SELECT franchise FROM table_name_29 WHERE percentage < 0.707 AND year > 1931 AND finish = "won 1998 world series"
Which Franchise has a Percentage under 0.707, a Year larger than 1931, and the Finish was won 1998 World Series?
CREATE TABLE table_name_29 (franchise VARCHAR, finish VARCHAR, percentage VARCHAR, year VARCHAR)
SELECT MAX(overall) FROM table_name_62 WHERE position = "rb" AND round = 8
During round 8 when the Position being picked was rb, what was the highest overall pick?
CREATE TABLE table_name_62 (overall INTEGER, position VARCHAR, round VARCHAR)
SELECT middle_german___luxemburgish__ FROM table_name_58 WHERE english = "stone"
What is the Middle German (Luxemburgish) word for stone?
CREATE TABLE table_name_58 (middle_german___luxemburgish__ VARCHAR, english VARCHAR)
SELECT team FROM table_name_9 WHERE season > 2008
What team won after 2008?
CREATE TABLE table_name_9 (team VARCHAR, season INTEGER)
SELECT SUM(crowd) FROM table_name_12 WHERE venue = "vfl park"
How many people attended games at vfl park?
CREATE TABLE table_name_12 (crowd INTEGER, venue VARCHAR)
SELECT constructor FROM table_name_1 WHERE fastest_lap = "nigel mansell"
What is the constructor for the race with Nigel Mansell as the fastest lap?
CREATE TABLE table_name_1 (constructor VARCHAR, fastest_lap VARCHAR)
SELECT record FROM table_name_55 WHERE loss = "blyleven (4-5)"
What was the record at the game that had a loss of Blyleven (4-5)?
CREATE TABLE table_name_55 (record VARCHAR, loss VARCHAR)
SELECT margin FROM table_name_88 WHERE year > 1981 AND runner_s__up = "roberto de vicenzo"
What margin was in after 1981, and was Roberto De Vicenzo runner-up?
CREATE TABLE table_name_88 (margin VARCHAR, year VARCHAR, runner_s__up VARCHAR)
SELECT time_retired FROM table_name_76 WHERE grid = "18"
What was the retired time for someone who was on grid 18?
CREATE TABLE table_name_76 (time_retired VARCHAR, grid VARCHAR)
SELECT to_par FROM table_name_94 WHERE score = 71 - 71 - 70 - 70 = 282
When the score was 71-71-70-70=282 what was the To par recorded?
CREATE TABLE table_name_94 (to_par VARCHAR, score VARCHAR)
SELECT MAX(game) FROM table_name_6 WHERE date = "july 31"
What is the highest game that has July 31 as the date?
CREATE TABLE table_name_6 (game INTEGER, date VARCHAR)
SELECT T2.Name FROM nomination AS T1 JOIN artwork AS T2 ON T1.Artwork_ID = T2.Artwork_ID JOIN festival_detail AS T3 ON T1.Festival_ID = T3.Festival_ID ORDER BY T3.Year
Show the names of artworks in ascending order of the year they are nominated in.
CREATE TABLE artwork (Name VARCHAR, Artwork_ID VARCHAR); CREATE TABLE nomination (Artwork_ID VARCHAR, Festival_ID VARCHAR); CREATE TABLE festival_detail (Festival_ID VARCHAR, Year VARCHAR)
SELECT hometown FROM table_name_73 WHERE candidate = "lenny veltman"
What is the Hometown of Candidate Lenny Veltman?
CREATE TABLE table_name_73 (hometown VARCHAR, candidate VARCHAR)
SELECT MIN(against) FROM table_name_66 WHERE status = "tour match" AND venue = "ravenhill , belfast"
Which the lowest Against has a Status of tour match, and a Venue of ravenhill , belfast?
CREATE TABLE table_name_66 (against INTEGER, status VARCHAR, venue VARCHAR)
SELECT format FROM table_name_28 WHERE note = "12cm" AND catalog = "alca-9198"
Name the format for 12cm note and catalog of alca-9198
CREATE TABLE table_name_28 (format VARCHAR, note VARCHAR, catalog VARCHAR)
SELECT COUNT(pick__number) FROM table_name_66 WHERE position = "guard" AND round < 6
What are the total number of picks for a guard with fewer than 6 rounds?
CREATE TABLE table_name_66 (pick__number VARCHAR, position VARCHAR, round VARCHAR)
SELECT venue FROM table_name_32 WHERE notes = "am"
Which venue has a note of AM?
CREATE TABLE table_name_32 (venue VARCHAR, notes VARCHAR)
SELECT name FROM table_name_38 WHERE college = "cincinnati"
Who is from the College of Cincinnati?
CREATE TABLE table_name_38 (name VARCHAR, college VARCHAR)
SELECT SUM(total) FROM table_name_89 WHERE rank < 5 AND gold > 5 AND bronze > 8
What is the total with a rank less than 5, gold larger than 5 and bronze larger than 8?
CREATE TABLE table_name_89 (total INTEGER, bronze VARCHAR, rank VARCHAR, gold VARCHAR)
SELECT place FROM table_name_6 WHERE weapon = "35mm/small arms fire"
What is Place, when Weapon is "35mm/Small arms fire"?
CREATE TABLE table_name_6 (place VARCHAR, weapon VARCHAR)
SELECT goals FROM table_name_39 WHERE latest_cap = "september 5, 2011"
Latest cap of september 5, 2011 had how many goals?
CREATE TABLE table_name_39 (goals VARCHAR, latest_cap VARCHAR)
SELECT outcomes FROM table_name_93 WHERE rocket_launch = "rehnuma-11"
What Outcome has a Rocket launch of rehnuma-11?
CREATE TABLE table_name_93 (outcomes VARCHAR, rocket_launch VARCHAR)
SELECT home_team AS score FROM table_name_75 WHERE away_team = "collingwood"
What was the score for the away team at Collingwood?
CREATE TABLE table_name_75 (home_team VARCHAR, away_team VARCHAR)
SELECT name, price FROM products WHERE price >= 180 ORDER BY price DESC, name
Select the name and price of all products with a price larger than or equal to $180, and sort first by price (in descending order), and then by name (in ascending order).
CREATE TABLE products (name VARCHAR, price VARCHAR)
SELECT jockey FROM table_name_70 WHERE year < 2012 AND owner = "michael house"
What jockey rode for Michael House before 2012
CREATE TABLE table_name_70 (jockey VARCHAR, year VARCHAR, owner VARCHAR)
SELECT opponent FROM table_name_1 WHERE date = "may 11"
what team played on may 11
CREATE TABLE table_name_1 (opponent VARCHAR, date VARCHAR)
SELECT circuit FROM table_19598014_2 WHERE challenge_winning_team = "#47 Orbit Racing"
Name the circuit for #47 orbit racing
CREATE TABLE table_19598014_2 (circuit VARCHAR, challenge_winning_team VARCHAR)
SELECT club FROM table_name_8 WHERE nation = "mexico" AND year = 2010 AND competition = "preseason" AND result = "w 0–1"
What is the Club of mexico, Year of 2010, and a Competition of preseason, and a Result of w 0–1?
CREATE TABLE table_name_8 (club VARCHAR, result VARCHAR, competition VARCHAR, nation VARCHAR, year VARCHAR)
SELECT term_ended FROM table_name_5 WHERE branch = "u.s. marine corps"
When did the term end for the U.S. Marine Corps?
CREATE TABLE table_name_5 (term_ended VARCHAR, branch VARCHAR)
SELECT MIN(silver) FROM table_name_56 WHERE bronze < 1 AND gold > 0
Which Silver is the lowest one that has a Bronze smaller than 1, and a Gold larger than 0?
CREATE TABLE table_name_56 (silver INTEGER, bronze VARCHAR, gold VARCHAR)
SELECT constructor FROM table_name_75 WHERE date = "10 august"
Name the constructor for 10 august
CREATE TABLE table_name_75 (constructor VARCHAR, date VARCHAR)
SELECT COUNT(*) FROM Products_for_hire WHERE NOT product_id IN (SELECT product_id FROM products_booked WHERE booked_amount > 200)
How many products are never booked with amount higher than 200?
CREATE TABLE products_booked (product_id VARCHAR, booked_amount INTEGER); CREATE TABLE Products_for_hire (product_id VARCHAR, booked_amount INTEGER)
SELECT AVG(latitude) FROM table_name_57 WHERE water__sqmi_ = 0.058 AND ansi_code < 1759683
what is the latitude when water (sqmi) is 0.058 and the ansi code is less than 1759683?
CREATE TABLE table_name_57 (latitude INTEGER, water__sqmi_ VARCHAR, ansi_code VARCHAR)
SELECT location FROM table_15736385_1 WHERE driver = "Rick Mears"
At which location did Rick Mears drive?
CREATE TABLE table_15736385_1 (location VARCHAR, driver VARCHAR)
SELECT MAX(production_code) FROM table_28787871_3 WHERE us_viewers__millions_ = "2.3"
What is the highest production code of the episodes having a US viewership of exactly 2.3?
CREATE TABLE table_28787871_3 (production_code INTEGER, us_viewers__millions_ VARCHAR)
SELECT incumbent FROM table_2668254_22 WHERE candidates = "William Drayton (J)"
Who was the incumbent when the candidate was william drayton (j)?
CREATE TABLE table_2668254_22 (incumbent VARCHAR, candidates VARCHAR)
SELECT date_of_vacancy FROM table_name_22 WHERE manner_of_departure = "resigned" AND outgoing_manager = "gordon wylde"
I wan the date of vacancy for departure of resigned and outgoing manager of gordon wylde
CREATE TABLE table_name_22 (date_of_vacancy VARCHAR, manner_of_departure VARCHAR, outgoing_manager VARCHAR)
SELECT COUNT(place) FROM table_29583818_3 WHERE couple = "Laura and Colin"
How many times is the couple laura and colin?
CREATE TABLE table_29583818_3 (place VARCHAR, couple VARCHAR)
SELECT date_of_birth__age_ FROM table_name_4 WHERE caps = 51 AND club_province = "clermont"
When was the player with 51 caps from a Club/province of clermont born?
CREATE TABLE table_name_4 (date_of_birth__age_ VARCHAR, caps VARCHAR, club_province VARCHAR)
SELECT MIN(sex_ratio__child_) FROM table_10710364_2 WHERE work_participation___percentage_ = "31.3%"
What is the lowest child sex ratio in groups where employment is 31.3%?
CREATE TABLE table_10710364_2 (sex_ratio__child_ INTEGER, work_participation___percentage_ VARCHAR)
SELECT location FROM table_1672976_7 WHERE big_ten_team = "Illinois"
Name the location for illinois
CREATE TABLE table_1672976_7 (location VARCHAR, big_ten_team VARCHAR)
SELECT district FROM table_1341604_26 WHERE incumbent = "Ike Skelton"
What district is incumbent ike skelton from?
CREATE TABLE table_1341604_26 (district VARCHAR, incumbent VARCHAR)
SELECT AVG(long) FROM table_name_44 WHERE name = "rock cartwright" AND loss > 11
What was Rock Cartwright's highest long with more than 11 losses?
CREATE TABLE table_name_44 (long INTEGER, name VARCHAR, loss VARCHAR)
SELECT city FROM table_name_69 WHERE iata = "tsa"
Which city has an IATA of tsa?
CREATE TABLE table_name_69 (city VARCHAR, iata VARCHAR)
SELECT CLASS FROM captain GROUP BY CLASS HAVING COUNT(*) > 2
Which classes have more than two captains?
CREATE TABLE captain (CLASS VARCHAR)
SELECT arabic_country_name FROM table_name_68 WHERE english_capital_name = "moroni"
What is the name of the country in Arabic that has Moroni as the name of its capital in English?
CREATE TABLE table_name_68 (arabic_country_name VARCHAR, english_capital_name VARCHAR)
SELECT loss FROM table_name_3 WHERE date = "august 20"
What is the lost On August 20
CREATE TABLE table_name_3 (loss VARCHAR, date VARCHAR)
SELECT owner FROM table_name_51 WHERE frequency = "103.3 fm"
Which owner has the frequency of 103.3 FM?
CREATE TABLE table_name_51 (owner VARCHAR, frequency VARCHAR)
SELECT location FROM table_name_29 WHERE date = "october 16"
What was the location on October 16?
CREATE TABLE table_name_29 (location VARCHAR, date VARCHAR)
SELECT AVG(round) FROM table_name_32 WHERE time = "5:00" AND event = "ufc 78"
At the UFC 78, what is the average round when the time is 5:00?
CREATE TABLE table_name_32 (round INTEGER, time VARCHAR, event VARCHAR)
SELECT socialist_labor_ticket FROM table_name_60 WHERE liberal_ticket = "arthur levitt"
Who was on the Socialist Labor ticket that had Arthur Levitt as the Liberal Ticket?
CREATE TABLE table_name_60 (socialist_labor_ticket VARCHAR, liberal_ticket VARCHAR)
SELECT laps FROM table_2196127_1 WHERE year = "2002"
How many laps were there in 2002?
CREATE TABLE table_2196127_1 (laps VARCHAR, year VARCHAR)
SELECT code FROM table_name_21 WHERE currency = "latvian lats"
What is the code for Latvian Lats?
CREATE TABLE table_name_21 (code VARCHAR, currency VARCHAR)
SELECT rank FROM table_name_44 WHERE silver < 3 AND bronze > 1 AND nation = "bulgaria"
What rank is Bulgaria with less than 3 silver and more than 1 bronze?
CREATE TABLE table_name_44 (rank VARCHAR, nation VARCHAR, silver VARCHAR, bronze VARCHAR)
SELECT season FROM table_name_97 WHERE venue = "bellerive oval , hobart" AND rank = "4"
What is the Season that has a Venue of bellerive oval , hobart, and a Rank of 4?
CREATE TABLE table_name_97 (season VARCHAR, venue VARCHAR, rank VARCHAR)
SELECT SUM(round) FROM table_name_2 WHERE position = "forward" AND school_club_team = "western kentucky"
What is the sum of Round, when Position is Forward, and when School/Club Team is Western Kentucky?
CREATE TABLE table_name_2 (round INTEGER, position VARCHAR, school_club_team VARCHAR)
SELECT covalent__single_bond_ FROM table_name_21 WHERE name = "sodium"
What is the covalent (single bond) value of sodium?
CREATE TABLE table_name_21 (covalent__single_bond_ VARCHAR, name VARCHAR)
SELECT college FROM table_21321804_3 WHERE cfl_team = "Hamilton Tiger-Cats"
What college did the player for the Hamilton Tiger-Cats go to?
CREATE TABLE table_21321804_3 (college VARCHAR, cfl_team VARCHAR)
SELECT name FROM table_14624447_24 WHERE position = "FS"
What are all names for the position FS?
CREATE TABLE table_14624447_24 (name VARCHAR, position VARCHAR)
SELECT name FROM races ORDER BY date DESC LIMIT 1
What is the name of the race held most recently?
CREATE TABLE races (name VARCHAR, date VARCHAR)
SELECT opponent FROM table_14418812_1 WHERE game_site = "Astrodome"
Name the opponent for astrodome
CREATE TABLE table_14418812_1 (opponent VARCHAR, game_site VARCHAR)
SELECT DISTINCT T1.player_name FROM Player AS T1 JOIN Player_Attributes AS T2 ON T1.player_api_id = T2.player_api_id WHERE T2.dribbling = (SELECT MAX(overall_rating) FROM Player_Attributes)
What are the names of players who have the best dribbling?
CREATE TABLE Player (player_name VARCHAR, player_api_id VARCHAR); CREATE TABLE Player_Attributes (player_api_id VARCHAR, dribbling VARCHAR); CREATE TABLE Player_Attributes (overall_rating INTEGER)
SELECT COUNT(overall) FROM table_name_27 WHERE position = "db" AND round > 8
WHAT WAS THE OVERALL NUMBER WITH A POSITON OF DB, AND ROUND GREATER THAN 8?
CREATE TABLE table_name_27 (overall VARCHAR, position VARCHAR, round VARCHAR)
SELECT gold_coast FROM table_name_8 WHERE melbourne = "yes" AND auckland = "yes"
Which Gold Coast has Melbourne yes, and Auckland yes?
CREATE TABLE table_name_8 (gold_coast VARCHAR, melbourne VARCHAR, auckland VARCHAR)
SELECT total_tenure_time FROM table_name_3 WHERE total_tenure_rank = 49
What was the total tenure time with a rank of 49?
CREATE TABLE table_name_3 (total_tenure_time VARCHAR, total_tenure_rank VARCHAR)
SELECT MAX(attendance) FROM table_name_38 WHERE time = "2:07"
What is the attendance amount of the race with a time of 2:07?
CREATE TABLE table_name_38 (attendance INTEGER, time VARCHAR)
SELECT title FROM table_name_8 WHERE original_airdate = "june 13, 1999"
What is the title of the program that was originally aired on June 13, 1999?
CREATE TABLE table_name_8 (title VARCHAR, original_airdate VARCHAR)
SELECT SUM(races) FROM table_name_2 WHERE series = "formula three euroseries" AND team = "signature"
How many races did the Formula Three Euroseries signature team have?
CREATE TABLE table_name_2 (races INTEGER, series VARCHAR, team VARCHAR)
SELECT AVG(year) FROM table_name_80 WHERE date = "tba" AND designated_home = "oakland raiders"
What year had a date of TBA where the Oakland raiders were the home team?
CREATE TABLE table_name_80 (year INTEGER, date VARCHAR, designated_home VARCHAR)
SELECT away_team FROM table_name_1 WHERE venue = "junction oval"
Who is the away side at junction oval?
CREATE TABLE table_name_1 (away_team VARCHAR, venue VARCHAR)
SELECT MAX(avg) FROM table_name_83 WHERE yards = 1229
Which largest average had 1229 yards?
CREATE TABLE table_name_83 (avg INTEGER, yards VARCHAR)
SELECT AVG(laps) FROM table_name_56 WHERE time = "spun off"
What is the average Laps that shows spun off for time?
CREATE TABLE table_name_56 (laps INTEGER, time VARCHAR)
SELECT appointed_by FROM table_name_73 WHERE judge = "edward e. cushman"
Who appointed Judge Edward E. Cushman?
CREATE TABLE table_name_73 (appointed_by VARCHAR, judge VARCHAR)
SELECT day_2 FROM table_name_23 WHERE day_1 = "4:05.096"
For the team that had 4:05.096, what was their day 2?
CREATE TABLE table_name_23 (day_2 VARCHAR, day_1 VARCHAR)
SELECT affiliation FROM table_name_89 WHERE estd = "1982" AND location = "coimbatore"
Where is the coimbatore affilation that was established in 1982?
CREATE TABLE table_name_89 (affiliation VARCHAR, estd VARCHAR, location VARCHAR)
SELECT first_elected FROM table_1342270_3 WHERE incumbent = "Joe Starnes"
what's the first elected with incumbent being joe starnes
CREATE TABLE table_1342270_3 (first_elected VARCHAR, incumbent VARCHAR)
SELECT AVG(reb_)[b_] FROM table_name_64 WHERE no_[a_] = "8" AND ast_[b_] < 57
Which rebound was 8 and has and ast that was less than 57?
CREATE TABLE table_name_64 (b_ VARCHAR, reb_ INTEGER, no_ VARCHAR, a_ VARCHAR, ast_ VARCHAR)
SELECT play FROM table_name_98 WHERE country = "cyprus" AND company = "magdalena zira theatre"
Which Play is from Cyprus, from the Company Magdalena Zira Theatre?
CREATE TABLE table_name_98 (play VARCHAR, country VARCHAR, company VARCHAR)
SELECT team_2 FROM table_name_82 WHERE date = "november 22, 2008" AND result = "1-0"
What team was 2 on November 22, 2008 when the result was 1-0?
CREATE TABLE table_name_82 (team_2 VARCHAR, date VARCHAR, result VARCHAR)
SELECT MIN(pick) FROM table_name_5 WHERE team = "boston celtics"
What was the lowest pick number for the Boston Celtics?
CREATE TABLE table_name_5 (pick INTEGER, team VARCHAR)
SELECT score FROM table_11964047_10 WHERE streak = "L5"
What is the score of the game with the streak l5
CREATE TABLE table_11964047_10 (score VARCHAR, streak VARCHAR)
SELECT record FROM table_name_69 WHERE week < 13 AND date = "november 9, 2003"
What was the record in a week less than 13 on November 9, 2003?
CREATE TABLE table_name_69 (record VARCHAR, week VARCHAR, date VARCHAR)
SELECT centennial FROM table_15977768_1 WHERE information = "Location"
Name the centennial for location
CREATE TABLE table_15977768_1 (centennial VARCHAR, information VARCHAR)
SELECT score FROM table_name_82 WHERE date = "january 10"
What is the score of the game on January 10?
CREATE TABLE table_name_82 (score VARCHAR, date VARCHAR)
SELECT gold_coast FROM table_name_73 WHERE melbourne = "yes" AND perth = "no" AND adelaide = "yes"
What is the result for Gold Coast when Melbourne and Adelaide are yes, but Perth is no?
CREATE TABLE table_name_73 (gold_coast VARCHAR, adelaide VARCHAR, melbourne VARCHAR, perth VARCHAR)
SELECT word FROM table_name_55 WHERE pronunciation_b = "*sɨks"
Name the word with pronunciation b of *sɨks
CREATE TABLE table_name_55 (word VARCHAR, pronunciation_b VARCHAR)
SELECT opponent FROM table_name_90 WHERE site_stadium = "baum stadium" AND date = "april 6"
Who was the opponent at Baum Stadium on April 6?
CREATE TABLE table_name_90 (opponent VARCHAR, site_stadium VARCHAR, date VARCHAR)