answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT MAX(capacity) FROM table_name_19 WHERE club = "vihren"
What is the highest capacity for the venue of the club, vihren?
CREATE TABLE table_name_19 (capacity INTEGER, club VARCHAR)
SELECT 2 AS nd_run FROM table_name_69 WHERE rank < 6 AND total = 3
What 2nd run has a less than 6 rank, and 3 as the total?
CREATE TABLE table_name_69 (rank VARCHAR, total VARCHAR)
SELECT T2.Crime_rate FROM city AS T1 JOIN county_public_safety AS T2 ON T1.County_ID = T2.County_ID WHERE T1.White > 90
Show the crime rate of counties with a city having white percentage more than 90.
CREATE TABLE county_public_safety (Crime_rate VARCHAR, County_ID VARCHAR); CREATE TABLE city (County_ID VARCHAR, White INTEGER)
SELECT customer_name FROM customers EXCEPT SELECT t1.customer_name FROM customers AS t1 JOIN customer_orders AS t2 ON t1.customer_id = t2.customer_id
Find the names of customers who never placed an order.
CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR)
SELECT written_by FROM table_2701851_5 WHERE no_in_series = "46b"
Who wrote the episode in the series 46b?
CREATE TABLE table_2701851_5 (written_by VARCHAR, no_in_series VARCHAR)
SELECT try_bonus FROM table_13940275_5 WHERE club = "Abercwmboi RFC"
what's the try bonus with club being abercwmboi rfc
CREATE TABLE table_13940275_5 (try_bonus VARCHAR, club VARCHAR)
SELECT date FROM table_name_9 WHERE opponent = "kentucky" AND loss = "ragle"
On what date was Kentucky the opponent, and Ragle lost?
CREATE TABLE table_name_9 (date VARCHAR, opponent VARCHAR, loss VARCHAR)
SELECT COUNT(part_4) FROM table_1745843_10 WHERE verb_meaning = "to bear"
How many verbs mean to bear
CREATE TABLE table_1745843_10 (part_4 VARCHAR, verb_meaning VARCHAR)
SELECT score FROM table_name_76 WHERE record = "2-2"
What was the score of the game where the record was 2-2?
CREATE TABLE table_name_76 (score VARCHAR, record VARCHAR)
SELECT date FROM table_name_17 WHERE set_2 = "21:12"
What is the date of the 21:12 Set 2?
CREATE TABLE table_name_17 (date VARCHAR, set_2 VARCHAR)
SELECT rider FROM table_name_44 WHERE team = "600cc yamaha"
Which rider was on the 600cc Yamaha team?
CREATE TABLE table_name_44 (rider VARCHAR, team VARCHAR)
SELECT home_team AS score FROM table_name_16 WHERE home_team = "melbourne"
What was Melbourne's score as the home team?
CREATE TABLE table_name_16 (home_team VARCHAR)
SELECT AVG(round) FROM table_name_41 WHERE position = "safety" AND overall > 89
What is the average round in which a Safety with an overall rank higher than 89 was drafted?
CREATE TABLE table_name_41 (round INTEGER, position VARCHAR, overall VARCHAR)
SELECT ncaat_record FROM table_18025024_7 WHERE date = "June 21"
What is the June 21 ncaat baseball record for Fresno State Bulldogs?
CREATE TABLE table_18025024_7 (ncaat_record VARCHAR, date VARCHAR)
SELECT COUNT(points) FROM table_name_73 WHERE class = "350cc" AND rank = "5th"
How many points did ginger have when she was ranked 5th on a 350cc class bike?
CREATE TABLE table_name_73 (points VARCHAR, class VARCHAR, rank VARCHAR)
SELECT COUNT(rank) FROM table_1682026_9 WHERE profits__billion_$_ = "9.52"
Name the number of rank for 9.52 profits
CREATE TABLE table_1682026_9 (rank VARCHAR, profits__billion_$_ VARCHAR)
SELECT score FROM table_name_64 WHERE player = "nick taylor (a)"
What is the score of Nick Taylor (a)?
CREATE TABLE table_name_64 (score VARCHAR, player VARCHAR)
SELECT MIN(round) FROM table_name_25 WHERE college = "washington state" AND pick < 48
What is the lowest Round, when College is "Washington State", and when Pick is less than 48?
CREATE TABLE table_name_25 (round INTEGER, college VARCHAR, pick VARCHAR)
SELECT T1.organisation_type FROM Organisations AS T1 JOIN Research_Staff AS T2 ON T1.organisation_id = T2.employer_organisation_id GROUP BY T1.organisation_type ORDER BY COUNT(*) DESC LIMIT 1
Which organisation type hires most research staff?
CREATE TABLE Research_Staff (employer_organisation_id VARCHAR); CREATE TABLE Organisations (organisation_type VARCHAR, organisation_id VARCHAR)
SELECT player FROM table_name_27 WHERE to_par = "–1"
What is the name of the player that has a To par of –1?
CREATE TABLE table_name_27 (player VARCHAR, to_par VARCHAR)
SELECT area__percentage_of_eu FROM table_name_39 WHERE population_in_millions = 16.4
What is the area % of EU with 16.4 population in millions?
CREATE TABLE table_name_39 (area__percentage_of_eu VARCHAR, population_in_millions VARCHAR)
SELECT opponent FROM table_name_16 WHERE date = "august 30"
Who was the opponent on August 30?
CREATE TABLE table_name_16 (opponent VARCHAR, date VARCHAR)
SELECT producer FROM table_18943444_1 WHERE product = "金必氏牌嬰幼兒配方乳粉"
Who is the producer of 金必氏牌嬰幼兒配方乳粉 ?
CREATE TABLE table_18943444_1 (producer VARCHAR, product VARCHAR)
SELECT home_team FROM table_name_73 WHERE away_team = "footscray"
What home team played against Footscray as the away team?
CREATE TABLE table_name_73 (home_team VARCHAR, away_team VARCHAR)
SELECT original_title FROM table_20061872_1 WHERE film_title_used_in_nomination = "Zozo"
What's the original title of the film Zozo?
CREATE TABLE table_20061872_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT COUNT(episode_title) FROM table_13505192_3 WHERE series_number = 35
How many episodes have a series number of 35?
CREATE TABLE table_13505192_3 (episode_title VARCHAR, series_number VARCHAR)
SELECT 2002 FROM table_name_85 WHERE 2010 = "69"
What shows for 2002 when 2010 shows 69?
CREATE TABLE table_name_85 (Id VARCHAR)
SELECT _percentage_40_59 FROM table_23606500_4 WHERE _percentage_60_74 = "12,42%"
What is every value for % 40-59 if % 60-74 is 12,42%?
CREATE TABLE table_23606500_4 (_percentage_40_59 VARCHAR, _percentage_60_74 VARCHAR)
SELECT MAX(season) FROM table_name_7 WHERE percentage = "67%" AND driver = "alberto ascari"
Which is the highest Season with a Percentage of 67% and Alberto Ascari as a Driver?
CREATE TABLE table_name_7 (season INTEGER, percentage VARCHAR, driver VARCHAR)
SELECT high_assists FROM table_17344582_11 WHERE high_rebounds = "K. McHale (10)"
List of high assists with high rebounds for k. mchale (10)
CREATE TABLE table_17344582_11 (high_assists VARCHAR, high_rebounds VARCHAR)
SELECT away_team AS score FROM table_name_94 WHERE home_team = "south melbourne"
How many points did the visiting team score at south melbourne?
CREATE TABLE table_name_94 (away_team VARCHAR, home_team VARCHAR)
SELECT lanier FROM table_name_60 WHERE cardwell = "20%"
What Lanier has a Cardwell of 20%?
CREATE TABLE table_name_60 (lanier VARCHAR, cardwell VARCHAR)
SELECT COUNT(*) FROM Person WHERE age > (SELECT MAX(age) FROM person WHERE job = 'engineer')
Find the number of people whose age is greater than all engineers.
CREATE TABLE Person (age INTEGER, job VARCHAR); CREATE TABLE person (age INTEGER, job VARCHAR)
SELECT COUNT(week) FROM table_10646790_2 WHERE date = "October 11, 1969"
How many weeks are there that include the date October 11, 1969.
CREATE TABLE table_10646790_2 (week VARCHAR, date VARCHAR)
SELECT RESULT, COUNT(*) FROM music_festival GROUP BY RESULT ORDER BY COUNT(*) DESC
Please show the results of music festivals and the number of music festivals that have had each, ordered by this count.
CREATE TABLE music_festival (RESULT VARCHAR)
SELECT MIN(rank) FROM table_name_60 WHERE name = "jeremiah massey" AND games < 20
What is the lowest Rank, when Name is Jeremiah Massey, and when Games is less than 20?
CREATE TABLE table_name_60 (rank INTEGER, name VARCHAR, games VARCHAR)
SELECT actor_actress FROM table_name_88 WHERE tenure = "2008–2011" AND character = "stella dagostino"
What Actor/Actress a Tenure of 2008–2011 played Stella Dagostino?
CREATE TABLE table_name_88 (actor_actress VARCHAR, tenure VARCHAR, character VARCHAR)
SELECT country FROM table_17596418_5 WHERE loan_club = "Fulham"
what ist he country where the loan club is fulham?
CREATE TABLE table_17596418_5 (country VARCHAR, loan_club VARCHAR)
SELECT SUM(until) FROM table_name_80 WHERE titles = "5"
What is the total Until when the Titles was 5?
CREATE TABLE table_name_80 (until INTEGER, titles VARCHAR)
SELECT COUNT(week) FROM table_name_34 WHERE attendance = 54 OFFSET 015
Which week's game was attended by 54,015 people?
CREATE TABLE table_name_34 (week VARCHAR, attendance VARCHAR)
SELECT home_team FROM table_name_3 WHERE away_team = "frickley athletic"
What was the home team when the away team was Frickley Athletic?
CREATE TABLE table_name_3 (home_team VARCHAR, away_team VARCHAR)
SELECT outcome_of_election FROM table_name_26 WHERE share_of_votes = "43.3%"
What is the outcome of the election with 43.3% share of votes?
CREATE TABLE table_name_26 (outcome_of_election VARCHAR, share_of_votes VARCHAR)
SELECT SUM(graduated) FROM table_name_94 WHERE player = "omar gonzalez"
What year did Omar Gonzalez graduate?
CREATE TABLE table_name_94 (graduated INTEGER, player VARCHAR)
SELECT mixed_doubles FROM table_name_93 WHERE year = 2006
Which mixed doubles was featured in 2006?
CREATE TABLE table_name_93 (mixed_doubles VARCHAR, year VARCHAR)
SELECT record FROM table_name_14 WHERE event = "ufc 115"
What is his record at ufc 115?
CREATE TABLE table_name_14 (record VARCHAR, event VARCHAR)
SELECT chassis FROM table_name_31 WHERE year > 1989
What Chassis has a year later than 1989?
CREATE TABLE table_name_31 (chassis VARCHAR, year INTEGER)
SELECT class FROM table_19897896_7 WHERE position = "Forward"
in which class is the position forward
CREATE TABLE table_19897896_7 (class VARCHAR, position VARCHAR)
SELECT home_captain FROM table_name_22 WHERE venue = "edgbaston"
Who is the home captain that played at Edgbaston?
CREATE TABLE table_name_22 (home_captain VARCHAR, venue VARCHAR)
SELECT opponent FROM table_name_43 WHERE ground = "waca ground" AND score = "79"
Who played on waca ground and scored 79 points?
CREATE TABLE table_name_43 (opponent VARCHAR, ground VARCHAR, score VARCHAR)
SELECT assist_pass FROM table_name_54 WHERE date = "2008-01-16" AND score = "2-0"
What is the assist/pass on 2008-01-16 when the score was 2-0?
CREATE TABLE table_name_54 (assist_pass VARCHAR, date VARCHAR, score VARCHAR)
SELECT candidates FROM table_1342270_17 WHERE incumbent = "Noble Jones Gregory"
Who were the candidates when Noble Jones Gregory was incumbent?
CREATE TABLE table_1342270_17 (candidates VARCHAR, incumbent VARCHAR)
SELECT MIN(wins) FROM table_15829930_5 WHERE success_rate = "56.25%"
Name the least wins of 56.25%
CREATE TABLE table_15829930_5 (wins INTEGER, success_rate VARCHAR)
SELECT AVG(fa_cup_goals) FROM table_name_33 WHERE other_goals = 0 AND fl_cup_goals = 0 AND league_goals < 39
What is the average FA Cup Goal value for players that have 0 Other goals, 0 FL Cup goals, and fewer than 39 League goals?
CREATE TABLE table_name_33 (fa_cup_goals INTEGER, league_goals VARCHAR, other_goals VARCHAR, fl_cup_goals VARCHAR)
SELECT MIN(top_5) FROM table_2182562_2 WHERE avg_finish = "8.2"
What was the top 5 in the year with an average finish of 8.2?
CREATE TABLE table_2182562_2 (top_5 INTEGER, avg_finish VARCHAR)
SELECT supercopa_sudamericana_1992 FROM table_name_83 WHERE team = "santos"
Which Supercopa Sudamericana 1992 has a Team of santos?
CREATE TABLE table_name_83 (supercopa_sudamericana_1992 VARCHAR, team VARCHAR)
SELECT SUM(launch_failures) FROM table_name_73 WHERE launched = 4 AND not_usable > 0
What is the total launch failures when there are 4 launches, and the not usable is greater than 0?
CREATE TABLE table_name_73 (launch_failures INTEGER, launched VARCHAR, not_usable VARCHAR)
SELECT liberal FROM table_name_23 WHERE new_democratic = "36%" AND dates = "august 2008"
What percentage of people polled aligned with the Liberal party according to the August 2008 poll that reported 36% aligning with New Democratic party?
CREATE TABLE table_name_23 (liberal VARCHAR, new_democratic VARCHAR, dates VARCHAR)
SELECT COUNT(wins) FROM table_name_67 WHERE top_25 = 10 AND events < 26
Name the total number of wins with top-25 of 10 and events less than 26
CREATE TABLE table_name_67 (wins VARCHAR, top_25 VARCHAR, events VARCHAR)
SELECT AVG(upper_index_mj__nm_3) FROM table_name_70 WHERE upper_index_kcal__nm_3 = 19 OFFSET 376
What is the average upper index MJ/Nm 3 for the upper index Kcal/Nm 3 entry of 19,376?
CREATE TABLE table_name_70 (upper_index_mj__nm_3 INTEGER, upper_index_kcal__nm_3 VARCHAR)
SELECT MAX(position) FROM table_name_19 WHERE team = "rossendale united" AND played > 34
What was the highest position for Rossendale United when the played was larger than 34?
CREATE TABLE table_name_19 (position INTEGER, team VARCHAR, played VARCHAR)
SELECT COUNT(gold) FROM table_name_62 WHERE bronze < 5 AND silver > 1 AND rank > 8
How many golds does the nation having a rank of 8, fewer than 5 bronzes and more than 1 silver have?
CREATE TABLE table_name_62 (gold VARCHAR, rank VARCHAR, bronze VARCHAR, silver VARCHAR)
SELECT birth_date FROM table_25058562_2 WHERE player = "Taavi Sadam"
Name the birth date for taavi sadam
CREATE TABLE table_25058562_2 (birth_date VARCHAR, player VARCHAR)
SELECT week_7_oct_12 FROM table_name_23 WHERE week_6_oct_5 = "boise state (4-0)"
Which Week 7 Oct 12 has a Week 6 Oct 5 of boise state (4-0)?
CREATE TABLE table_name_23 (week_7_oct_12 VARCHAR, week_6_oct_5 VARCHAR)
SELECT SUM(total) FROM table_name_53 WHERE silver < 2 AND gold = 3 AND bronze < 0
How many medals under total when silver is less than 2, gold is 3, and bronze is less than 0?
CREATE TABLE table_name_53 (total INTEGER, bronze VARCHAR, silver VARCHAR, gold VARCHAR)
SELECT title FROM table_name_32 WHERE translation = "1000 lies"
Which title has a translation in it of 1000 lies?
CREATE TABLE table_name_32 (title VARCHAR, translation VARCHAR)
SELECT COUNT(wind__m_s_) FROM table_1231316_6 WHERE athlete = "Sunday Emmanuel"
Name the total number of wind m/s for sunday emmanuel
CREATE TABLE table_1231316_6 (wind__m_s_ VARCHAR, athlete VARCHAR)
SELECT proto_slavic FROM table_26757_4 WHERE macedonian = "риба (ríba)"
When риба (ríba) is the macedonian what is the proto-slavic?
CREATE TABLE table_26757_4 (proto_slavic VARCHAR, macedonian VARCHAR)
SELECT wysiwyg_editor FROM table_name_79 WHERE user_selectable_themes = "yes" AND unread_message_tracking = "session" AND image_attachment = "plugin"
Which WYSIWYG Editor has a User-selectable themes of yes, and an Unread message tracking of session, and an Image attachment of plugin?
CREATE TABLE table_name_79 (wysiwyg_editor VARCHAR, image_attachment VARCHAR, user_selectable_themes VARCHAR, unread_message_tracking VARCHAR)
SELECT maryland FROM table_13012165_1 WHERE delaware = "M.O.T. LL Middletown" AND year > 2008.0
After the year 2008.0, who played for Maryland the same year M.O.T. LL Middletown played in Delaware?
CREATE TABLE table_13012165_1 (maryland VARCHAR, delaware VARCHAR, year VARCHAR)
SELECT MIN(distance__m_) FROM table_1751142_2 WHERE shuttle_time__seconds_ = "6.86"
What is the distance (in meters) when the shuttle time is 6.86 seconds?
CREATE TABLE table_1751142_2 (distance__m_ INTEGER, shuttle_time__seconds_ VARCHAR)
SELECT COUNT(other) FROM table_14260687_3 WHERE total = "181.1"
How man "other" millions of smartphones were shipped when 181.1 million total were shipped?
CREATE TABLE table_14260687_3 (other VARCHAR, total VARCHAR)
SELECT tournament FROM table_name_95 WHERE opponent = "kathy horvath"
Tell me the tournament for kathy horvath opponent
CREATE TABLE table_name_95 (tournament VARCHAR, opponent VARCHAR)
SELECT auckland FROM table_name_1 WHERE adelaide = "no" AND melbourne = "yes" AND sydney = "yes"
Which Auckland has an Adelaide of no, a Melbourne of yes, and a Sydney of yes?
CREATE TABLE table_name_1 (auckland VARCHAR, sydney VARCHAR, adelaide VARCHAR, melbourne VARCHAR)
SELECT MAX(round4) FROM table_24784769_1
What is the most amount of points any team had in round 4?
CREATE TABLE table_24784769_1 (round4 INTEGER)
SELECT final_score FROM table_26401898_2 WHERE opponent = "Barcelona Dragons"
Name the final score for barcelona dragons
CREATE TABLE table_26401898_2 (final_score VARCHAR, opponent VARCHAR)
SELECT title, YEAR, director FROM movie ORDER BY budget_million
Show all movie titles, years, and directors, ordered by budget.
CREATE TABLE movie (title VARCHAR, YEAR VARCHAR, director VARCHAR, budget_million VARCHAR)
SELECT visitor FROM table_name_71 WHERE record = "14-10"
Who is the visitor with a 14-10 record?
CREATE TABLE table_name_71 (visitor VARCHAR, record VARCHAR)
SELECT MAX(capacity) FROM table_name_81 WHERE position_in_2004 = "5"
What's the highest capacity for a position of 5 in 2004?
CREATE TABLE table_name_81 (capacity INTEGER, position_in_2004 VARCHAR)
SELECT battery___mah__ FROM table WHERE nfc = "Yes" AND weight = "126g"
If the weight is 126g and the NFC is yes, what is the battery (MAH)?
CREATE TABLE table (battery___mah__ VARCHAR, nfc VARCHAR, weight VARCHAR)
SELECT director FROM table_name_59 WHERE original_title = "the crying game"
Who is the Director of the Original title of The Crying Game?
CREATE TABLE table_name_59 (director VARCHAR, original_title VARCHAR)
SELECT date FROM table_name_43 WHERE partner = "elke clijsters"
What date has elke clijsters as the partner?
CREATE TABLE table_name_43 (date VARCHAR, partner VARCHAR)
SELECT attendance FROM table_name_25 WHERE week = 15
What was the attendance for week 15?
CREATE TABLE table_name_25 (attendance VARCHAR, week VARCHAR)
SELECT sail_number FROM table_14882588_3 WHERE yacht = "Yendys"
What are all sail numbers for the yacht Yendys?
CREATE TABLE table_14882588_3 (sail_number VARCHAR, yacht VARCHAR)
SELECT position FROM table_name_16 WHERE wins > 0 AND podiums < 3
What position has over 0 wins and under 3 podiums?
CREATE TABLE table_name_16 (position VARCHAR, wins VARCHAR, podiums VARCHAR)
SELECT pick__number FROM table_2850912_12 WHERE nhl_team = "New Jersey Devils"
Which draft number did the new jersey devils get?
CREATE TABLE table_2850912_12 (pick__number VARCHAR, nhl_team VARCHAR)
SELECT venue FROM table_name_2 WHERE result = "5–1"
What is the Venue where the Result is 5–1?
CREATE TABLE table_name_2 (venue VARCHAR, result VARCHAR)
SELECT coverage FROM table_name_83 WHERE launched = "22 january 1996"
What is the coverage of the station that was launched on 22 January 1996?
CREATE TABLE table_name_83 (coverage VARCHAR, launched VARCHAR)
SELECT network FROM table_name_66 WHERE play_by_play = "marv albert" AND year < 1994
What is the network with the play-by-play Marv Albert before 1994?
CREATE TABLE table_name_66 (network VARCHAR, play_by_play VARCHAR, year VARCHAR)
SELECT republican FROM table_27003223_4 WHERE d_r_spread = "-14.1%"
What is the percentage of republican voters in which the d-r spread is -14.1%?
CREATE TABLE table_27003223_4 (republican VARCHAR, d_r_spread VARCHAR)
SELECT date FROM table_name_7 WHERE opponent = "norway" AND results¹ = "1:0"
When was the game played against Norway with a result of 1:0?
CREATE TABLE table_name_7 (date VARCHAR, opponent VARCHAR, results¹ VARCHAR)
SELECT college_junior_club_team FROM table_name_58 WHERE position = "defence" AND nationality = "czechoslovakia"
Can you tell me the College/Junior/Club Team that has the Position of defence, and the Nationality of czechoslovakia?
CREATE TABLE table_name_58 (college_junior_club_team VARCHAR, position VARCHAR, nationality VARCHAR)
SELECT name FROM table_name_17 WHERE pick__number < 5 AND overall = 284
What is the name of the player with a pick # less than 5 and an overall of 284?
CREATE TABLE table_name_17 (name VARCHAR, pick__number VARCHAR, overall VARCHAR)
SELECT attendance FROM table_name_72 WHERE opponent = "bye"
How many attended the game with an opponent of bye?
CREATE TABLE table_name_72 (attendance VARCHAR, opponent VARCHAR)
SELECT tie_no FROM table_name_3 WHERE away_team = "mansfield town"
What's the tie number when the away team was Mansfield Town?
CREATE TABLE table_name_3 (tie_no VARCHAR, away_team VARCHAR)
SELECT census_ranking FROM table_171356_2 WHERE area_km_2 = "482.81"
What rank is the parish with 482.81 km^2?
CREATE TABLE table_171356_2 (census_ranking VARCHAR, area_km_2 VARCHAR)
SELECT result FROM table_name_39 WHERE round = 4
What is the result of round 4?
CREATE TABLE table_name_39 (result VARCHAR, round VARCHAR)
SELECT winner FROM table_name_17 WHERE circuit = "oran park raceway"
Who won at the Oran Park Raceway?
CREATE TABLE table_name_17 (winner VARCHAR, circuit VARCHAR)
SELECT incumbent FROM table_1342256_38 WHERE district = "Pennsylvania 27"
Who was the incumbent in Pennsylvania 27?
CREATE TABLE table_1342256_38 (incumbent VARCHAR, district VARCHAR)
SELECT T2.Railway_ID, T1.Location FROM railway AS T1 JOIN train AS T2 ON T1.Railway_ID = T2.Railway_ID GROUP BY T2.Railway_ID HAVING COUNT(*) > 1
Show id and location of railways that are associated with more than one train.
CREATE TABLE railway (Location VARCHAR, Railway_ID VARCHAR); CREATE TABLE train (Railway_ID VARCHAR)
SELECT tenure FROM table_name_75 WHERE actor_actress = "nadine garner"
What years were actress Nadine Garner on the show?
CREATE TABLE table_name_75 (tenure VARCHAR, actor_actress VARCHAR)