combined_text
stringlengths
106
1.05k
###question:What is the method when the time was 5:00, and the round higher than 4?###answer:SELECT method FROM table_name_86 WHERE time = "5:00" AND round > 4###context:CREATE TABLE table_name_86 (method VARCHAR, time VARCHAR, round VARCHAR)
###question:When the others had a value of 7%, what was the Polling organisation/client?###answer:SELECT polling_organisation_client FROM table_name_5 WHERE others = "7%"###context:CREATE TABLE table_name_5 (polling_organisation_client VARCHAR, others VARCHAR)
###question:What player plays the position of small forward?###answer:SELECT player FROM table_name_26 WHERE position = "small forward"###context:CREATE TABLE table_name_26 (player VARCHAR, position VARCHAR)
###question:What is the latitude of the 0 diameter?###answer:SELECT latitude FROM table_name_18 WHERE diameter__km_ = 0###context:CREATE TABLE table_name_18 (latitude VARCHAR, diameter__km_ VARCHAR)
###question:What is the longitude of Angerona Tholus?###answer:SELECT longitude FROM table_name_35 WHERE name = "angerona tholus"###context:CREATE TABLE table_name_35 (longitude VARCHAR, name VARCHAR)
###question:What is the smallest diameter for Eirene Tholus?###answer:SELECT MIN(diameter__km_) FROM table_name_97 WHERE name = "eirene tholus"###context:CREATE TABLE table_name_97 (diameter__km_ INTEGER, name VARCHAR)
###question:What was the game on April 25?###answer:SELECT MIN(game) FROM table_name_88 WHERE date = "april 25"###context:CREATE TABLE table_name_88 (game INTEGER, date VARCHAR)
###question:what is the sum of the wkts when the ovrs were bigger than 2 and econ was bigger than 7.84?###answer:SELECT SUM(wkts) FROM table_name_46 WHERE ovrs > 2 AND econ > 7.84###context:CREATE TABLE table_name_46 (wkts INTEGER, ovrs VARCHAR, econ VARCHAR)
###question:What is the sum of the runs when the wkts were bigger than 0 and ovrs were smaller than 2?###answer:SELECT SUM(runs) FROM table_name_65 WHERE ovrs < 2 AND wkts > 0###context:CREATE TABLE table_name_65 (runs INTEGER, ovrs VARCHAR, wkts VARCHAR)
###question:What is the highest wkts for james hopes who had less than 26 runs and more than 2 ovrs?###answer:SELECT MAX(wkts) FROM table_name_21 WHERE runs < 26 AND player = "james hopes" AND ovrs > 2###context:CREATE TABLE table_name_21 (wkts INTEGER, ovrs VARCHAR, runs VARCHAR, player VARCHAR)
###question:What is the average sales in billions of the company headquartered in France with more than 2,539.1 billion in assets?###answer:SELECT AVG(sales__billion_) AS $_ FROM table_name_65 WHERE headquarters = "france" AND assets__billion_$_ > 2 OFFSET 539.1###context:CREATE TABLE table_name_65 (sales__billion_ INT...
###question:What is the average sales in billions of walmart, which has more than 15.7 billion in profits?###answer:SELECT AVG(sales__billion_) AS $_ FROM table_name_5 WHERE company = "walmart" AND profits__billion_$_ > 15.7###context:CREATE TABLE table_name_5 (sales__billion_ INTEGER, company VARCHAR, profits__billion...
###question:What is the rider when the grid is 21?###answer:SELECT rider FROM table_name_35 WHERE grid = 21###context:CREATE TABLE table_name_35 (rider VARCHAR, grid VARCHAR)
###question:What is the average laps when the manufacturer is yamaha, and the rider is garry mccoy and the grid is smaller than 4?###answer:SELECT AVG(laps) FROM table_name_71 WHERE manufacturer = "yamaha" AND rider = "garry mccoy" AND grid < 4###context:CREATE TABLE table_name_71 (laps INTEGER, grid VARCHAR, manufactu...
###question:What is the lowest laps for rider andrew pitt, with a grid smaller than 18? Wha###answer:SELECT MIN(laps) FROM table_name_10 WHERE rider = "andrew pitt" AND grid < 18###context:CREATE TABLE table_name_10 (laps INTEGER, rider VARCHAR, grid VARCHAR)
###question:What is the lowest laps that has a manufacturer of yamaha, and a time/retired of +1:08.312, and a grid less than 20?###answer:SELECT MIN(laps) FROM table_name_4 WHERE manufacturer = "yamaha" AND time_retired = "+1:08.312" AND grid < 20###context:CREATE TABLE table_name_4 (laps INTEGER, grid VARCHAR, manufac...
###question:What event had a tko (punches) method and jason macdonald as the opponent?###answer:SELECT event FROM table_name_74 WHERE method = "tko (punches)" AND opponent = "jason macdonald"###context:CREATE TABLE table_name_74 (event VARCHAR, method VARCHAR, opponent VARCHAR)
###question:What is the opponent after round number 1 with a method of decision (unanimous)?###answer:SELECT opponent FROM table_name_30 WHERE round > 1 AND method = "decision (unanimous)"###context:CREATE TABLE table_name_30 (opponent VARCHAR, round VARCHAR, method VARCHAR)
###question:Who is the partnering that had the opponents of Marcelo Melo André Sá?###answer:SELECT partnering FROM table_name_29 WHERE opponents_in_final = "marcelo melo andré sá"###context:CREATE TABLE table_name_29 (partnering VARCHAR, opponents_in_final VARCHAR)
###question:What was the score on February 14, 1999?###answer:SELECT score_in_final FROM table_name_32 WHERE date = "february 14, 1999"###context:CREATE TABLE table_name_32 (score_in_final VARCHAR, date VARCHAR)
###question:What date was the score 6–7(9), 6–2, (10–7)?###answer:SELECT date FROM table_name_29 WHERE score_in_final = "6–7(9), 6–2, (10–7)"###context:CREATE TABLE table_name_29 (date VARCHAR, score_in_final VARCHAR)
###question:What is the lowest value for Sydney, when WEEKLY RANK is less than 8, and when Brisbane is greater than 252,000?###answer:SELECT MIN(sydney) FROM table_name_16 WHERE weekly_rank < 8 AND brisbane > 252 OFFSET 000###context:CREATE TABLE table_name_16 (sydney INTEGER, weekly_rank VARCHAR, brisbane VARCHAR)
###question:What is the sum of the values for Melbourne, when Episode Number Production Number is 19 2-06, and when Sydney is less than 389,000?###answer:SELECT SUM(melbourne) FROM table_name_93 WHERE episode_number_production_number = "19 2-06" AND sydney < 389 OFFSET 000###context:CREATE TABLE table_name_93 (melbourn...
###question:How many rounds had a time of 5:00 at UFC 155?###answer:SELECT COUNT(round) FROM table_name_25 WHERE time = "5:00" AND event = "ufc 155"###context:CREATE TABLE table_name_25 (round VARCHAR, time VARCHAR, event VARCHAR)
###question:Which event had a time of 2:34?###answer:SELECT event FROM table_name_86 WHERE time = "2:34"###context:CREATE TABLE table_name_86 (event VARCHAR, time VARCHAR)
###question:Who was the opponent in the bout that led to a win in a time of 1:21?###answer:SELECT opponent FROM table_name_47 WHERE res = "win" AND time = "1:21"###context:CREATE TABLE table_name_47 (opponent VARCHAR, res VARCHAR, time VARCHAR)
###question:What is the method of resolution for the fight against akihiro gono?###answer:SELECT method FROM table_name_31 WHERE opponent = "akihiro gono"###context:CREATE TABLE table_name_31 (method VARCHAR, opponent VARCHAR)
###question:What is the average number of rounds that Lance Gibson fought when his record was 1-1?###answer:SELECT AVG(round) FROM table_name_52 WHERE record = "1-1"###context:CREATE TABLE table_name_52 (round INTEGER, record VARCHAR)
###question:What is the Country of the Player with a Score of 69-71-66=206?###answer:SELECT country FROM table_name_99 WHERE score = 69 - 71 - 66 = 206###context:CREATE TABLE table_name_99 (country VARCHAR, score VARCHAR)
###question:What is the Place of the Player from Scotland?###answer:SELECT place FROM table_name_36 WHERE country = "scotland"###context:CREATE TABLE table_name_36 (place VARCHAR, country VARCHAR)
###question:What is Steve Lowery's Place?###answer:SELECT place FROM table_name_78 WHERE player = "steve lowery"###context:CREATE TABLE table_name_78 (place VARCHAR, player VARCHAR)
###question:What was 1961's qual?###answer:SELECT qual FROM table_name_98 WHERE year = "1961"###context:CREATE TABLE table_name_98 (qual VARCHAR, year VARCHAR)
###question:What was 13's finish?###answer:SELECT finish FROM table_name_10 WHERE start = "13"###context:CREATE TABLE table_name_10 (finish VARCHAR, start VARCHAR)
###question:How many laps were in 1969?###answer:SELECT laps FROM table_name_95 WHERE year = "1969"###context:CREATE TABLE table_name_95 (laps VARCHAR, year VARCHAR)
###question:Which Rank has a Qual of 145.144?###answer:SELECT rank FROM table_name_68 WHERE qual = "145.144"###context:CREATE TABLE table_name_68 (rank VARCHAR, qual VARCHAR)
###question:What is the sources for Bandung?###answer:SELECT sources_of_pop___area FROM table_name_37 WHERE city = "bandung"###context:CREATE TABLE table_name_37 (sources_of_pop___area VARCHAR, city VARCHAR)
###question:What race happened at Iowa Speedway?###answer:SELECT race FROM table_name_91 WHERE track = "iowa speedway"###context:CREATE TABLE table_name_91 (race VARCHAR, track VARCHAR)
###question:Who won the Food World 250?###answer:SELECT winner FROM table_name_14 WHERE race = "food world 250"###context:CREATE TABLE table_name_14 (winner VARCHAR, race VARCHAR)
###question:What race happened at pocono on 08-02-2008?###answer:SELECT race FROM table_name_24 WHERE track = "pocono" AND date = "08-02-2008"###context:CREATE TABLE table_name_24 (race VARCHAR, track VARCHAR, date VARCHAR)
###question:What race happened on 04-25-2008?###answer:SELECT race FROM table_name_1 WHERE date = "04-25-2008"###context:CREATE TABLE table_name_1 (race VARCHAR, date VARCHAR)
###question:Where was the race on 09-13-2008?###answer:SELECT track FROM table_name_34 WHERE date = "09-13-2008"###context:CREATE TABLE table_name_34 (track VARCHAR, date VARCHAR)
###question:Which game number was played after March 11 and ended with a record of 26-30-10?###answer:SELECT MIN(game) FROM table_name_17 WHERE record = "26-30-10" AND march > 11###context:CREATE TABLE table_name_17 (game INTEGER, record VARCHAR, march VARCHAR)
###question:How many games total were played against @ Boston Bruins this season?###answer:SELECT SUM(game) FROM table_name_77 WHERE opponent = "@ boston bruins"###context:CREATE TABLE table_name_77 (game INTEGER, opponent VARCHAR)
###question:When was the earliest game date in March where the match ended with a record of 25-29-10?###answer:SELECT MIN(march) FROM table_name_32 WHERE record = "25-29-10"###context:CREATE TABLE table_name_32 (march INTEGER, record VARCHAR)
###question:How many points when John Vopni won a season before 1977?###answer:SELECT points FROM table_name_58 WHERE season < 1977 AND winner = "john vopni"###context:CREATE TABLE table_name_58 (points VARCHAR, season VARCHAR, winner VARCHAR)
###question:How many points when Bill Benson was the winner?###answer:SELECT points FROM table_name_95 WHERE winner = "bill benson"###context:CREATE TABLE table_name_95 (points VARCHAR, winner VARCHAR)
###question:Which team did Tyson Chandler (7) have high rebounds for?###answer:SELECT team FROM table_name_10 WHERE high_rebounds = "tyson chandler (7)"###context:CREATE TABLE table_name_10 (team VARCHAR, high_rebounds VARCHAR)
###question:How many high assists were on November 27?###answer:SELECT high_assists FROM table_name_10 WHERE date = "november 27"###context:CREATE TABLE table_name_10 (high_assists VARCHAR, date VARCHAR)
###question:What was the winning score in 1980?###answer:SELECT winning_score FROM table_name_51 WHERE year = 1980###context:CREATE TABLE table_name_51 (winning_score VARCHAR, year VARCHAR)
###question:What was the winning score in 1985 for Championship of u.s. women's open?###answer:SELECT winning_score FROM table_name_8 WHERE year < 1985 AND championship = "u.s. women's open"###context:CREATE TABLE table_name_8 (winning_score VARCHAR, year VARCHAR, championship VARCHAR)
###question:When was the runner-up Jane Geddes?###answer:SELECT year FROM table_name_35 WHERE runner_up = "jane geddes"###context:CREATE TABLE table_name_35 (year VARCHAR, runner_up VARCHAR)
###question:Which championship after 1985 had a winning score of –8 (68-72-69-71=280)?###answer:SELECT championship FROM table_name_17 WHERE year > 1985 AND winning_score = –8(68 - 72 - 69 - 71 = 280)###context:CREATE TABLE table_name_17 (championship VARCHAR, year VARCHAR, winning_score VARCHAR)
###question:What was the method of resolution for the fight against jake brown?###answer:SELECT method FROM table_name_77 WHERE opponent = "jake brown"###context:CREATE TABLE table_name_77 (method VARCHAR, opponent VARCHAR)
###question:On what team did John Bowe round winner at Winton Motor Raceway belong to?###answer:SELECT team FROM table_name_44 WHERE round_winner = "john bowe" AND circuit = "winton motor raceway"###context:CREATE TABLE table_name_44 (team VARCHAR, round_winner VARCHAR, circuit VARCHAR)
###question:What was the team features at Oran Park Raceway?###answer:SELECT team FROM table_name_41 WHERE circuit = "oran park raceway"###context:CREATE TABLE table_name_41 (team VARCHAR, circuit VARCHAR)
###question:Where is the Eastern Creek Raceway located?###answer:SELECT location___state FROM table_name_19 WHERE circuit = "eastern creek raceway"###context:CREATE TABLE table_name_19 (location___state VARCHAR, circuit VARCHAR)
###question:Which state was Dai from?###answer:SELECT state FROM table_name_9 WHERE name = "dai"###context:CREATE TABLE table_name_9 (state VARCHAR, name VARCHAR)
###question:What was Mu's title?###answer:SELECT title FROM table_name_6 WHERE name = "mu"###context:CREATE TABLE table_name_6 (title VARCHAR, name VARCHAR)
###question:what is the highest attendance for week 3?###answer:SELECT MAX(attendance) FROM table_name_34 WHERE week = 3###context:CREATE TABLE table_name_34 (attendance INTEGER, week VARCHAR)
###question:what is the result for the week higher than 7 on november 4, 1979?###answer:SELECT result FROM table_name_16 WHERE week > 7 AND date = "november 4, 1979"###context:CREATE TABLE table_name_16 (result VARCHAR, week VARCHAR, date VARCHAR)
###question:what is the lowest week when the date is september 16, 1979 and the attendance less than 54,212?###answer:SELECT MIN(week) FROM table_name_2 WHERE date = "september 16, 1979" AND attendance < 54 OFFSET 212###context:CREATE TABLE table_name_2 (week INTEGER, date VARCHAR, attendance VARCHAR)
###question:Which competition has stuart potts as the man of the match?###answer:SELECT competition FROM table_name_98 WHERE man_of_the_match = "stuart potts"###context:CREATE TABLE table_name_98 (competition VARCHAR, man_of_the_match VARCHAR)
###question:Which venue had a lost 5-4 result?###answer:SELECT venue FROM table_name_15 WHERE result = "lost 5-4"###context:CREATE TABLE table_name_15 (venue VARCHAR, result VARCHAR)
###question:What is the venue of the match with the wightlink raiders as the opponent?###answer:SELECT venue FROM table_name_9 WHERE opponent = "wightlink raiders"###context:CREATE TABLE table_name_9 (venue VARCHAR, opponent VARCHAR)
###question:What is the result of the league/cup competition with the swindon wildcats as the opponent and neil liddiard as the man of the match?###answer:SELECT result FROM table_name_45 WHERE competition = "league/cup" AND opponent = "swindon wildcats" AND man_of_the_match = "neil liddiard"###context:CREATE TABLE tab...
###question:What is the attendance of the match on the 2nd with the slough jets as the opponent?###answer:SELECT attendance FROM table_name_35 WHERE opponent = "slough jets" AND date = "2nd"###context:CREATE TABLE table_name_35 (attendance VARCHAR, opponent VARCHAR, date VARCHAR)
###question:What was the score when the total was 75–53?###answer:SELECT score FROM table_name_89 WHERE total = "75–53"###context:CREATE TABLE table_name_89 (score VARCHAR, total VARCHAR)
###question:What was the total when the set 3 was 25–14?###answer:SELECT total FROM table_name_80 WHERE set_3 = "25–14"###context:CREATE TABLE table_name_80 (total VARCHAR, set_3 VARCHAR)
###question:What date was the set 1 25–23, and a Set 3 of 25–14?###answer:SELECT date FROM table_name_12 WHERE set_1 = "25–23" AND set_3 = "25–14"###context:CREATE TABLE table_name_12 (date VARCHAR, set_1 VARCHAR, set_3 VARCHAR)
###question:What date was the Set 3 of 12–25?###answer:SELECT date FROM table_name_79 WHERE set_3 = "12–25"###context:CREATE TABLE table_name_79 (date VARCHAR, set_3 VARCHAR)
###question:What is the Set 3 when the total was 53–75?###answer:SELECT set_3 FROM table_name_26 WHERE total = "53–75"###context:CREATE TABLE table_name_26 (set_3 VARCHAR, total VARCHAR)
###question:What is the average win with a top 5 greater than 2 and a top 10 less than 5?###answer:SELECT AVG(wins) FROM table_name_99 WHERE top_5 > 2 AND top_10 < 5###context:CREATE TABLE table_name_99 (wins INTEGER, top_5 VARCHAR, top_10 VARCHAR)
###question:How many poles have 4 Starts of 4 and position of 46th?###answer:SELECT COUNT(poles) FROM table_name_20 WHERE starts = 4 AND position = "46th"###context:CREATE TABLE table_name_20 (poles VARCHAR, starts VARCHAR, position VARCHAR)
###question:Sum of m. night shyamalan ranks?###answer:SELECT SUM(rank) FROM table_name_41 WHERE director_s_ = "m. night shyamalan"###context:CREATE TABLE table_name_41 (rank INTEGER, director_s_ VARCHAR)
###question:Director for Star Wars Episode II: attack of the clones?###answer:SELECT director_s_ FROM table_name_92 WHERE title = "star wars episode ii: attack of the clones"###context:CREATE TABLE table_name_92 (director_s_ VARCHAR, title VARCHAR)
###question:What was the tie no when Oxford city was the away team?###answer:SELECT tie_no FROM table_name_39 WHERE away_team = "oxford city"###context:CREATE TABLE table_name_39 (tie_no VARCHAR, away_team VARCHAR)
###question:What was the tie no when Wrexham was the away team?###answer:SELECT tie_no FROM table_name_97 WHERE away_team = "wrexham"###context:CREATE TABLE table_name_97 (tie_no VARCHAR, away_team VARCHAR)
###question:What was the score when Spennymoor United as the away team?###answer:SELECT score FROM table_name_67 WHERE away_team = "spennymoor united"###context:CREATE TABLE table_name_67 (score VARCHAR, away_team VARCHAR)
###question:What date was Grimsby Town the away team?###answer:SELECT date FROM table_name_34 WHERE away_team = "grimsby town"###context:CREATE TABLE table_name_34 (date VARCHAR, away_team VARCHAR)
###question:Who was eliminated on Banana Night?###answer:SELECT name FROM table_name_33 WHERE eliminated = "banana night"###context:CREATE TABLE table_name_33 (name VARCHAR, eliminated VARCHAR)
###question:Who was the special guest when the category was vocal groups and the name was Romantic?###answer:SELECT special_guest FROM table_name_28 WHERE category = "vocal groups" AND name = "romantic"###context:CREATE TABLE table_name_28 (special_guest VARCHAR, category VARCHAR, name VARCHAR)
###question:On what date was elimination on final night?###answer:SELECT date FROM table_name_43 WHERE eliminated = "final night"###context:CREATE TABLE table_name_43 (date VARCHAR, eliminated VARCHAR)
###question:What is the total number of games for the opponent in Washington?###answer:SELECT COUNT(game) FROM table_name_89 WHERE opponent = "washington"###context:CREATE TABLE table_name_89 (game VARCHAR, opponent VARCHAR)
###question:How many stories have a height less than 138 meters with a completion date in 1971?###answer:SELECT stories FROM table_name_53 WHERE height__m_ < 138 AND year_of_completion = 1971###context:CREATE TABLE table_name_53 (stories VARCHAR, height__m_ VARCHAR, year_of_completion VARCHAR)
###question:What is the largest number of stories in Recife completed later than 2007 with a height less than 135 meters?###answer:SELECT MAX(stories) FROM table_name_38 WHERE location = "recife" AND year_of_completion > 2007 AND height__m_ < 135###context:CREATE TABLE table_name_38 (stories INTEGER, height__m_ VARCHAR...
###question:Which Sanskrit has an English of mindfulness of breathing?###answer:SELECT sanskrit FROM table_name_26 WHERE english = "mindfulness of breathing"###context:CREATE TABLE table_name_26 (sanskrit VARCHAR, english VARCHAR)
###question:Which Sanskrit has a Chinese of —, and an English of cultivation of settling?###answer:SELECT sanskrit FROM table_name_74 WHERE chinese = "—" AND english = "cultivation of settling"###context:CREATE TABLE table_name_74 (sanskrit VARCHAR, chinese VARCHAR, english VARCHAR)
###question:Which Pali has an English of mindfulness of breathing?###answer:SELECT pali FROM table_name_54 WHERE english = "mindfulness of breathing"###context:CREATE TABLE table_name_54 (pali VARCHAR, english VARCHAR)
###question:Which Pali has an English of meditative concentration?###answer:SELECT pali FROM table_name_74 WHERE english = "meditative concentration"###context:CREATE TABLE table_name_74 (pali VARCHAR, english VARCHAR)
###question:Which Chinese has a Pali of atappa?###answer:SELECT chinese FROM table_name_59 WHERE pali = "atappa"###context:CREATE TABLE table_name_59 (chinese VARCHAR, pali VARCHAR)
###question:Which English has a Sanskrit of samādhi?###answer:SELECT english FROM table_name_42 WHERE sanskrit = "samādhi"###context:CREATE TABLE table_name_42 (english VARCHAR, sanskrit VARCHAR)
###question:Who is the player in guard position from Stephen F. Austin in a round less than 8?###answer:SELECT player FROM table_name_60 WHERE round < 8 AND position = "guard" AND school_club_team = "stephen f. austin"###context:CREATE TABLE table_name_60 (player VARCHAR, school_club_team VARCHAR, round VARCHAR, positi...
###question:Which position has a pick less than 41 from Ohio State?###answer:SELECT position FROM table_name_31 WHERE pick < 41 AND school_club_team = "ohio state"###context:CREATE TABLE table_name_31 (position VARCHAR, pick VARCHAR, school_club_team VARCHAR)
###question:What shows for 2006 when 2002 is Grand Slam Tournaments?###answer:SELECT 2006 FROM table_name_52 WHERE 2002 = "grand slam tournaments"###context:CREATE TABLE table_name_52 (Id VARCHAR)
###question:What shows for 2002 when 2006 is Grand Slam Tournaments?###answer:SELECT 2002 FROM table_name_65 WHERE 2006 = "grand slam tournaments"###context:CREATE TABLE table_name_65 (Id VARCHAR)
###question:What shows for 2005 when 2002 shows 0–1?###answer:SELECT 2005 FROM table_name_16 WHERE 2002 = "0–1"###context:CREATE TABLE table_name_16 (Id VARCHAR)
###question:What shows for 2006 when 2002 is 0–1?###answer:SELECT 2006 FROM table_name_96 WHERE 2002 = "0–1"###context:CREATE TABLE table_name_96 (Id VARCHAR)
###question:What shows for 2002 when the 2004 is A, and the 2005 is 1r?###answer:SELECT 2002 FROM table_name_40 WHERE 2004 = "a" AND 2005 = "1r"###context:CREATE TABLE table_name_40 (Id VARCHAR)
###question:What shows for 2004 when 2005 is A, 2006 is A, tournament is US Open?###answer:SELECT 2004 FROM table_name_60 WHERE 2005 = "a" AND 2006 = "a" AND tournament = "us open"###context:CREATE TABLE table_name_60 (tournament VARCHAR)
###question:Who was the opponent on December 2, 1962?###answer:SELECT opponent FROM table_name_8 WHERE date = "december 2, 1962"###context:CREATE TABLE table_name_8 (opponent VARCHAR, date VARCHAR)