answer
stringlengths 18
557
| question
stringlengths 12
244
| context
stringlengths 27
489
|
|---|---|---|
SELECT winning_driver FROM table_name_6 WHERE name = "kraco twin 125 (r2)"
|
Who was Kraco Twin 125 (R2)'s Winning Driver?
|
CREATE TABLE table_name_6 (winning_driver VARCHAR, name VARCHAR)
|
SELECT MAX(rank) FROM table_name_72 WHERE airport = "tokyo international airport"
|
What is the highest rank of Tokyo International Airport?
|
CREATE TABLE table_name_72 (rank INTEGER, airport VARCHAR)
|
SELECT written_by FROM table_15584067_7 WHERE no_in_season = "11"
|
Name who wrote the 11 number in the season
|
CREATE TABLE table_15584067_7 (written_by VARCHAR, no_in_season VARCHAR)
|
SELECT date FROM table_name_89 WHERE week = 10
|
What date was the week 10 game?
|
CREATE TABLE table_name_89 (date VARCHAR, week VARCHAR)
|
SELECT station_code FROM table_name_40 WHERE arrival = "02:20"
|
What's listed for the Station Code that has the Arrival of 02:20?
|
CREATE TABLE table_name_40 (station_code VARCHAR, arrival VARCHAR)
|
SELECT current_club FROM table_12962773_12 WHERE year_born = 1984
|
What current club does the player born in 1984 play for?
|
CREATE TABLE table_12962773_12 (current_club VARCHAR, year_born VARCHAR)
|
SELECT traffic_direction FROM table_name_88 WHERE street = "70th street"
|
What is the traffic direction of 70th street?
|
CREATE TABLE table_name_88 (traffic_direction VARCHAR, street VARCHAR)
|
SELECT MIN(taijiquan) FROM table_name_90 WHERE taijijian = 9.7 AND total > 19.34
|
What is the lowest Taijiquan of the athlete who has a Taijijian of 9.7 and a total more than 19.34?
|
CREATE TABLE table_name_90 (taijiquan INTEGER, taijijian VARCHAR, total VARCHAR)
|
SELECT player FROM table_name_26 WHERE position = "small forward"
|
What player plays the position of small forward?
|
CREATE TABLE table_name_26 (player VARCHAR, position VARCHAR)
|
SELECT stage_reached FROM table_name_23 WHERE venue = "edmonton green"
|
What is the stage reached for venue edmonton green?
|
CREATE TABLE table_name_23 (stage_reached VARCHAR, venue VARCHAR)
|
SELECT MAX(wins) FROM table_name_82 WHERE goal_difference < 4 AND club = "villarreal cf" AND played > 38
|
What is the highest number of wins with a goal difference less than 4 at the Villarreal CF and more than 38 played?
|
CREATE TABLE table_name_82 (wins INTEGER, played VARCHAR, goal_difference VARCHAR, club VARCHAR)
|
SELECT COUNT(*) FROM employees WHERE country = "Canada"
|
How many employees are living in Canada?
|
CREATE TABLE employees (country VARCHAR)
|
SELECT fsb FROM table_16729930_11 WHERE model_number = "Atom Z540"
|
Name the fsb for atom z540
|
CREATE TABLE table_16729930_11 (fsb VARCHAR, model_number VARCHAR)
|
SELECT engine FROM table_2503102_1 WHERE team = "Ed Carpenter Racing"
|
What engine doe the Ed Carpenter Racing team use?
|
CREATE TABLE table_2503102_1 (engine VARCHAR, team VARCHAR)
|
SELECT location FROM table_1973729_1 WHERE institution = "Eastern Nazarene College"
|
Where is the Eastern Nazarene College located?
|
CREATE TABLE table_1973729_1 (location VARCHAR, institution VARCHAR)
|
SELECT run_4 FROM table_name_12 WHERE run_2 = "1:29.00"
|
What is Run 4, when Run 2 is 1:29.00?
|
CREATE TABLE table_name_12 (run_4 VARCHAR, run_2 VARCHAR)
|
SELECT build_date FROM table_name_42 WHERE total_produced < 45 AND model = "fb-2"
|
What is the build date of the locomotives with a total produced less than 45 and a fb-2 model?
|
CREATE TABLE table_name_42 (build_date VARCHAR, total_produced VARCHAR, model VARCHAR)
|
SELECT MAX(week) FROM table_name_93 WHERE opponent = "los angeles rams" AND attendance > 37 OFFSET 382
|
What is the highest Week when the opponent was the los angeles rams, with more than 37,382 in Attendance?
|
CREATE TABLE table_name_93 (week INTEGER, opponent VARCHAR, attendance VARCHAR)
|
SELECT SUM(release_date) FROM table_name_3 WHERE label = "epic"
|
On what date did Epic label start its release?
|
CREATE TABLE table_name_3 (release_date INTEGER, label VARCHAR)
|
SELECT visitor FROM table_name_13 WHERE date = "may 9"
|
What is Visitor, when Date is "May 9"?
|
CREATE TABLE table_name_13 (visitor VARCHAR, date VARCHAR)
|
SELECT top_scorer FROM table_20867295_2 WHERE winner = "PSV Eindhoven" AND third_place = "NAC Breda"
|
When nac breda came in third place and psv eindhoven was the winner who is the top scorer?
|
CREATE TABLE table_20867295_2 (top_scorer VARCHAR, winner VARCHAR, third_place VARCHAR)
|
SELECT AVG(wins) FROM table_name_72 WHERE season < 1906 AND draws < 0
|
What is the average number of wins before the season in 1906 where there were 0 draws?
|
CREATE TABLE table_name_72 (wins INTEGER, season VARCHAR, draws 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 SUM(run_3) FROM table_name_5 WHERE run_1 > 53.75 AND run_2 < 52.91
|
What is the run 3 of the athlete with a run 1 more than 53.75 and a run 2 less than 52.91?
|
CREATE TABLE table_name_5 (run_3 INTEGER, run_1 VARCHAR, run_2 VARCHAR)
|
SELECT MAX(hull_numbers) FROM table_12232526_2 WHERE ship_name = "KRI Yos Sudarso"
|
what is the maximum number of hull nunbers where ship name is kri yos sudarso?
|
CREATE TABLE table_12232526_2 (hull_numbers INTEGER, ship_name VARCHAR)
|
SELECT MAX(year) FROM table_name_91 WHERE team = "gulf racing middle east"
|
What is the most recent year that Gulf Racing Middle East won?
|
CREATE TABLE table_name_91 (year INTEGER, team VARCHAR)
|
SELECT week FROM table_name_43 WHERE result = "l 10-23"
|
Result of l 10-23 occurred in what week?
|
CREATE TABLE table_name_43 (week VARCHAR, result VARCHAR)
|
SELECT years_as_tallest FROM table_name_12 WHERE street_address = "324 e. 11th street"
|
What's the Years as tallest with a Street address of 324 E. 11th Street?
|
CREATE TABLE table_name_12 (years_as_tallest VARCHAR, street_address VARCHAR)
|
SELECT COUNT(opponent) FROM table_24126606_2 WHERE date = "October 3"
|
Name the total number of opponent for october 3
|
CREATE TABLE table_24126606_2 (opponent VARCHAR, date VARCHAR)
|
SELECT results FROM table_name_18 WHERE first_elected = 1996 AND district = "oregon 5"
|
What was the result of the Oregon 5 District incumbent who was first elected in 1996?
|
CREATE TABLE table_name_18 (results VARCHAR, first_elected VARCHAR, district VARCHAR)
|
SELECT playoffs FROM table_16636344_1 WHERE year = "2011"
|
What was the team's playoff status in 2011?
|
CREATE TABLE table_16636344_1 (playoffs VARCHAR, year VARCHAR)
|
SELECT MIN(round) FROM table_name_87 WHERE location = "las vegas, nevada" AND method = "decision (unanimous)" AND event = "k-1 world grand prix 2003 in las vegas ii"
|
What is the lowest Round with the Location, Las Vegas, Nevada, the Method, Decision (unanimous), and the Event, K-1 World Grand Prix 2003 in Las Vegas II?
|
CREATE TABLE table_name_87 (round INTEGER, event VARCHAR, location VARCHAR, method VARCHAR)
|
SELECT res FROM table_name_81 WHERE event = "kotc 11 - domination"
|
What is Res., when Event is "KOTC 11 - Domination"?
|
CREATE TABLE table_name_81 (res VARCHAR, event VARCHAR)
|
SELECT MAX(laps) FROM table_name_71 WHERE driver = "françois cevert"
|
What is the high lap total for françois cevert?
|
CREATE TABLE table_name_71 (laps INTEGER, driver VARCHAR)
|
SELECT career_w_l FROM table_name_83 WHERE tournament = "grand slam tournaments"
|
What is the value for Career W-L for the Grand Slam Tournaments?
|
CREATE TABLE table_name_83 (career_w_l VARCHAR, tournament VARCHAR)
|
SELECT MAX(series__number) FROM table_26808178_3 WHERE us_viewers__millions_ = "0.645"
|
Which series # had 0.645 U.S. viewers(millions)?
|
CREATE TABLE table_26808178_3 (series__number INTEGER, us_viewers__millions_ VARCHAR)
|
SELECT date FROM table_name_58 WHERE crowd > 30 OFFSET 495
|
What was the date when the crowd was larger than 30,495?
|
CREATE TABLE table_name_58 (date VARCHAR, crowd INTEGER)
|
SELECT team FROM table_name_66 WHERE rank = "3rd" AND year = 2008
|
Which team is ranked 3rd in 2008?
|
CREATE TABLE table_name_66 (team VARCHAR, rank VARCHAR, year VARCHAR)
|
SELECT COUNT(former_wnba_team) FROM table_17308269_2 WHERE pick = 2
|
Name the number of former wnba team for 2
|
CREATE TABLE table_17308269_2 (former_wnba_team VARCHAR, pick VARCHAR)
|
SELECT church_name FROM table_name_29 WHERE location_of_the_church = "florø"
|
What is the name of the church that is located in florø?
|
CREATE TABLE table_name_29 (church_name VARCHAR, location_of_the_church VARCHAR)
|
SELECT venue FROM table_name_64 WHERE result = "10–0" AND score = "3–0"
|
What is the Venue with a Result of 10–0, and a Score with 3–0?
|
CREATE TABLE table_name_64 (venue VARCHAR, result VARCHAR, score VARCHAR)
|
SELECT date FROM table_name_90 WHERE record = "17-31"
|
What is the date of the game with a 17-31 record?
|
CREATE TABLE table_name_90 (date VARCHAR, record VARCHAR)
|
SELECT total FROM table_name_79 WHERE score_points = "12" AND rank_points = "15"
|
What was the total when the score points was 12 and the rank points was 15?
|
CREATE TABLE table_name_79 (total VARCHAR, score_points VARCHAR, rank_points VARCHAR)
|
SELECT visitor FROM table_22871239_9 WHERE date = "March 23"
|
Name the visitor for march 23
|
CREATE TABLE table_22871239_9 (visitor VARCHAR, date VARCHAR)
|
SELECT date FROM table_name_47 WHERE record = "izod indycar series"
|
When was the race that set the record for the Izod Indycar Series?
|
CREATE TABLE table_name_47 (date VARCHAR, record VARCHAR)
|
SELECT position FROM table_19730892_1 WHERE name = "Billy Price"
|
Name the position for billy price
|
CREATE TABLE table_19730892_1 (position VARCHAR, name VARCHAR)
|
SELECT MIN(goals) FROM table_24807406_3
|
What was the lowest goals ever achieved?
|
CREATE TABLE table_24807406_3 (goals INTEGER)
|
SELECT years FROM table_name_78 WHERE decile > 6 AND area = "waikouaiti"
|
What year has a decile more than 6, in the Waikouaiti area?
|
CREATE TABLE table_name_78 (years VARCHAR, decile VARCHAR, area VARCHAR)
|
SELECT class FROM table_name_15 WHERE power = "78 watts"
|
What is Class, when Power is 78 Watts?
|
CREATE TABLE table_name_15 (class VARCHAR, power VARCHAR)
|
SELECT visitor FROM table_name_28 WHERE game > 29 AND attendance > 18 OFFSET 584
|
Who was the visiting team in the game sometime after number 29 that had 18,584 atttendees?
|
CREATE TABLE table_name_28 (visitor VARCHAR, game VARCHAR, attendance VARCHAR)
|
SELECT season FROM table_name_40 WHERE team = "lotus" AND champion = "jimmy eriksson"
|
In which season did Jimmy Eriksson win the championship for Team Lotus?
|
CREATE TABLE table_name_40 (season VARCHAR, team VARCHAR, champion VARCHAR)
|
SELECT type FROM table_name_28 WHERE country = "eng" AND name = "elding"
|
What type of move was Elding from ENG?
|
CREATE TABLE table_name_28 (type VARCHAR, country VARCHAR, name VARCHAR)
|
SELECT longitude FROM table_name_87 WHERE latitude = "73.0s" AND name = "aibarchin planitia"
|
Which Longitude has a Latitude of 73.0s, and a Name of aibarchin planitia?
|
CREATE TABLE table_name_87 (longitude VARCHAR, latitude VARCHAR, name VARCHAR)
|
SELECT home_team AS score FROM table_name_98 WHERE home_team = "fitzroy"
|
What did fitzroy score at their home game?
|
CREATE TABLE table_name_98 (home_team VARCHAR)
|
SELECT team FROM table_name_81 WHERE rank < 7 AND rider = "matts nilsson"
|
What's Matts Nilsson's team that's ranked better than 7?
|
CREATE TABLE table_name_81 (team VARCHAR, rank VARCHAR, rider VARCHAR)
|
SELECT player FROM table_name_12 WHERE to_par = "+5" AND score = 70 - 70 - 71 - 74 = 285
|
What Player has a To par of +5 with a Score of 70-70-71-74=285?
|
CREATE TABLE table_name_12 (player VARCHAR, to_par VARCHAR, score VARCHAR)
|
SELECT title FROM table_20967430_4 WHERE original_air_date = "March 11, 1988"
|
What was the name of the episode that aired originally on March 11, 1988?
|
CREATE TABLE table_20967430_4 (title VARCHAR, original_air_date VARCHAR)
|
SELECT party FROM table_1342013_10 WHERE first_elected = 1914
|
Which party had a person who has been in the seat since 1914?
|
CREATE TABLE table_1342013_10 (party VARCHAR, first_elected VARCHAR)
|
SELECT score FROM table_name_15 WHERE location_attendance = "seattle center coliseum 11,497"
|
WhichScore has a Location Attendance of seattle center coliseum 11,497?
|
CREATE TABLE table_name_15 (score VARCHAR, location_attendance VARCHAR)
|
SELECT score FROM table_name_15 WHERE game > 57 AND record = "4–55"
|
What is the Score of the game larger than 57 with a Record of 4–55?
|
CREATE TABLE table_name_15 (score VARCHAR, game VARCHAR, record VARCHAR)
|
SELECT language FROM table_name_85 WHERE publication_range = "1955–1999"
|
What language has a publication range from 1955–1999?
|
CREATE TABLE table_name_85 (language VARCHAR, publication_range VARCHAR)
|
SELECT 1 AS st_member FROM table_name_7 WHERE election = "1884 by-election"
|
Who is the 1st member in the 1884 by-election?
|
CREATE TABLE table_name_7 (election VARCHAR)
|
SELECT publication_date FROM table_name_25 WHERE fictional_date = "2112"
|
Name the publication date when the fictional date is 2112
|
CREATE TABLE table_name_25 (publication_date VARCHAR, fictional_date VARCHAR)
|
SELECT 1958 FROM table_name_24 WHERE 1957 = "dnf-9"
|
Tell me the 1958 when 1957 is dnf-9
|
CREATE TABLE table_name_24 (Id VARCHAR)
|
SELECT location FROM table_name_57 WHERE students = "na" AND year_opened = "2005"
|
What location was the campus opened in 2005 with students listed as na?
|
CREATE TABLE table_name_57 (location VARCHAR, students VARCHAR, year_opened VARCHAR)
|
SELECT AVG(game) FROM table_name_36 WHERE team = "portland trail blazers"
|
Which Game has a Team of portland trail blazers?
|
CREATE TABLE table_name_36 (game INTEGER, team VARCHAR)
|
SELECT career FROM table_name_6 WHERE parallel = "–" AND combined = "–" AND giant_slalom = "5"
|
What Career has a Parallel of –, a Combined of –, and a Giant Slalom of 5?
|
CREATE TABLE table_name_6 (career VARCHAR, giant_slalom VARCHAR, parallel VARCHAR, combined VARCHAR)
|
SELECT COUNT(eliminated) FROM table_12305325_4 WHERE safe = "Kelly and Brendan"
|
What is the number eliminated when kelly and brendan are safe?
|
CREATE TABLE table_12305325_4 (eliminated VARCHAR, safe VARCHAR)
|
SELECT winner FROM table_name_96 WHERE circuit = "lakeside international raceway" AND series = "amc round 4"
|
Who was the Winner in the AMC Round 4 at Lakeside International Raceway?
|
CREATE TABLE table_name_96 (winner VARCHAR, circuit VARCHAR, series VARCHAR)
|
SELECT DISTINCT T1.template_type_description FROM Ref_template_types AS T1 JOIN Templates AS T2 ON T1.template_type_code = T2.template_type_code JOIN Documents AS T3 ON T2.Template_ID = T3.template_ID
|
What are the distinct template type descriptions for the templates ever used by any document?
|
CREATE TABLE Templates (template_type_code VARCHAR, Template_ID VARCHAR); CREATE TABLE Documents (template_ID VARCHAR); CREATE TABLE Ref_template_types (template_type_description VARCHAR, template_type_code VARCHAR)
|
SELECT venue FROM table_name_11 WHERE competition = "2004 afc asian cup qualification" AND date = "november 18, 2003"
|
Which venue hosted the 2004 AFC Asian Cup qualification on November 18, 2003?
|
CREATE TABLE table_name_11 (venue VARCHAR, competition VARCHAR, date VARCHAR)
|
SELECT MIN(pick__number) FROM table_20649850_1 WHERE college = "New Mexico"
|
Name the number for new mexico
|
CREATE TABLE table_20649850_1 (pick__number INTEGER, college VARCHAR)
|
SELECT position FROM table_11677691_10 WHERE school = "Butler High school"
|
What was the position of the player from Butler High School?
|
CREATE TABLE table_11677691_10 (position VARCHAR, school VARCHAR)
|
SELECT score FROM table_name_96 WHERE competition = "friendly" AND venue = "vasil levski national stadium, sofia"
|
What score did vasil levski national stadium, sofia, which was friendly during competition, earn?
|
CREATE TABLE table_name_96 (score VARCHAR, competition VARCHAR, venue VARCHAR)
|
SELECT race FROM table_name_78 WHERE fastest_lap = "niki lauda" AND location = "brands hatch"
|
What Brands Hatch race had Niki Lauda as its Fastest Lap?
|
CREATE TABLE table_name_78 (race VARCHAR, fastest_lap VARCHAR, location VARCHAR)
|
SELECT 2011 FROM table_name_8 WHERE 2005 = "4.2%"
|
What is listed for the 2011 that has a 2005 of 4.2%?
|
CREATE TABLE table_name_8 (Id VARCHAR)
|
SELECT COUNT(_number_of_seats_won) FROM table_106367_2 WHERE _number_of_candidates = 125
|
How many seats were won in the election with 125 candidates?
|
CREATE TABLE table_106367_2 (_number_of_seats_won VARCHAR, _number_of_candidates VARCHAR)
|
SELECT home_team FROM table_name_71 WHERE venue = "mcg"
|
I want to know the home team for mcg venue
|
CREATE TABLE table_name_71 (home_team VARCHAR, venue VARCHAR)
|
SELECT english_name FROM table_name_43 WHERE stat = "7th cut"
|
What was the name in English that had a Stat of 7th cut?
|
CREATE TABLE table_name_43 (english_name VARCHAR, stat VARCHAR)
|
SELECT score FROM table_name_35 WHERE date = "6 february 2008"
|
What was the score on 6 February 2008?
|
CREATE TABLE table_name_35 (score VARCHAR, date VARCHAR)
|
SELECT market_income_per_capita FROM table_22815568_6 WHERE poverty_rate = "12.9%"
|
If the poverty rate is 12.9%, what is the market income per capita?
|
CREATE TABLE table_22815568_6 (market_income_per_capita VARCHAR, poverty_rate VARCHAR)
|
SELECT status FROM table_22815568_7 WHERE poverty_rate = "8.6%"
|
What is the status in those places where the poverty rate is 8.6%?
|
CREATE TABLE table_22815568_7 (status VARCHAR, poverty_rate VARCHAR)
|
SELECT to_par FROM table_name_43 WHERE player = "ernie els"
|
What is the to par that has ernie els as the player?
|
CREATE TABLE table_name_43 (to_par VARCHAR, player VARCHAR)
|
SELECT result_f___a FROM table_name_8 WHERE opponents = "rosenborg"
|
Which Result F-A has Opponents of rosenborg?
|
CREATE TABLE table_name_8 (result_f___a VARCHAR, opponents VARCHAR)
|
SELECT chief_judge FROM table_name_35 WHERE reason_for_termination = "retirement"
|
Tell me the chief judge which has reason for termination of retirement
|
CREATE TABLE table_name_35 (chief_judge VARCHAR, reason_for_termination VARCHAR)
|
SELECT AVG(round) FROM table_name_56 WHERE circuit = "oulton park"
|
What was the average round for the oulton park circuit?
|
CREATE TABLE table_name_56 (round INTEGER, circuit VARCHAR)
|
SELECT COUNT(no) FROM table_10083598_1 WHERE pole_position = "Kevin Curtain"
|
What was the number of race that Kevin Curtain won?
|
CREATE TABLE table_10083598_1 (no VARCHAR, pole_position VARCHAR)
|
SELECT team FROM table_15420044_1 WHERE difference = "8"
|
Which teams had a difference of 8 between goals scored and goals conceeded
|
CREATE TABLE table_15420044_1 (team VARCHAR, difference VARCHAR)
|
SELECT COUNT(series) FROM table_24425976_2 WHERE production_code = "111"
|
How many episodes in the series has a production code of 111?
|
CREATE TABLE table_24425976_2 (series VARCHAR, production_code VARCHAR)
|
SELECT nationality FROM table_name_51 WHERE position = "defense" AND player = "nikita korovkin"
|
Which Nationality has a Position of defense, and a Player of nikita korovkin?
|
CREATE TABLE table_name_51 (nationality VARCHAR, position VARCHAR, player VARCHAR)
|
SELECT average FROM table_12338595_1 WHERE state = "New York"
|
How much is the average score for New York state?
|
CREATE TABLE table_12338595_1 (average VARCHAR, state VARCHAR)
|
SELECT directed_by FROM table_25740548_4 WHERE production_code = "CA303"
|
Who directed the episode with production code ca303?
|
CREATE TABLE table_25740548_4 (directed_by VARCHAR, production_code VARCHAR)
|
SELECT upstream_rate FROM table_name_60 WHERE version = "adsl" AND standard_name = "itu g.992.2"
|
What's the upstream rate for Itu g.992.2 with a version of ADSL?
|
CREATE TABLE table_name_60 (upstream_rate VARCHAR, version VARCHAR, standard_name VARCHAR)
|
SELECT date FROM table_name_31 WHERE home_team = "collingwood"
|
What is the date of the game where Collingwood was the home team?
|
CREATE TABLE table_name_31 (date VARCHAR, home_team VARCHAR)
|
SELECT format_s_ FROM table_name_40 WHERE date = "september 23, 2008"
|
What is the Format(s) of the release on September 23, 2008?
|
CREATE TABLE table_name_40 (format_s_ VARCHAR, date VARCHAR)
|
SELECT co_drivers FROM table_name_24 WHERE year = 1992
|
Who was the Co-Driver of the winner of 1992's race?
|
CREATE TABLE table_name_24 (co_drivers VARCHAR, year VARCHAR)
|
SELECT machine FROM table_name_68 WHERE rider = "tony rutter"
|
What machine has tony rutter as the rider?
|
CREATE TABLE table_name_68 (machine VARCHAR, rider VARCHAR)
|
SELECT record FROM table_name_39 WHERE score = "1 – 5"
|
What is the record of the game with a score of 1 – 5?
|
CREATE TABLE table_name_39 (record VARCHAR, score VARCHAR)
|
SELECT country FROM table_name_77 WHERE rank = 5
|
Which Country has a Rank of 5?
|
CREATE TABLE table_name_77 (country VARCHAR, rank VARCHAR)
|
SELECT 2005 FROM table_name_37 WHERE 2010 = "grand slam tournaments"
|
What is the 2005 value for the 2010 grand slam tournaments?
|
CREATE TABLE table_name_37 (Id VARCHAR)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.