answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT place FROM table_name_48 WHERE score = 67 - 70 = 137
|
CREATE TABLE table_name_48 (place VARCHAR, score VARCHAR)
|
WHAT PLACE WAS A SCORE 67-70=137?
|
SELECT country FROM table_name_13 WHERE place = "t7" AND player = "ian woosnam"
|
CREATE TABLE table_name_13 (country VARCHAR, place VARCHAR, player VARCHAR)
|
WHAT COUNTRY HAS A T7 PLACE, WITH IAN WOOSNAM?
|
SELECT country FROM table_name_58 WHERE score = 68 - 70 = 138
|
CREATE TABLE table_name_58 (country VARCHAR, score VARCHAR)
|
WHAT COUNTRY HAS A SCORE OF 68-70=138?
|
SELECT MIN(week) FROM table_name_31 WHERE opponent = "new orleans saints"
|
CREATE TABLE table_name_31 (week INTEGER, opponent VARCHAR)
|
What was the earliest week when the New Orleans Saints were the opponents?
|
SELECT opponent FROM table_name_19 WHERE tv_time = "bye"
|
CREATE TABLE table_name_19 (opponent VARCHAR, tv_time VARCHAR)
|
What was the name of the opponent that having a TV time of Bye?
|
SELECT years_for_grizzlies FROM table_name_81 WHERE school_club_team = "unlv"
|
CREATE TABLE table_name_81 (years_for_grizzlies VARCHAR, school_club_team VARCHAR)
|
What year did the Grizzlies play for the UNLV team?
|
SELECT nationality FROM table_name_37 WHERE position = "forward/center"
|
CREATE TABLE table_name_37 (nationality VARCHAR, position VARCHAR)
|
What nationality is the forward/center position?
|
SELECT school_club_team FROM table_name_70 WHERE nationality = "united states" AND position = "guard" AND years_for_grizzlies = "2012"
|
CREATE TABLE table_name_70 (school_club_team VARCHAR, years_for_grizzlies VARCHAR, nationality VARCHAR, position VARCHAR)
|
What team is from the United States and plays a guard position for the Grizzlies in 2012?
|
SELECT position FROM table_name_90 WHERE nationality = "united states" AND years_for_grizzlies = "2000-2001"
|
CREATE TABLE table_name_90 (position VARCHAR, nationality VARCHAR, years_for_grizzlies VARCHAR)
|
What position is the player from the United States play for the Grizzlies from 2000-2001?
|
SELECT COUNT(bronze) FROM table_name_59 WHERE gold > 0 AND rank = "4" AND total > 4
|
CREATE TABLE table_name_59 (bronze VARCHAR, total VARCHAR, gold VARCHAR, rank VARCHAR)
|
What is the total number of Bronze, when Gold is greater than 0, when Rank is 4, and when Total is greater than 4?
|
SELECT COUNT(total) FROM table_name_68 WHERE gold < 1 AND silver > 0 AND rank = "14" AND nation = "afghanistan"
|
CREATE TABLE table_name_68 (total VARCHAR, nation VARCHAR, rank VARCHAR, gold VARCHAR, silver VARCHAR)
|
What is the total number of Total, when Gold is less than 1, when Silver is greater than 0, when Rank is 14, and when Nation is Afghanistan?
|
SELECT MIN(gold) FROM table_name_52 WHERE silver = 0 AND bronze = 2
|
CREATE TABLE table_name_52 (gold INTEGER, silver VARCHAR, bronze VARCHAR)
|
What is the lowest Gold, when Silver is 0, and when Bronze is 2?
|
SELECT AVG(bronze) FROM table_name_29 WHERE silver = 0 AND rank = "19" AND total > 2
|
CREATE TABLE table_name_29 (bronze INTEGER, total VARCHAR, silver VARCHAR, rank VARCHAR)
|
What is the average Bronze, when Silver is 0, when Rank is 19, and when Total is greater than 2?
|
SELECT MIN(pieces) FROM table_name_15 WHERE release = 1984
|
CREATE TABLE table_name_15 (pieces INTEGER, release VARCHAR)
|
What was the lowest number of pieces for a board released in 1984?
|
SELECT board__cm_ FROM table_name_14 WHERE start = "1940" AND type = "theater" AND release > 2010
|
CREATE TABLE table_name_14 (board__cm_ VARCHAR, release VARCHAR, start VARCHAR, type VARCHAR)
|
What is the dimensions in centimeters of a theater board who started in 1940, who was released after 2010?
|
SELECT AVG(pieces) FROM table_name_14 WHERE start = "1941" AND release > 2001
|
CREATE TABLE table_name_14 (pieces INTEGER, start VARCHAR, release VARCHAR)
|
What is the average number of pieces for boards that started in 1941 and were released after 2001?
|
SELECT board__inches_ FROM table_name_76 WHERE release < 2004 AND start = "1941"
|
CREATE TABLE table_name_76 (board__inches_ VARCHAR, release VARCHAR, start VARCHAR)
|
What are the dimensions in inches of the board released before 2004, that started in 1941?
|
SELECT venue FROM table_name_14 WHERE against < 30 AND opposing_team = "new south wales"
|
CREATE TABLE table_name_14 (venue VARCHAR, against VARCHAR, opposing_team VARCHAR)
|
What is Venue, when Against is less than 30, and when Opposing Team is New South Wales?
|
SELECT status FROM table_name_33 WHERE date = "10/05/1975"
|
CREATE TABLE table_name_33 (status VARCHAR, date VARCHAR)
|
What is Status, when Date is 10/05/1975?
|
SELECT MIN(against) FROM table_name_92 WHERE opposing_team = "queensland"
|
CREATE TABLE table_name_92 (against INTEGER, opposing_team VARCHAR)
|
What is the lowest Against, when Opposing Team is Queensland?
|
SELECT date FROM table_name_34 WHERE status = "second test"
|
CREATE TABLE table_name_34 (date VARCHAR, status VARCHAR)
|
What is Date, when Status is Second Test?
|
SELECT name FROM table_name_27 WHERE place_of_birth = "porsgrunn"
|
CREATE TABLE table_name_27 (name VARCHAR, place_of_birth VARCHAR)
|
Who was born in Porsgrunn?
|
SELECT studio FROM table_name_71 WHERE rank < 3 AND director = "adrian lyne"
|
CREATE TABLE table_name_71 (studio VARCHAR, rank VARCHAR, director VARCHAR)
|
Which Studio has a Rank smaller than 3, and a Director of adrian lyne?
|
SELECT MIN(rank) FROM table_name_24 WHERE gross = "$54,215,416"
|
CREATE TABLE table_name_24 (rank INTEGER, gross VARCHAR)
|
Which Rank is the lowest one that has a Gross of $54,215,416?
|
SELECT date FROM table_name_73 WHERE opponent = "john mcenroe" AND score = "3–6, 6–3, 2–6"
|
CREATE TABLE table_name_73 (date VARCHAR, opponent VARCHAR, score VARCHAR)
|
What is the date of the match against John McEnroe with a Score of 3–6, 6–3, 2–6?
|
SELECT opponent FROM table_name_76 WHERE date = 1989
|
CREATE TABLE table_name_76 (opponent VARCHAR, date VARCHAR)
|
What is the Opponent of the game in 1989?
|
SELECT MAX(pick) FROM table_name_58 WHERE name = "ron whaley"
|
CREATE TABLE table_name_58 (pick INTEGER, name VARCHAR)
|
What is the highest pick of ron whaley?
|
SELECT SUM(overall) FROM table_name_23 WHERE pick < 8 AND college = "western michigan"
|
CREATE TABLE table_name_23 (overall INTEGER, pick VARCHAR, college VARCHAR)
|
What is the overall sum of the game with a pick less than 8 from the college of western michigan?
|
SELECT position FROM table_name_92 WHERE college = "western michigan"
|
CREATE TABLE table_name_92 (position VARCHAR, college VARCHAR)
|
What is the position of the player from the college of western michigan?
|
SELECT MIN(round) FROM table_name_9 WHERE pick > 7 AND name = "bob caldwell" AND overall > 162
|
CREATE TABLE table_name_9 (round INTEGER, overall VARCHAR, pick VARCHAR, name VARCHAR)
|
What is the lowest round of bob caldwell, who has a pick greater than 7 and an overall larger than 162?
|
SELECT college FROM table_name_63 WHERE pick > 7 AND name = "dave adams"
|
CREATE TABLE table_name_63 (college VARCHAR, pick VARCHAR, name VARCHAR)
|
What is the college of dave adams, who has a pick greater than 7?
|
SELECT game FROM table_name_33 WHERE date = "april 28"
|
CREATE TABLE table_name_33 (game VARCHAR, date VARCHAR)
|
What game took place on April 28?
|
SELECT east FROM table_name_83 WHERE west = "ev landsberg"
|
CREATE TABLE table_name_83 (east VARCHAR, west VARCHAR)
|
What is the east with ev landsberg as the west?
|
SELECT north FROM table_name_45 WHERE south = "sb rosenheim"
|
CREATE TABLE table_name_45 (north VARCHAR, south VARCHAR)
|
What is the north with sb rosenheim as the south?
|
SELECT south FROM table_name_24 WHERE west = "ev lindau" AND east = "svg burgkirchen"
|
CREATE TABLE table_name_24 (south VARCHAR, west VARCHAR, east VARCHAR)
|
What is the south with ev lindau as the west and svg burgkirchen as the east?
|
SELECT season FROM table_name_68 WHERE south = "esc holzkirchen" AND west = "esv buchloe" AND north = "ehc bayreuth"
|
CREATE TABLE table_name_68 (season VARCHAR, north VARCHAR, south VARCHAR, west VARCHAR)
|
What season has esc holzkirchen south, esv buchloe west, and ehc bayreuth north?
|
SELECT south FROM table_name_92 WHERE east = "germering wanderers" AND season = "2001-02"
|
CREATE TABLE table_name_92 (south VARCHAR, east VARCHAR, season VARCHAR)
|
What is south in the 2001-02 season, which had germering wanderers east?
|
SELECT west FROM table_name_28 WHERE south = "ev fürstenfeldbruck"
|
CREATE TABLE table_name_28 (west VARCHAR, south VARCHAR)
|
What was west when ev fürstenfeldbruck was south?
|
SELECT SUM(earnings_per_share__p_) FROM table_name_89 WHERE year_ended = "2008" AND revenue__£million_ < 4 OFFSET 177
|
CREATE TABLE table_name_89 (earnings_per_share__p_ INTEGER, year_ended VARCHAR, revenue__£million_ VARCHAR)
|
When revenue is smaller than 4,177 million in year 2008, what is the sum of earnings per share?
|
SELECT earnings_per_share__p_ FROM table_name_47 WHERE year_ended = "2007"
|
CREATE TABLE table_name_47 (earnings_per_share__p_ VARCHAR, year_ended VARCHAR)
|
What is the year 2007 earnings per share?
|
SELECT SUM(net_profit__) AS £m_ FROM table_name_75 WHERE earnings_per_share__p_ = 27.4 AND profit__loss__before_tax__£m_ < 194.6
|
CREATE TABLE table_name_75 (net_profit__ INTEGER, earnings_per_share__p_ VARCHAR, profit__loss__before_tax__£m_ VARCHAR)
|
What is the total net profit when earnings per share is 27.4, and profit/loss befor tax was smaller than 194.6 million?
|
SELECT COUNT(profit__loss__before_tax__) AS £m_ FROM table_name_47 WHERE year_ended = "2011" AND net_profit__£m_ > 123.8
|
CREATE TABLE table_name_47 (profit__loss__before_tax__ VARCHAR, year_ended VARCHAR, net_profit__£m_ VARCHAR)
|
In year 2011 what is sum of profit/loss before tax and net profit larger than 123.8 million?
|
SELECT MAX(goals_for) FROM table_name_97 WHERE goals_against < 63 AND points_1 > 65 AND lost > 10
|
CREATE TABLE table_name_97 (goals_for INTEGER, lost VARCHAR, goals_against VARCHAR, points_1 VARCHAR)
|
What is the highest goals for less than 63 goals against, more than 65 points 1, and more than 10 losses?
|
SELECT MAX(position) FROM table_name_48 WHERE played < 42
|
CREATE TABLE table_name_48 (position INTEGER, played INTEGER)
|
What is the highest position for less than 42 played?
|
SELECT AVG(december) FROM table_name_84 WHERE record = "16-3-4" AND game < 23
|
CREATE TABLE table_name_84 (december INTEGER, record VARCHAR, game VARCHAR)
|
What is the average day in December with a Record of 16-3-4 and a Game smaller than 23?
|
SELECT SUM(winners) FROM table_name_38 WHERE runners_up > 0
|
CREATE TABLE table_name_38 (winners INTEGER, runners_up INTEGER)
|
When the Runners-Up is larger than 0, what's the sum of winners?
|
SELECT MIN(runners_up) FROM table_name_44 WHERE team = "pachuca" AND winners > 1
|
CREATE TABLE table_name_44 (runners_up INTEGER, team VARCHAR, winners VARCHAR)
|
When there are more than 1 winners and the team playing is pachuca, what's the lowest runners-up found?
|
SELECT name FROM table_name_45 WHERE assists = "lake (154) lake (5.1 apg)"
|
CREATE TABLE table_name_45 (name VARCHAR, assists VARCHAR)
|
Can you tell me the Name that has the Assists of lake (154) lake (5.1 apg)?
|
SELECT name FROM table_name_86 WHERE place = 1
|
CREATE TABLE table_name_86 (name VARCHAR, place VARCHAR)
|
Can you tell me the Name that has the Place of 1?
|
SELECT rebounds FROM table_name_27 WHERE name = "pom baskets jena"
|
CREATE TABLE table_name_27 (rebounds VARCHAR, name VARCHAR)
|
Can you tell me the Rebounds that has the Name of pom baskets jena?
|
SELECT steals FROM table_name_13 WHERE place = 6
|
CREATE TABLE table_name_13 (steals VARCHAR, place VARCHAR)
|
Can you tell me the Steals that has the Place of 6?
|
SELECT callsign FROM table_name_52 WHERE area_served = "brisbane" AND freq_currently = "4rph"
|
CREATE TABLE table_name_52 (callsign VARCHAR, area_served VARCHAR, freq_currently VARCHAR)
|
What is the Callsign in Brisbane with a Freq currently of 4rph?
|
SELECT freq_currently FROM table_name_7 WHERE callsign = "4gg"
|
CREATE TABLE table_name_7 (freq_currently VARCHAR, callsign VARCHAR)
|
What is the Freq currently of the 4GG Callsign?
|
SELECT band FROM table_name_95 WHERE purpose = "community" AND callsign = "4bcb"
|
CREATE TABLE table_name_95 (band VARCHAR, purpose VARCHAR, callsign VARCHAR)
|
What is the Community Band with a 4BCB Callsign?
|
SELECT purpose FROM table_name_59 WHERE freq_currently = "4gld"
|
CREATE TABLE table_name_59 (purpose VARCHAR, freq_currently VARCHAR)
|
What is the Purpose of the Callsign with a Freq currently of 4gld?
|
SELECT purpose FROM table_name_43 WHERE freq_currently = "4rph"
|
CREATE TABLE table_name_43 (purpose VARCHAR, freq_currently VARCHAR)
|
What is the Purpose of the Callsign with a Freq currently of 4rph?
|
SELECT press FROM table_name_95 WHERE world_record = "olympic record" AND roger_françois = "jaan kikkas"
|
CREATE TABLE table_name_95 (press VARCHAR, world_record VARCHAR, roger_françois VARCHAR)
|
What was the press like for the world olympic record holder Roger Francois and Jaan Kikkas?
|
SELECT paris___fra__ FROM table_name_67 WHERE "press" = "press" AND roger_françois = "carlo galimberti"
|
CREATE TABLE table_name_67 (paris___fra__ VARCHAR, roger_françois VARCHAR)
|
What was the press like in Paris for Roger Francois, and Carlo Galimberti?
|
SELECT roger_françois FROM table_name_54 WHERE world_record = "total"
|
CREATE TABLE table_name_54 (roger_françois VARCHAR, world_record VARCHAR)
|
What is the total amount of world records for Roger Francois?
|
SELECT place FROM table_name_50 WHERE score = 71 - 70 - 73 - 71 = 285
|
CREATE TABLE table_name_50 (place VARCHAR, score VARCHAR)
|
What place had a score of 71-70-73-71=285?
|
SELECT COUNT(money___) AS $__ FROM table_name_51 WHERE place = "1" AND to_par < 1
|
CREATE TABLE table_name_51 (money___ VARCHAR, place VARCHAR, to_par VARCHAR)
|
How much money for 1st place with a to par less than 1?
|
SELECT player FROM table_name_39 WHERE to_par = "+1"
|
CREATE TABLE table_name_39 (player VARCHAR, to_par VARCHAR)
|
What Player had a To par of +1?
|
SELECT country FROM table_name_94 WHERE to_par = "+4" AND score = 73 - 71 - 73 = 217
|
CREATE TABLE table_name_94 (country VARCHAR, to_par VARCHAR, score VARCHAR)
|
What is the Country of the Player with a To par of +4 and Score of 73-71-73=217?
|
SELECT place FROM table_name_45 WHERE to_par = "+3" AND score = 73 - 70 - 73 = 216
|
CREATE TABLE table_name_45 (place VARCHAR, to_par VARCHAR, score VARCHAR)
|
What is the Place of the Player with a To par of +3 and Score of 73-70-73=216?
|
SELECT place FROM table_name_86 WHERE score = 72 - 70 - 72 = 214
|
CREATE TABLE table_name_86 (place VARCHAR, score VARCHAR)
|
What is the Place of the Player with a Score of 72-70-72=214?
|
SELECT team FROM table_name_73 WHERE kitmaker = "saller" AND shirt_sponsor = "krombacher"
|
CREATE TABLE table_name_73 (team VARCHAR, kitmaker VARCHAR, shirt_sponsor VARCHAR)
|
Which team uses the kitmaker Saller and has Krombacher as their shirt sponsor?
|
SELECT team AS Captain FROM table_name_91 WHERE head_coach = "felix magath"
|
CREATE TABLE table_name_91 (team VARCHAR, head_coach VARCHAR)
|
For the team led by head coach Felix Magath, who is the team captain?
|
SELECT team AS Captain FROM table_name_12 WHERE shirt_sponsor = "krombacher"
|
CREATE TABLE table_name_12 (team VARCHAR, shirt_sponsor VARCHAR)
|
For the team whose shirt sponsor is Krombacher, who is the team captain?
|
SELECT kitmaker FROM table_name_54 WHERE shirt_sponsor = "evonik"
|
CREATE TABLE table_name_54 (kitmaker VARCHAR, shirt_sponsor VARCHAR)
|
For the team whose shirt sponsor is Evonik, who is the kitmaker?
|
SELECT shirt_back_sponsor FROM table_name_69 WHERE shorts_sponsor = "telestet"
|
CREATE TABLE table_name_69 (shirt_back_sponsor VARCHAR, shorts_sponsor VARCHAR)
|
Who is the Shirt Back Sponsor if the Shorts Sponsor is Telestet?
|
SELECT res FROM table_name_34 WHERE opponent = "ryan scheepe"
|
CREATE TABLE table_name_34 (res VARCHAR, opponent VARCHAR)
|
Which of the Res., has Ryan Scheepe as an opponent?
|
SELECT position FROM table_name_74 WHERE player = "jeff brown"
|
CREATE TABLE table_name_74 (position VARCHAR, player VARCHAR)
|
What position is Jeff Brown?
|
SELECT player FROM table_name_33 WHERE cfl_team = "hamilton"
|
CREATE TABLE table_name_33 (player VARCHAR, cfl_team VARCHAR)
|
which player played on Team Hamilton?
|
SELECT cfl_team FROM table_name_16 WHERE player = "jeff brown"
|
CREATE TABLE table_name_16 (cfl_team VARCHAR, player VARCHAR)
|
What CFL team does Jeff brown play for?
|
SELECT COUNT(pick__number) FROM table_name_30 WHERE college = "calgary"
|
CREATE TABLE table_name_30 (pick__number VARCHAR, college VARCHAR)
|
What is the total number of picks for Calgary College?
|
SELECT home FROM table_name_38 WHERE record = "2-3"
|
CREATE TABLE table_name_38 (home VARCHAR, record VARCHAR)
|
Who was the home team when the record was 2-3?
|
SELECT record FROM table_name_75 WHERE date = "april 10"
|
CREATE TABLE table_name_75 (record VARCHAR, date VARCHAR)
|
What was the record on April 10?
|
SELECT spacecraft FROM table_name_66 WHERE end_time = "17:28"
|
CREATE TABLE table_name_66 (spacecraft VARCHAR, end_time VARCHAR)
|
What spacecraft had an EVA that ended at 17:28?
|
SELECT crew FROM table_name_33 WHERE start_date_time = "20 february 20:09"
|
CREATE TABLE table_name_33 (crew VARCHAR, start_date_time VARCHAR)
|
What crew's EVA started on 20 February 20:09?
|
SELECT duration FROM table_name_83 WHERE start_date_time = "8 july 12:38"
|
CREATE TABLE table_name_83 (duration VARCHAR, start_date_time VARCHAR)
|
The EVA that started on 8 July 12:38 went for how long?
|
SELECT spacecraft FROM table_name_96 WHERE start_date_time = "8 july 12:38"
|
CREATE TABLE table_name_96 (spacecraft VARCHAR, start_date_time VARCHAR)
|
The EVA that started 8 July 12:38 was from what spacecraft?
|
SELECT assists FROM table_name_90 WHERE competition = "k-league" AND total_gs > 20 AND team = "pohang steelers" AND opponent = "chunnam dragons"
|
CREATE TABLE table_name_90 (assists VARCHAR, opponent VARCHAR, team VARCHAR, competition VARCHAR, total_gs VARCHAR)
|
How many assists were in the k-league competition, which has more than 20 total Gs, the pohang steelers team, and chunnam dragons as the opponent?
|
SELECT AVG(goals) FROM table_name_65 WHERE competition = "k-league" AND team = "pohang steelers" AND name = "park sung-ho" AND total_gs < 46
|
CREATE TABLE table_name_65 (goals INTEGER, total_gs VARCHAR, name VARCHAR, competition VARCHAR, team VARCHAR)
|
What is the average number of goals of park sung-ho at the k-league competition, which has the pohang steelers team and less than 46 total Gs?
|
SELECT date FROM table_name_93 WHERE venue = "jeonju" AND goals < 28 AND competition = "k-league cup"
|
CREATE TABLE table_name_93 (date VARCHAR, competition VARCHAR, venue VARCHAR, goals VARCHAR)
|
What is the date of the k-league cup, which has less than 28 goals, at the jeonju venue?
|
SELECT SUM(total_as) FROM table_name_81 WHERE team = "bucheon sk" AND opponent = "chunnam dragons" AND venue = "bucheon"
|
CREATE TABLE table_name_81 (total_as INTEGER, venue VARCHAR, team VARCHAR, opponent VARCHAR)
|
What is the sum of the total As of team bucheon sk, who had the chunnam dragons as their opponent at the bucheon venue?
|
SELECT SUM(assists) FROM table_name_6 WHERE venue = "ulsan" AND competition = "k-league" AND name = "kang jae-soon"
|
CREATE TABLE table_name_6 (assists INTEGER, name VARCHAR, venue VARCHAR, competition VARCHAR)
|
What is the sum of the assists kang jae-soon had in the k-league competition in ulsan?
|
SELECT SUM(goals) FROM table_name_16 WHERE date = "2007-06-16"
|
CREATE TABLE table_name_16 (goals INTEGER, date VARCHAR)
|
What is the sum of the goals on 2007-06-16?
|
SELECT to_par FROM table_name_76 WHERE player = "bill glasson"
|
CREATE TABLE table_name_76 (to_par VARCHAR, player VARCHAR)
|
What was Bill Glasson's score to par after 2 rounds?
|
SELECT to_par FROM table_name_20 WHERE player = "phil mickelson"
|
CREATE TABLE table_name_20 (to_par VARCHAR, player VARCHAR)
|
What was Phil Mickelson's score to par?
|
SELECT place FROM table_name_49 WHERE player = "bill glasson"
|
CREATE TABLE table_name_49 (place VARCHAR, player VARCHAR)
|
What place was Bill Glasson in?
|
SELECT AVG(pick) FROM table_name_36 WHERE overall = 85 AND round < 3
|
CREATE TABLE table_name_36 (pick INTEGER, overall VARCHAR, round VARCHAR)
|
What is the average pick with 85 overall in a round lower than 3?
|
SELECT 2009 FROM table_name_71 WHERE 2010 = "q1" AND 2011 = "a"
|
CREATE TABLE table_name_71 (Id VARCHAR)
|
What was the 2009 results that has q1 for 2010, and A as the result for 2011?
|
SELECT 2009 FROM table_name_52 WHERE 2010 = "0"
|
CREATE TABLE table_name_52 (Id VARCHAR)
|
What were the 2009 results that has 0 in 2010?
|
SELECT 2006 FROM table_name_83 WHERE 2011 = "0"
|
CREATE TABLE table_name_83 (Id VARCHAR)
|
With a 2011 of 0 what was the 2006 result?
|
SELECT 2004 FROM table_name_32 WHERE 2005 = "a" AND 2009 = "q1"
|
CREATE TABLE table_name_32 (Id VARCHAR)
|
What is the result for 2004 when A is the result for 2005, and the result of q1 when 2009?
|
SELECT 2007 FROM table_name_23 WHERE 2008 = "153"
|
CREATE TABLE table_name_23 (Id VARCHAR)
|
With a 2008 result of 153 what is the result for 2007?
|
SELECT 2008 FROM table_name_36 WHERE 2009 = "0" AND tournament = "atp tournaments won"
|
CREATE TABLE table_name_36 (tournament VARCHAR)
|
What are the results in 2008 when 2009 is 0, and the ATP Tournaments Won is the tournament?
|
SELECT team FROM table_name_40 WHERE year = 1951
|
CREATE TABLE table_name_40 (team VARCHAR, year VARCHAR)
|
Which team was in 1951?
|
SELECT date FROM table_name_69 WHERE opponent_in_the_final = "arnaud di pasquale"
|
CREATE TABLE table_name_69 (date VARCHAR, opponent_in_the_final VARCHAR)
|
What is the date of the match with arnaud di pasquale as the opponent in the final?
|
SELECT date FROM table_name_27 WHERE outcome = "winner" AND opponent_in_the_final = "jim courier"
|
CREATE TABLE table_name_27 (date VARCHAR, outcome VARCHAR, opponent_in_the_final VARCHAR)
|
What is the date of the match with a winner outcome and jim courier as the opponent in the final?
|
Subsets and Splits
SQL Console for knowrohit07/know_sql
Finds questions in the dataset that contain the word 'god', providing a basic filtered view without much analytical insight.