question
stringlengths
12
243
answer
stringlengths
18
557
context
stringlengths
27
489
How many points have 88 laps and a grid of 14?
SELECT points FROM table_name_99 WHERE laps = "88" AND grid = "14"
CREATE TABLE table_name_99 (points VARCHAR, laps VARCHAR, grid VARCHAR)
What is the percentage of Buddhists associated with a Christianity percentage of 52.32%?
SELECT buddhism FROM table_name_6 WHERE christianity = "52.32%"
CREATE TABLE table_name_6 (buddhism VARCHAR, christianity VARCHAR)
What is the latest episode written by John Shiban & Thomas Schnauz?
SELECT MAX(no_in_series) FROM table_26736342_1 WHERE written_by = "John Shiban & Thomas Schnauz"
CREATE TABLE table_26736342_1 (no_in_series INTEGER, written_by VARCHAR)
What league is entering this round with 24 clubs remaining?
SELECT leagues_entering_at_this_round FROM table_name_39 WHERE clubs_remaining = 24
CREATE TABLE table_name_39 (leagues_entering_at_this_round VARCHAR, clubs_remaining VARCHAR)
What season had less than 301 points and 17 races?
SELECT season FROM table_name_28 WHERE points < 301 AND races = 17
CREATE TABLE table_name_28 (season VARCHAR, points VARCHAR, races VARCHAR)
Who is the opponent(s) in round 6?
SELECT opponents FROM table_name_12 WHERE round = "round 6"
CREATE TABLE table_name_12 (opponents VARCHAR, round VARCHAR)
Which score has a record of 58–15–8?
SELECT score FROM table_name_80 WHERE record = "58–15–8"
CREATE TABLE table_name_80 (score VARCHAR, record VARCHAR)
What was the 1st leg when team 1 was apoel?
SELECT 1 AS st_leg FROM table_name_79 WHERE team_1 = "apoel"
CREATE TABLE table_name_79 (team_1 VARCHAR)
what is the time when the laps is less than 21 and the grid is more than 17?
SELECT time FROM table_name_88 WHERE laps < 21 AND grid > 17
CREATE TABLE table_name_88 (time VARCHAR, laps VARCHAR, grid VARCHAR)
How many votes were cast in Wayne county?
SELECT MAX(total__number) FROM table_13625792_1 WHERE county = "Wayne"
CREATE TABLE table_13625792_1 (total__number INTEGER, county VARCHAR)
Name the team for co-drivers of david brabham mario andretti
SELECT team FROM table_name_15 WHERE co_drivers = "david brabham mario andretti"
CREATE TABLE table_name_15 (team VARCHAR, co_drivers VARCHAR)
What was the final score for the game in which Carmelo Anthony (26) was the high points scorer?
SELECT score FROM table_name_78 WHERE high_points = "carmelo anthony (26)"
CREATE TABLE table_name_78 (score VARCHAR, high_points VARCHAR)
Which mean interview number had an average of more than 9.233, a swimsuit stat of more than 9.473, and an evening gown score of more than 9.671?
SELECT AVG(interview) FROM table_name_79 WHERE average > 9.233 AND swimsuit = 9.473 AND evening_gown > 9.671
CREATE TABLE table_name_79 (interview INTEGER, evening_gown VARCHAR, average VARCHAR, swimsuit VARCHAR)
What is the average number of employees of the departments whose rank is between 10 and 15?
SELECT AVG(num_employees) FROM department WHERE ranking BETWEEN 10 AND 15
CREATE TABLE department (num_employees INTEGER, ranking INTEGER)
What Competition in Shah Alam Stadium have a Result of 2–0 (w)?
SELECT competition FROM table_name_60 WHERE result = "2–0 (w)" AND venue = "shah alam stadium"
CREATE TABLE table_name_60 (competition VARCHAR, result VARCHAR, venue VARCHAR)
Who has the world record of 153kg in the clean & jerk?
SELECT 153 AS kg FROM table_name_27 WHERE world_record = "clean & jerk"
CREATE TABLE table_name_27 (world_record VARCHAR)
What was the round in 1968?
SELECT round FROM table_name_43 WHERE year = 1968
CREATE TABLE table_name_43 (round VARCHAR, year VARCHAR)
What was the Original Canadian air-date for the episode directed by mark rydell?
SELECT original_canadian_air_date FROM table_name_25 WHERE director = "mark rydell"
CREATE TABLE table_name_25 (original_canadian_air_date VARCHAR, director VARCHAR)
What club or province is the player with 12 caps from?
SELECT club_province FROM table_name_49 WHERE caps = 12
CREATE TABLE table_name_49 (club_province VARCHAR, caps VARCHAR)
In what Week is the Opponent the New Orleans Saints?
SELECT AVG(week) FROM table_name_43 WHERE opponent = "new orleans saints"
CREATE TABLE table_name_43 (week INTEGER, opponent VARCHAR)
what is th copa libertadores 1997 is qf?
SELECT copa_libertadores_1997 FROM table_14310205_1 WHERE supercopa_1996 = "QF"
CREATE TABLE table_14310205_1 (copa_libertadores_1997 VARCHAR, supercopa_1996 VARCHAR)
With Sheffield United as the away team and the date, what home team has a tie no of 15?
SELECT home_team FROM table_name_27 WHERE tie_no = "15" AND away_team = "sheffield united" AND date = "sheffield united"
CREATE TABLE table_name_27 (home_team VARCHAR, date VARCHAR, tie_no VARCHAR, away_team VARCHAR)
What is the total number of votes McCain had in Webster?
SELECT MAX(mccain_number) FROM table_20722805_1 WHERE parish = "Webster"
CREATE TABLE table_20722805_1 (mccain_number INTEGER, parish VARCHAR)
Who are the writers of the episodes directed by Justin Hartley?
SELECT written_by FROM table_26464364_1 WHERE directed_by = "Justin Hartley"
CREATE TABLE table_26464364_1 (written_by VARCHAR, directed_by VARCHAR)
How many have SHT number 5?
SELECT MAX(quantity) FROM table_name_49 WHERE sht_nos = "5"
CREATE TABLE table_name_49 (quantity INTEGER, sht_nos VARCHAR)
Whose reign ended in Egypt?
SELECT reign_ended FROM table_name_72 WHERE country = "egypt"
CREATE TABLE table_name_72 (reign_ended VARCHAR, country VARCHAR)
what is the time/retired for driver richard attwood?
SELECT time_retired FROM table_name_56 WHERE driver = "richard attwood"
CREATE TABLE table_name_56 (time_retired VARCHAR, driver VARCHAR)
What is Venue, when Status is "2007 Rugby World Cup", when Against is less than 22, and when Date is "08/09/2007"?
SELECT venue FROM table_name_22 WHERE status = "2007 rugby world cup" AND against < 22 AND date = "08/09/2007"
CREATE TABLE table_name_22 (venue VARCHAR, date VARCHAR, status VARCHAR, against VARCHAR)
What is the to par of player john buczek, who has a t9 place and is from the United States?
SELECT to_par FROM table_name_36 WHERE place = "t9" AND country = "united states" AND player = "john buczek"
CREATE TABLE table_name_36 (to_par VARCHAR, player VARCHAR, place VARCHAR, country VARCHAR)
For the train built in 2012 with less than 179 seats, what is the Fleet ID?
SELECT fleet_id FROM table_name_37 WHERE year_built = "2012" AND seats < 179
CREATE TABLE table_name_37 (fleet_id VARCHAR, year_built VARCHAR, seats VARCHAR)
What place is player johnny miller, who has a to par of +2?
SELECT place FROM table_name_28 WHERE to_par = "+2" AND player = "johnny miller"
CREATE TABLE table_name_28 (place VARCHAR, to_par VARCHAR, player VARCHAR)
How many u.s. viewers (millions) have 5 as the season #?
SELECT us_viewers__millions_ FROM table_22570439_1 WHERE season__number = 5
CREATE TABLE table_22570439_1 (us_viewers__millions_ VARCHAR, season__number VARCHAR)
Name the total number for report july 23
SELECT COUNT(report) FROM table_2267857_1 WHERE date = "July 23"
CREATE TABLE table_2267857_1 (report VARCHAR, date VARCHAR)
Which document has the most draft copies? List its document id and number of draft copies.
SELECT document_id, COUNT(copy_number) FROM Draft_Copies GROUP BY document_id ORDER BY COUNT(copy_number) DESC LIMIT 1
CREATE TABLE Draft_Copies (document_id VARCHAR, copy_number VARCHAR)
What is 17th c., when Australian is "i, ɪ, ə", and when Examples is "œsophagus"?
SELECT 17 AS th_c FROM table_name_25 WHERE australian = "i, ɪ, ə" AND examples = "œsophagus"
CREATE TABLE table_name_25 (australian VARCHAR, examples VARCHAR)
When Matt Ware won the mens singles, who won the mixed restricted?
SELECT mixed_restricted FROM table_28211674_3 WHERE mens_singles = "Matt Ware"
CREATE TABLE table_28211674_3 (mixed_restricted VARCHAR, mens_singles VARCHAR)
Which royal house is in the state of chu?
SELECT royal_house FROM table_name_98 WHERE state = "chu"
CREATE TABLE table_name_98 (royal_house VARCHAR, state VARCHAR)
What date has a theme of fate or fortune?
SELECT date FROM table_name_21 WHERE theme = "fate or fortune"
CREATE TABLE table_name_21 (date VARCHAR, theme VARCHAR)
Tell me the average top 10 for cuts made less than 10, wins less than 1 and top 25 of 5
SELECT AVG(top_10) FROM table_name_42 WHERE wins < 1 AND top_25 = 5 AND cuts_made < 10
CREATE TABLE table_name_42 (top_10 INTEGER, cuts_made VARCHAR, wins VARCHAR, top_25 VARCHAR)
Which Player has a Team from of south shore kings?
SELECT player FROM table_name_11 WHERE team_from = "south shore kings"
CREATE TABLE table_name_11 (player VARCHAR, team_from VARCHAR)
Who was the player from the United States, with a total larger than 145?
SELECT player FROM table_name_32 WHERE country = "united states" AND total > 145
CREATE TABLE table_name_32 (player VARCHAR, country VARCHAR, total VARCHAR)
What is Group Song, when Name is Alice 林芯糸?
SELECT Group AS song FROM table_name_29 WHERE name = "alice 林芯糸"
CREATE TABLE table_name_29 (Group VARCHAR, name VARCHAR)
Which school(s) had a wide receiver drafted in round 4?
SELECT school_club_team FROM table_name_16 WHERE round > 4 AND position = "wide receiver"
CREATE TABLE table_name_16 (school_club_team VARCHAR, round VARCHAR, position VARCHAR)
What date final has 1982 as the year?
SELECT date_final FROM table_name_59 WHERE year = "1982"
CREATE TABLE table_name_59 (date_final VARCHAR, year VARCHAR)
If the stage is 9, what is the team classification name?
SELECT team_classification FROM table_22941863_19 WHERE stage = 9
CREATE TABLE table_22941863_19 (team_classification VARCHAR, stage VARCHAR)
What was the score on 6 February 2008?
SELECT score FROM table_name_35 WHERE date = "6 february 2008"
CREATE TABLE table_name_35 (score VARCHAR, date VARCHAR)
Ashley Grimes had what to club?
SELECT to_club FROM table_name_26 WHERE player = "ashley grimes"
CREATE TABLE table_name_26 (to_club VARCHAR, player VARCHAR)
Who was drafted from the school Mountain Pointe High School?
SELECT mlb_draft FROM table_11677100_16 WHERE school = "Mountain Pointe High school"
CREATE TABLE table_11677100_16 (mlb_draft VARCHAR, school VARCHAR)
What was the role for BBC1?
SELECT role FROM table_name_20 WHERE broadcaster = "bbc1"
CREATE TABLE table_name_20 (role VARCHAR, broadcaster VARCHAR)
Name the FCC info for call sign of k208eq
SELECT fcc_info FROM table_name_51 WHERE call_sign = "k208eq"
CREATE TABLE table_name_51 (fcc_info VARCHAR, call_sign VARCHAR)
How many games were played at Cleveland Stadium?
SELECT COUNT(date) FROM table_16729063_2 WHERE game_site = "Cleveland Stadium"
CREATE TABLE table_16729063_2 (date VARCHAR, game_site VARCHAR)
Which S.R. has a Average smaller than 23.63 Runs Scored of 49?
SELECT sr FROM table_name_46 WHERE average < 23.63 AND runs_scored = 49
CREATE TABLE table_name_46 (sr VARCHAR, average VARCHAR, runs_scored VARCHAR)
Which Losses has Scored of 9, and Points larger than 8?
SELECT AVG(losses) FROM table_name_87 WHERE scored = 9 AND points > 8
CREATE TABLE table_name_87 (losses INTEGER, scored VARCHAR, points VARCHAR)
Who was the partner when the score was 7–5, 7–6 (7–5)?
SELECT partner FROM table_2516282_3 WHERE score = "7–5, 7–6 (7–5)"
CREATE TABLE table_2516282_3 (partner VARCHAR, score VARCHAR)
What is the number of frequencies that have a destination of Jaipur?
SELECT COUNT(frequency) FROM table_21716139_1 WHERE destination = "Jaipur"
CREATE TABLE table_21716139_1 (frequency VARCHAR, destination VARCHAR)
What MLB draft has Shaun Boyd?
SELECT mlb_draft FROM table_name_80 WHERE player = "shaun boyd"
CREATE TABLE table_name_80 (mlb_draft VARCHAR, player VARCHAR)
list in alphabetic order all course names and their instructors' names in year 2008.
SELECT T1.title, T3.name FROM course AS T1 JOIN teaches AS T2 ON T1.course_id = T2.course_id JOIN instructor AS T3 ON T2.id = T3.id WHERE YEAR = 2008 ORDER BY T1.title
CREATE TABLE course (title VARCHAR, course_id VARCHAR); CREATE TABLE teaches (course_id VARCHAR, id VARCHAR); CREATE TABLE instructor (name VARCHAR, id VARCHAR)
What was the score when the record was 18–14–4 with a toivonen decision?
SELECT score FROM table_name_11 WHERE decision = "toivonen" AND record = "18–14–4"
CREATE TABLE table_name_11 (score VARCHAR, decision VARCHAR, record VARCHAR)
What is the group a winner for vis pesaro?
SELECT group_a_winner FROM table_1137142_1 WHERE group_c_winner = "Vis Pesaro"
CREATE TABLE table_1137142_1 (group_a_winner VARCHAR, group_c_winner VARCHAR)
Where does Melbourne play home games?
SELECT venue FROM table_name_13 WHERE home_team = "melbourne"
CREATE TABLE table_name_13 (venue VARCHAR, home_team VARCHAR)
Who was the replacement manager for the vacancy of 12 Dec 2009?
SELECT replaced_by FROM table_22297198_3 WHERE date_of_vacancy = "12 Dec 2009"
CREATE TABLE table_22297198_3 (replaced_by VARCHAR, date_of_vacancy VARCHAR)
Name the least rank for lane less than 5 for germany and sandra völker
SELECT MIN(rank) FROM table_name_22 WHERE lane < 5 AND nationality = "germany" AND name = "sandra völker"
CREATE TABLE table_name_22 (rank INTEGER, name VARCHAR, lane VARCHAR, nationality VARCHAR)
Which deputy prime minister left office in 1981?
SELECT deputy_prime_minister FROM table_name_87 WHERE left_office = "1981"
CREATE TABLE table_name_87 (deputy_prime_minister VARCHAR, left_office VARCHAR)
Which Date has Opponents in the final of valeria casillo lilly raffa?
SELECT date FROM table_name_59 WHERE opponents_in_the_final = "valeria casillo lilly raffa"
CREATE TABLE table_name_59 (date VARCHAR, opponents_in_the_final VARCHAR)
Who was drafted to litvinov (czechoslovakia)?
SELECT player FROM table_2679061_12 WHERE college_junior_club_team = "Litvinov (Czechoslovakia)"
CREATE TABLE table_2679061_12 (player VARCHAR, college_junior_club_team VARCHAR)
What opponent has a week less than 16, with September 7, 2008 as the date?
SELECT opponent FROM table_name_43 WHERE week < 16 AND date = "september 7, 2008"
CREATE TABLE table_name_43 (opponent VARCHAR, week VARCHAR, date VARCHAR)
Who's the opponent for June 13?
SELECT opponent FROM table_name_88 WHERE date = "june 13"
CREATE TABLE table_name_88 (opponent VARCHAR, date VARCHAR)
What is the average Attendance for the game on November 1, 1981?
SELECT AVG(attendance) FROM table_name_5 WHERE date = "november 1, 1981"
CREATE TABLE table_name_5 (attendance INTEGER, date VARCHAR)
What's the Bible Gothic for the word hand?
SELECT bible_gothic FROM table_name_7 WHERE english = "hand"
CREATE TABLE table_name_7 (bible_gothic VARCHAR, english VARCHAR)
Name the total number when avg start is 2000
SELECT COUNT(avg_start) FROM table_1708050_3 WHERE year = 2000
CREATE TABLE table_1708050_3 (avg_start VARCHAR, year VARCHAR)
find the id, name and age for visitors who visited some museums more than once.
SELECT t1.id, t1.name, t1.age FROM visitor AS t1 JOIN visit AS t2 ON t1.id = t2.visitor_id GROUP BY t1.id HAVING COUNT(*) > 1
CREATE TABLE visit (visitor_id VARCHAR); CREATE TABLE visitor (id VARCHAR, name VARCHAR, age VARCHAR)
Which Series has a Score of 9–4?
SELECT series FROM table_name_86 WHERE score = "9–4"
CREATE TABLE table_name_86 (series VARCHAR, score VARCHAR)
Who was the winning driver when the pole position was held by Ayrton Senna and the Fastest lap was Michael Schumacher?
SELECT winning_driver FROM table_1137702_3 WHERE pole_position = "Ayrton Senna" AND fastest_lap = "Michael Schumacher"
CREATE TABLE table_1137702_3 (winning_driver VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR)
What is the GDP for the region with an area of 7,263 sq. mi.?
SELECT gdp___bn__ FROM table_name_74 WHERE area__sq_mi_ = "7,263"
CREATE TABLE table_name_74 (gdp___bn__ VARCHAR, area__sq_mi_ VARCHAR)
Who was the loser at Municipal Stadium after 1970?
SELECT loser FROM table_name_96 WHERE location = "municipal stadium" AND year > 1970
CREATE TABLE table_name_96 (loser VARCHAR, location VARCHAR, year VARCHAR)
Name the score for save of lancaster (3)
SELECT score FROM table_name_7 WHERE save = "lancaster (3)"
CREATE TABLE table_name_7 (score VARCHAR, save VARCHAR)
What are the names of tourist attractions that can be reached by bus or is at address 254 Ottilie Junction?
SELECT T2.Name FROM Locations AS T1 JOIN Tourist_Attractions AS T2 ON T1.Location_ID = T2.Location_ID WHERE T1.Address = "254 Ottilie Junction" OR T2.How_to_Get_There = "bus"
CREATE TABLE Tourist_Attractions (Name VARCHAR, Location_ID VARCHAR, How_to_Get_There VARCHAR); CREATE TABLE Locations (Location_ID VARCHAR, Address VARCHAR)
What is the Result of the Friendly Competition on October 27, 2005 with a Score of 5-0?
SELECT result FROM table_name_47 WHERE competition = "friendly" AND score = "5-0" AND date = "october 27, 2005"
CREATE TABLE table_name_47 (result VARCHAR, date VARCHAR, competition VARCHAR, score VARCHAR)
What are the websites of schools that were founded in 1872?
SELECT website FROM table_name_11 WHERE founded = 1872
CREATE TABLE table_name_11 (website VARCHAR, founded VARCHAR)
Which Builder has a Class of Terrier?
SELECT builder FROM table_name_52 WHERE class = "terrier"
CREATE TABLE table_name_52 (builder VARCHAR, class VARCHAR)
How many games were won with 2nd oha was standing and there were 62 games?
SELECT won FROM table_1143966_1 WHERE standing = "2nd OHA" AND games = 62
CREATE TABLE table_1143966_1 (won VARCHAR, standing VARCHAR, games VARCHAR)
What group had 29 studio albums?
SELECT girl_group FROM table_19439814_1 WHERE studio_albums = 29
CREATE TABLE table_19439814_1 (girl_group VARCHAR, studio_albums VARCHAR)
Which publisher has release year of 2000 and an original dreamcast platform?
SELECT publisher FROM table_name_60 WHERE year_of_release = "2000" AND original_platforms = "dreamcast"
CREATE TABLE table_name_60 (publisher VARCHAR, year_of_release VARCHAR, original_platforms VARCHAR)
Which Little League World Series took place in Parsippany?
SELECT llws FROM table_name_70 WHERE city = "parsippany"
CREATE TABLE table_name_70 (llws VARCHAR, city VARCHAR)
What is the total fat with a smoke point of °c (), 25g of saturated fat?
SELECT total_fat FROM table_name_60 WHERE smoke_point = "°c ()" AND saturated_fat = "25g"
CREATE TABLE table_name_60 (total_fat VARCHAR, smoke_point VARCHAR, saturated_fat VARCHAR)
Name the date for attendance more than 20,268
SELECT date FROM table_name_47 WHERE attendance > 20 OFFSET 268
CREATE TABLE table_name_47 (date VARCHAR, attendance INTEGER)
When vista radio is the owner what is the frequency?
SELECT frequency FROM table_18536769_1 WHERE owner = "Vista Radio"
CREATE TABLE table_18536769_1 (frequency VARCHAR, owner VARCHAR)
With Round 3 and Pick # over 10, what is the higher Overall number?
SELECT MAX(overall) FROM table_name_38 WHERE round = 3 AND pick__number > 10
CREATE TABLE table_name_38 (overall INTEGER, round VARCHAR, pick__number VARCHAR)
Who was the second couple for the episode having an ITV1 ranking of 29?
SELECT second_couple FROM table_25664518_3 WHERE itv1_weekly_ranking = 29
CREATE TABLE table_25664518_3 (second_couple VARCHAR, itv1_weekly_ranking VARCHAR)
What year was the brabham bt46 bt48 bt49 Chassis common?
SELECT AVG(year) FROM table_name_89 WHERE chassis = "brabham bt46 bt48 bt49"
CREATE TABLE table_name_89 (year INTEGER, chassis VARCHAR)
What is the lambda function without a pseudorandom number generation, no s default argument, no functions, and no eval function?
SELECT lambda_functions FROM table_name_10 WHERE pseudorandom_number_generation = "no" AND s_default_argument = "no" AND functions = "no" AND eval_function = "no"
CREATE TABLE table_name_10 (lambda_functions VARCHAR, eval_function VARCHAR, functions VARCHAR, pseudorandom_number_generation VARCHAR, s_default_argument VARCHAR)
what partner made the scores 6–4, 6–1?
SELECT partner FROM table_name_19 WHERE score_in_the_final = "6–4, 6–1"
CREATE TABLE table_name_19 (partner VARCHAR, score_in_the_final VARCHAR)
Show all investor details.
SELECT Investor_details FROM INVESTORS
CREATE TABLE INVESTORS (Investor_details VARCHAR)
What is the name of the host nations if the winner was Hong Kong 207/6 (47.1 overs)?
SELECT host_nation_s_ FROM table_22577693_1 WHERE winner = "Hong Kong 207/6 (47.1 overs)"
CREATE TABLE table_22577693_1 (host_nation_s_ VARCHAR, winner VARCHAR)
where cfl team is winnipeg (3) via hamilton what are all the player
SELECT player FROM table_26996293_2 WHERE cfl_team = "Winnipeg (3) via Hamilton"
CREATE TABLE table_26996293_2 (player VARCHAR, cfl_team VARCHAR)
Which event shows Matt St. Louis in second and a skip of John Morris?
SELECT event FROM table_name_24 WHERE skip = "john morris" AND second = "matt st. louis"
CREATE TABLE table_name_24 (event VARCHAR, skip VARCHAR, second VARCHAR)
What is Henri Crockett's highest overall with more than 3 picks?
SELECT MAX(overall) FROM table_name_65 WHERE pick__number > 3 AND name = "henri crockett"
CREATE TABLE table_name_65 (overall INTEGER, pick__number VARCHAR, name VARCHAR)
Which nation has a gold less than 2 and a bronze less than 5?
SELECT nation FROM table_name_31 WHERE gold < 2 AND bronze < 5
CREATE TABLE table_name_31 (nation VARCHAR, gold VARCHAR, bronze VARCHAR)
Who is the operator to destination Dalston Junction?
SELECT operator FROM table_1612760_1 WHERE destination = "Dalston Junction"
CREATE TABLE table_1612760_1 (operator VARCHAR, destination VARCHAR)
Which player from the Ironi Nahariya club was born in 1980?
SELECT player FROM table_name_4 WHERE current_club = "ironi nahariya" AND year_born = 1980
CREATE TABLE table_name_4 (player VARCHAR, current_club VARCHAR, year_born VARCHAR)