answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT COUNT(rank) FROM table_name_58 WHERE matches = "427" AND goals < 320
Can you tell me the total number of Rank that has the Matches of 427, and the Goals smaller than 320?
CREATE TABLE table_name_58 (rank VARCHAR, matches VARCHAR, goals VARCHAR)
SELECT played FROM table_name_38 WHERE lost = "20"
How many matches played are associated with 20 losses?
CREATE TABLE table_name_38 (played VARCHAR, lost VARCHAR)
SELECT COUNT(future_stem) FROM table_12784134_24 WHERE perfect_stem = "poztu"
What is the number for future stem for poztu?
CREATE TABLE table_12784134_24 (future_stem VARCHAR, perfect_stem VARCHAR)
SELECT color FROM table_name_19 WHERE thai_name = "วันพฤหัสบดี"
Show the Color which has a Thai name of วันพฤหัสบดี?
CREATE TABLE table_name_19 (color VARCHAR, thai_name VARCHAR)
SELECT MIN(total_medals) FROM table_name_76 WHERE ensemble = "madison independent" AND bronze_medals > 0
What is the lowest Total Medals that has madison independent and Bronze Medals larger than 0
CREATE TABLE table_name_76 (total_medals INTEGER, ensemble VARCHAR, bronze_medals VARCHAR)
SELECT starter FROM table_25711913_8 WHERE player = "Magoffin"
Was Magoffin a starting player?
CREATE TABLE table_25711913_8 (starter VARCHAR, player VARCHAR)
SELECT ict FROM table_23050383_1 WHERE education = "1.73" AND ki = "1.99"
What is the ICT when education is 1.73 and KI is ag 1.99?
CREATE TABLE table_23050383_1 (ict VARCHAR, education VARCHAR, ki VARCHAR)
SELECT penalties FROM table_name_20 WHERE gf = "40"
How many penalties were there in the game with a G.F. of 40?
CREATE TABLE table_name_20 (penalties VARCHAR, gf VARCHAR)
SELECT tire FROM table_name_20 WHERE sponsor = "duracell"
Which Tire has a Sponsor of Duracell?
CREATE TABLE table_name_20 (tire VARCHAR, sponsor VARCHAR)
SELECT MAX(interview) FROM table_name_19 WHERE state = "north carolina" AND evening_gown > 7.68
Tell me the highest interview for north carolina and evening gown more than 7.68
CREATE TABLE table_name_19 (interview INTEGER, state VARCHAR, evening_gown VARCHAR)
SELECT week FROM table_name_76 WHERE date = "october 17, 2004"
Which week was the October 17, 2004 game played?
CREATE TABLE table_name_76 (week VARCHAR, date VARCHAR)
SELECT sample_size FROM table_name_35 WHERE date = "may 2-7, 2007" AND democrat = "hillary clinton"
What was the sample size for polling on May 2-7, 2007 for Hillary Clinton?
CREATE TABLE table_name_35 (sample_size VARCHAR, date VARCHAR, democrat VARCHAR)
SELECT first_elected FROM table_name_82 WHERE party = "republican"
Who was the first elected for the republican party?
CREATE TABLE table_name_82 (first_elected VARCHAR, party VARCHAR)
SELECT gpu_frequency FROM table_name_50 WHERE part_number_s_ = "cw8064701470702"
what is the gpu frequency when the part number is cw8064701470702?
CREATE TABLE table_name_50 (gpu_frequency VARCHAR, part_number_s_ VARCHAR)
SELECT party FROM table_1805191_34 WHERE first_elected = 1998
Which party was elected first in 1998?
CREATE TABLE table_1805191_34 (party VARCHAR, first_elected VARCHAR)
SELECT COUNT(*) FROM station WHERE city = "Mountain View"
How many stations does Mountain View city has?
CREATE TABLE station (city VARCHAR)
SELECT SUM(byes) FROM table_name_70 WHERE draws = 1 AND wins = 5 AND losses < 12
What is the total number of byes that are associated with 1 draw, 5 wins, and fewer than 12 losses?
CREATE TABLE table_name_70 (byes INTEGER, losses VARCHAR, draws VARCHAR, wins VARCHAR)
SELECT tries_against FROM table_name_29 WHERE points_against = "961"
How many tries against were there when there was 961 points against?
CREATE TABLE table_name_29 (tries_against VARCHAR, points_against VARCHAR)
SELECT away_team AS score FROM table_name_73 WHERE venue = "western oval"
What is the away team's score at western oval?
CREATE TABLE table_name_73 (away_team VARCHAR, venue VARCHAR)
SELECT canadian_airdate FROM table_12294557_3 WHERE us_airdate = "May 1, 2009"
what are all the Canadian air dates where the u.s. air date is may 1, 2009
CREATE TABLE table_12294557_3 (canadian_airdate VARCHAR, us_airdate VARCHAR)
SELECT date_of_birth FROM table_12134383_1 WHERE _number = 2
what's the date of birth with # being 2
CREATE TABLE table_12134383_1 (date_of_birth VARCHAR, _number VARCHAR)
SELECT overs FROM table_15893020_2 WHERE player = "Oliver Hannon-Dalby"
How many overs did Oliver Hannon-Dalby have?
CREATE TABLE table_15893020_2 (overs VARCHAR, player VARCHAR)
SELECT MAX(rank) FROM table_21100348_15 WHERE player = "Rodney Marsh"
What rank does Rodney Marsh have?
CREATE TABLE table_21100348_15 (rank INTEGER, player VARCHAR)
SELECT record FROM table_name_24 WHERE home = "dallas mavericks"
What is the record for the game when the Dallas Mavericks was the home team?
CREATE TABLE table_name_24 (record VARCHAR, home VARCHAR)
SELECT MAX(laps) FROM table_name_1 WHERE drivers = "glenn seton gregg hansford"
What were the highest laps for glenn seton gregg hansford?
CREATE TABLE table_name_1 (laps INTEGER, drivers VARCHAR)
SELECT founding_university FROM table_2538117_5 WHERE organization = "Tau Epsilon Phi 1"
What was the founding university of the organization Tau Epsilon Phi 1?
CREATE TABLE table_2538117_5 (founding_university VARCHAR, organization VARCHAR)
SELECT MAX(attendance) FROM table_name_26 WHERE date = "august 28"
What was the Attendance high on August 28?
CREATE TABLE table_name_26 (attendance INTEGER, date VARCHAR)
SELECT MAX(poles) FROM table_24330803_1 WHERE season = 2011
How many pole positions were there for the 2011 season?
CREATE TABLE table_24330803_1 (poles INTEGER, season VARCHAR)
SELECT highest FROM table_11206787_5 WHERE stadium = "Balmoor"
What is the highest of balmoor/
CREATE TABLE table_11206787_5 (highest VARCHAR, stadium VARCHAR)
SELECT MAX(tonnage__grt_) FROM table_name_52 WHERE date = "16 june 1940"
Which Tonnage (GRT) is the highest one that has a Date of 16 june 1940?
CREATE TABLE table_name_52 (tonnage__grt_ INTEGER, date VARCHAR)
SELECT home_team FROM table_name_61 WHERE week = "1"
What is the home team in week 1?
CREATE TABLE table_name_61 (home_team VARCHAR, week VARCHAR)
SELECT player FROM table_name_37 WHERE score = 70 - 69 = 139
Who was the player with a score of 70-69=139?
CREATE TABLE table_name_37 (player VARCHAR, score VARCHAR)
SELECT away_team FROM table_name_13 WHERE home_team = "hawthorn"
Who is the away team that played home team Hawthorn?
CREATE TABLE table_name_13 (away_team VARCHAR, home_team VARCHAR)
SELECT touchdowns FROM table_14342592_5 WHERE points = 22
When the total points are 22 how many total touchdowns have been made?
CREATE TABLE table_14342592_5 (touchdowns VARCHAR, points VARCHAR)
SELECT internet_explorer FROM table_name_53 WHERE firefox = "20.01%"
What percentage of users were using Internet Explorer according to the source that reported 20.01% used Firefox?
CREATE TABLE table_name_53 (internet_explorer VARCHAR, firefox VARCHAR)
SELECT place FROM table_name_19 WHERE country = "japan"
Where did Japan place?
CREATE TABLE table_name_19 (place VARCHAR, country VARCHAR)
SELECT AVG(budget_million), MAX(budget_million), MIN(budget_million) FROM movie WHERE YEAR < 2000
What is the average, maximum, and minimum budget for all movies before 2000.
CREATE TABLE movie (budget_million INTEGER, YEAR INTEGER)
SELECT s_wicket FROM table_name_68 WHERE player = "shaun young"
Which value for s wicket is associated with Shaun Young?
CREATE TABLE table_name_68 (s_wicket VARCHAR, player VARCHAR)
SELECT record FROM table_27539535_4 WHERE game = 13
What is every record for game 13?
CREATE TABLE table_27539535_4 (record VARCHAR, game VARCHAR)
SELECT COUNT(other_placings) FROM table_2305948_1 WHERE federation = "ROH, WWE"
How many times has a wrestler whose federation was roh, wwe competed in this event?
CREATE TABLE table_2305948_1 (other_placings VARCHAR, federation VARCHAR)
SELECT result FROM table_name_95 WHERE week < 7 AND opponent = "bye"
What is the result for the game before week 7 against BYE?
CREATE TABLE table_name_95 (result VARCHAR, week VARCHAR, opponent VARCHAR)
SELECT nationality FROM table_name_59 WHERE position = "guard" AND school_club_team = "notre dame"
What is the Nationality of the player who had Position of guard from School/Club Team Notre Dame?
CREATE TABLE table_name_59 (nationality VARCHAR, position VARCHAR, school_club_team VARCHAR)
SELECT AVG(2008) FROM table_name_74 WHERE airport = "julius nyerere international airport"
Which 2008 has an Airport of julius nyerere international airport?
CREATE TABLE table_name_74 (airport VARCHAR)
SELECT home_team AS score FROM table_name_90 WHERE home_team = "south melbourne"
What was South Melbourne's home team score?
CREATE TABLE table_name_90 (home_team VARCHAR)
SELECT district FROM table_name_21 WHERE party = "republican" AND results = "re-elected"
What district re-elected a Republican?
CREATE TABLE table_name_21 (district VARCHAR, party VARCHAR, results VARCHAR)
SELECT winning_team FROM table_name_21 WHERE most_laps_led = "alex tagliani"
What is Winning Team, when Most Laps Led is Alex Tagliani?
CREATE TABLE table_name_21 (winning_team VARCHAR, most_laps_led VARCHAR)
SELECT MIN(points) FROM table_name_85 WHERE game < 70 AND score = "4–8"
Which Points have a Game smaller than 70, and a Score of 4–8?
CREATE TABLE table_name_85 (points INTEGER, game VARCHAR, score VARCHAR)
SELECT AVG(played) FROM table_name_45 WHERE points < 18 AND position < 8
What is the mean number of played when there are less than 18 points and the position is less than 8?
CREATE TABLE table_name_45 (played INTEGER, points VARCHAR, position VARCHAR)
SELECT location FROM table_name_16 WHERE district = "salem district"
What is the location of the salem district?
CREATE TABLE table_name_16 (location VARCHAR, district VARCHAR)
SELECT codename FROM table_27329061_2 WHERE code_base = "Ubuntu 8.04" AND edition = "Fluxbox CE"
What is the the codename when the code base is ubuntu 8.04 and the edition is fluxbox ce?
CREATE TABLE table_27329061_2 (codename VARCHAR, code_base VARCHAR, edition VARCHAR)
SELECT TYPE FROM ship WHERE flag = 'Panama' INTERSECT SELECT TYPE FROM ship WHERE flag = 'Malta'
Find the ship type that are used by both ships with Panama and Malta flags.
CREATE TABLE ship (TYPE VARCHAR, flag VARCHAR)
SELECT time___et__ FROM table_name_9 WHERE week = 1
What time did the game start during week 1?
CREATE TABLE table_name_9 (time___et__ VARCHAR, week VARCHAR)
SELECT rank FROM table_name_17 WHERE cause_of_death = "gunfire" AND badge_serial_number = "11755"
What is the Rank of the Officer with Badge/Serial Number 11755 who died in Gunfire?
CREATE TABLE table_name_17 (rank VARCHAR, cause_of_death VARCHAR, badge_serial_number VARCHAR)
SELECT COUNT(black_knights_points) FROM table_21091145_1 WHERE game = 3
Name the number of black knights points for 3 game
CREATE TABLE table_21091145_1 (black_knights_points VARCHAR, game VARCHAR)
SELECT shooter FROM table_name_16 WHERE score_points = "13" AND event = "wc kerrville"
Who got 13 score points at wc kerrville?
CREATE TABLE table_name_16 (shooter VARCHAR, score_points VARCHAR, event VARCHAR)
SELECT COUNT(*) FROM courses AS T1 JOIN student_course_attendance AS T2 ON T1.course_id = T2.course_id WHERE T2.student_id = 171
How many courses do the student whose id is 171 attend?
CREATE TABLE courses (course_id VARCHAR); CREATE TABLE student_course_attendance (course_id VARCHAR, student_id VARCHAR)
SELECT to_par FROM table_name_15 WHERE player = "willie wood"
What was willie wood's to par?
CREATE TABLE table_name_15 (to_par VARCHAR, player VARCHAR)
SELECT MIN(overall) FROM table_name_91 WHERE round = 8
What is the overall pick number for the player who was picked on round 8?
CREATE TABLE table_name_91 (overall INTEGER, round VARCHAR)
SELECT MIN(finished) FROM table_name_70 WHERE post < 2
What is the lowest Finished, when Post is less than 2?
CREATE TABLE table_name_70 (finished INTEGER, post INTEGER)
SELECT COUNT(team) FROM table_23285761_11 WHERE high_rebounds = "Channing Frye, Jason Richardson (8)"
How many teams have channing frye, jason richardson (8) as high rebounds?
CREATE TABLE table_23285761_11 (team VARCHAR, high_rebounds VARCHAR)
SELECT outcome FROM table_name_32 WHERE score = "0–3 (11–21, 14–21)"
Score of 0–3 (11–21, 14–21) had what outcome?
CREATE TABLE table_name_32 (outcome VARCHAR, score VARCHAR)
SELECT T1.staff_name, T1.staff_gender FROM staff AS T1 JOIN Staff_Department_Assignments AS T2 ON T1.staff_id = T2.staff_id WHERE T2.job_title_code = "Sales Person" EXCEPT SELECT T1.staff_name, T1.staff_gender FROM staff AS T1 JOIN Staff_Department_Assignments AS T2 ON T1.staff_id = T2.staff_id WHERE T2.job_title_code ...
Find the name and gender of the staff who has been assigned the job of Sales Person but never Clerical Staff.
CREATE TABLE staff (staff_name VARCHAR, staff_gender VARCHAR, staff_id VARCHAR); CREATE TABLE Staff_Department_Assignments (staff_id VARCHAR, job_title_code VARCHAR)
SELECT engine FROM table_name_85 WHERE year = 1961
What engine was in the year of 1961?
CREATE TABLE table_name_85 (engine VARCHAR, year VARCHAR)
SELECT finished FROM table_14345690_4 WHERE exited = "Day 13"
Name the finished for exited day 13
CREATE TABLE table_14345690_4 (finished VARCHAR, exited VARCHAR)
SELECT SUM(s_barangay) FROM table_name_72 WHERE area___has__ > 865.13
What is the total of Barangay with an area larger than 865.13?
CREATE TABLE table_name_72 (s_barangay INTEGER, area___has__ INTEGER)
SELECT rider_status FROM table_name_77 WHERE team_country = "netherlands" AND year = 1971
What is the rider status for the 1971 netherlands team?
CREATE TABLE table_name_77 (rider_status VARCHAR, team_country VARCHAR, year VARCHAR)
SELECT 1938 FROM table_name_49 WHERE 1948 = "n/a"
What is the 1938 that has N/A for 1948?
CREATE TABLE table_name_49 (Id VARCHAR)
SELECT SUM(long) FROM table_name_47 WHERE yards = 926 AND avg_g < 84.2
What is the sum for the long that has 926 yards and an avg/g less than 84.2?
CREATE TABLE table_name_47 (long INTEGER, yards VARCHAR, avg_g VARCHAR)
SELECT SUM(time) FROM table_name_15 WHERE react < 0.20400000000000001 AND rank = 1
Which Time has a Reaction smaller than 0.20400000000000001, and a Rank of 1?
CREATE TABLE table_name_15 (time INTEGER, react VARCHAR, rank VARCHAR)
SELECT original_airdate FROM table_29039942_1 WHERE writer = "Daisuke Habara" AND director = "Akimitsu Sasaki"
What was the original airdate for the episode written by daisuke habara and directed by akimitsu sasaki
CREATE TABLE table_29039942_1 (original_airdate VARCHAR, writer VARCHAR, director VARCHAR)
SELECT name FROM stadium EXCEPT SELECT T2.name FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.year = 2014
Show names for all stadiums except for stadiums having a concert in year 2014.
CREATE TABLE stadium (name VARCHAR, stadium_id VARCHAR); CREATE TABLE concert (stadium_id VARCHAR, year VARCHAR); CREATE TABLE stadium (name VARCHAR)
SELECT surface FROM table_23258574_2 WHERE championship = "Wimbledon" AND year = 1974
What was the surface during wimbledon in 1974?
CREATE TABLE table_23258574_2 (surface VARCHAR, championship VARCHAR, year VARCHAR)
SELECT score FROM table_name_24 WHERE tournament = "tampere , finland"
What is Score, when Tournament is "Tampere , Finland"?
CREATE TABLE table_name_24 (score VARCHAR, tournament VARCHAR)
SELECT MAX(game) FROM table_27721131_2 WHERE high_rebounds = "JaVale McGee (5)"
What's the maximum game in the javale mcgee (5) high rebounds?
CREATE TABLE table_27721131_2 (game INTEGER, high_rebounds VARCHAR)
SELECT nationality FROM table_name_51 WHERE player = "rudy poeschek"
Which Nationality has a Player of rudy poeschek?
CREATE TABLE table_name_51 (nationality VARCHAR, player VARCHAR)
SELECT MIN(gold) FROM table_name_24 WHERE bronze = 0 AND total < 2 AND silver < 0
What is the lowest gold when there are 0 bronze and the total is less than 2, and silver is less than 0?
CREATE TABLE table_name_24 (gold INTEGER, silver VARCHAR, bronze VARCHAR, total VARCHAR)
SELECT date FROM table_name_10 WHERE winning_score = –7(67 - 72 - 69 - 69 = 277)
What was the date of the match with a winning score of –7 (67-72-69-69=277)?
CREATE TABLE table_name_10 (date VARCHAR, winning_score VARCHAR)
SELECT AVG(bask) FROM table_name_17 WHERE soft = "18" AND total > 35
Which Bask has Soft of 18, and a Total larger than 35?
CREATE TABLE table_name_17 (bask INTEGER, soft VARCHAR, total VARCHAR)
SELECT result FROM table_19753079_13 WHERE district = "Georgia 8"
What was the result of the Georgia 8 district?
CREATE TABLE table_19753079_13 (result VARCHAR, district VARCHAR)
SELECT report FROM table_1140076_2 WHERE race = "San Marino Grand Prix"
What is the report listed for the race in San Marino Grand Prix?
CREATE TABLE table_1140076_2 (report VARCHAR, race VARCHAR)
SELECT couple FROM table_23662272_4 WHERE total_points_earned = 161
What is the name of the couple if the total points earned is 161?
CREATE TABLE table_23662272_4 (couple VARCHAR, total_points_earned VARCHAR)
SELECT SUM(first_time_as_hc_climb) FROM table_name_82 WHERE no_of_hc_climbs > 1 AND no_of_times_visited > 29 AND most_recent > 2012
When was the first HC climb which, more recently than 2012, had more than 1 HC climbs, more than 29 times visited?
CREATE TABLE table_name_82 (first_time_as_hc_climb INTEGER, most_recent VARCHAR, no_of_hc_climbs VARCHAR, no_of_times_visited VARCHAR)
SELECT MAX(grid) FROM table_name_89 WHERE laps > 137 AND rank < 8
Name the highest grid for Laps more than 137 and rank is less than 8
CREATE TABLE table_name_89 (grid INTEGER, laps VARCHAR, rank VARCHAR)
SELECT T3.Name FROM affected_region AS T1 JOIN region AS T2 ON T1.region_id = T2.region_id JOIN storm AS T3 ON T1.storm_id = T3.storm_id WHERE T2.Region_name = 'Afghanistan' INTERSECT SELECT T3.Name FROM affected_region AS T1 JOIN region AS T2 ON T1.region_id = T2.region_id JOIN storm AS T3 ON T1.storm_id = T3.storm_id...
Find the name of the storm that affected both Afghanistan and Albania regions.
CREATE TABLE storm (Name VARCHAR, storm_id VARCHAR); CREATE TABLE affected_region (region_id VARCHAR, storm_id VARCHAR); CREATE TABLE region (region_id VARCHAR, Region_name VARCHAR)
SELECT launched FROM table_12592074_1 WHERE commissioned_or_completed_ * _ = "6 June 1864"
When was the ship launched when the commissioned or completed(*) is 6 june 1864?
CREATE TABLE table_12592074_1 (launched VARCHAR, commissioned_or_completed_ VARCHAR, _ VARCHAR)
SELECT SUM(races) FROM table_name_40 WHERE podiums > 4 AND season = "2007"
What is the sum of the races in the 2007 season, which has more than 4 podiums?
CREATE TABLE table_name_40 (races INTEGER, podiums VARCHAR, season VARCHAR)
SELECT Sex FROM Student WHERE Fname = "Linda" AND Lname = "Smith"
What is the gender of the student Linda Smith?
CREATE TABLE Student (Sex VARCHAR, Fname VARCHAR, Lname VARCHAR)
SELECT AVG(campusfee) FROM csu_fees WHERE YEAR = 2005
What is the average fee on a CSU campus in 2005?
CREATE TABLE csu_fees (campusfee INTEGER, YEAR VARCHAR)
SELECT venue FROM table_name_39 WHERE score = "0:0" AND season > 2010 AND team_1 = "t&t hanoi"
Which Venue has a Score of 0:0, a Season larger than 2010, and a Team 1 of t&t hanoi?
CREATE TABLE table_name_39 (venue VARCHAR, team_1 VARCHAR, score VARCHAR, season VARCHAR)
SELECT SUM(races) FROM table_name_28 WHERE points = 257
What is the number of races that took place with points of 257?
CREATE TABLE table_name_28 (races INTEGER, points VARCHAR)
SELECT MAX(date) FROM table_name_56 WHERE number = "infec 107cdsx"
What is the latest date that has a serial number of Infec 107CDSX?
CREATE TABLE table_name_56 (date INTEGER, number VARCHAR)
SELECT date FROM table_name_55 WHERE margin_of_victory = "playoff" AND runner_s__up = "yueh-chyn huang"
Which date was the event that Yani won in a playoff over Yueh-Chyn Huang?
CREATE TABLE table_name_55 (date VARCHAR, margin_of_victory VARCHAR, runner_s__up VARCHAR)
SELECT position_in_table FROM table_18788823_5 WHERE date_of_vacancy = "4 November 2008"
Which vacancy happened on 4 November 2008?
CREATE TABLE table_18788823_5 (position_in_table VARCHAR, date_of_vacancy VARCHAR)
SELECT record FROM table_name_24 WHERE game = 24
What is Record, when Game is "24"?
CREATE TABLE table_name_24 (record VARCHAR, game VARCHAR)
SELECT team FROM table_name_80 WHERE points = 0 AND time_retired = "contact" AND laps = 71
What team has 0 points and a contact tired/retired, and 71 laps?
CREATE TABLE table_name_80 (team VARCHAR, laps VARCHAR, points VARCHAR, time_retired VARCHAR)
SELECT score FROM table_name_64 WHERE result = "draw" AND opponent = "arema malang"
For the match against Arema Malang that ended in a draw, what was the final score?
CREATE TABLE table_name_64 (score VARCHAR, result VARCHAR, opponent VARCHAR)
SELECT SUM(round) FROM table_name_21 WHERE pick = 13
How many rounds have a Pick of 13?
CREATE TABLE table_name_21 (round INTEGER, pick VARCHAR)
SELECT score FROM table_name_31 WHERE round = "playoff"
What was the score of the match that took place in the playoff round?
CREATE TABLE table_name_31 (score VARCHAR, round VARCHAR)
SELECT series FROM table_name_49 WHERE city___state = "sydney, new south wales"
what series was in sydney, new south wales?
CREATE TABLE table_name_49 (series VARCHAR, city___state VARCHAR)
SELECT venue FROM table_name_64 WHERE score = "20½–11½"
what is the venue when the score is 20½–11½?
CREATE TABLE table_name_64 (venue VARCHAR, score VARCHAR)