question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
What team did they play when the series was 1-1? | CREATE TABLE table_name_51 (team VARCHAR, series VARCHAR) | SELECT team FROM table_name_51 WHERE series = "1-1" | ### Context: CREATE TABLE table_name_51 (team VARCHAR, series VARCHAR) ### Question: What team did they play when the series was 1-1? ### Answer: SELECT team FROM table_name_51 WHERE series = "1-1" |
What were the high points on May 12? | CREATE TABLE table_name_4 (high_points VARCHAR, date VARCHAR) | SELECT high_points FROM table_name_4 WHERE date = "may 12" | ### Context: CREATE TABLE table_name_4 (high_points VARCHAR, date VARCHAR) ### Question: What were the high points on May 12? ### Answer: SELECT high_points FROM table_name_4 WHERE date = "may 12" |
What was the team they played when the series was 2-1? | CREATE TABLE table_name_76 (team VARCHAR, series VARCHAR) | SELECT team FROM table_name_76 WHERE series = "2-1" | ### Context: CREATE TABLE table_name_76 (team VARCHAR, series VARCHAR) ### Question: What was the team they played when the series was 2-1? ### Answer: SELECT team FROM table_name_76 WHERE series = "2-1" |
who is the opponent on february 8, 1990? | CREATE TABLE table_name_23 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_23 WHERE date = "february 8, 1990" | ### Context: CREATE TABLE table_name_23 (opponent VARCHAR, date VARCHAR) ### Question: who is the opponent on february 8, 1990? ### Answer: SELECT opponent FROM table_name_23 WHERE date = "february 8, 1990" |
who is the opponent when the streak is won 9 on april 13, 1990? | CREATE TABLE table_name_3 (opponent VARCHAR, streak VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_3 WHERE streak = "won 9" AND date = "april 13, 1990" | ### Context: CREATE TABLE table_name_3 (opponent VARCHAR, streak VARCHAR, date VARCHAR) ### Question: who is the opponent when the streak is won 9 on april 13, 1990? ### Answer: SELECT opponent FROM table_name_3 WHERE streak = "won 9" AND date = "april 13, 1990" |
What is the total number of # Of Prefectural Votes, when # Of Seats Won is greater than 69, and when Leader is Yasuhiro Nakasone? | CREATE TABLE table_name_54 (_number_of_prefectural_votes VARCHAR, _number_of_seats_won VARCHAR, leader VARCHAR) | SELECT COUNT(_number_of_prefectural_votes) FROM table_name_54 WHERE _number_of_seats_won > 69 AND leader = "yasuhiro nakasone" | ### Context: CREATE TABLE table_name_54 (_number_of_prefectural_votes VARCHAR, _number_of_seats_won VARCHAR, leader VARCHAR) ### Question: What is the total number of # Of Prefectural Votes, when # Of Seats Won is greater than 69, and when Leader is Yasuhiro Nakasone? ### Answer: SELECT COUNT(_number_of_prefectural_votes) FROM table_name_54 WHERE _number_of_seats_won > 69 AND leader = "yasuhiro nakasone" |
What is the average # Of National Votes, when the Election is before 1992, when the % Of Prefectural Vote is 39.5%, when Leader is Takeo Fukuda, and when # Of Seats Won is greater than 63? | CREATE TABLE table_name_30 (_number_of_national_votes INTEGER, _number_of_seats_won VARCHAR, leader VARCHAR, election VARCHAR, _percentage_of_prefectural_vote VARCHAR) | SELECT AVG(_number_of_national_votes) FROM table_name_30 WHERE election < 1992 AND _percentage_of_prefectural_vote = "39.5%" AND leader = "takeo fukuda" AND _number_of_seats_won > 63 | ### Context: CREATE TABLE table_name_30 (_number_of_national_votes INTEGER, _number_of_seats_won VARCHAR, leader VARCHAR, election VARCHAR, _percentage_of_prefectural_vote VARCHAR) ### Question: What is the average # Of National Votes, when the Election is before 1992, when the % Of Prefectural Vote is 39.5%, when Leader is Takeo Fukuda, and when # Of Seats Won is greater than 63? ### Answer: SELECT AVG(_number_of_national_votes) FROM table_name_30 WHERE election < 1992 AND _percentage_of_prefectural_vote = "39.5%" AND leader = "takeo fukuda" AND _number_of_seats_won > 63 |
What is the total number of # Of Prefectural Votes, when % Of Prefectural Vote is 48.4%, and when # Of Seats Won is greater than 61? | CREATE TABLE table_name_37 (_number_of_prefectural_votes VARCHAR, _percentage_of_prefectural_vote VARCHAR, _number_of_seats_won VARCHAR) | SELECT COUNT(_number_of_prefectural_votes) FROM table_name_37 WHERE _percentage_of_prefectural_vote = "48.4%" AND _number_of_seats_won > 61 | ### Context: CREATE TABLE table_name_37 (_number_of_prefectural_votes VARCHAR, _percentage_of_prefectural_vote VARCHAR, _number_of_seats_won VARCHAR) ### Question: What is the total number of # Of Prefectural Votes, when % Of Prefectural Vote is 48.4%, and when # Of Seats Won is greater than 61? ### Answer: SELECT COUNT(_number_of_prefectural_votes) FROM table_name_37 WHERE _percentage_of_prefectural_vote = "48.4%" AND _number_of_seats_won > 61 |
What was the resolution of the fight against steve schneider? | CREATE TABLE table_name_25 (res VARCHAR, opponent VARCHAR) | SELECT res FROM table_name_25 WHERE opponent = "steve schneider" | ### Context: CREATE TABLE table_name_25 (res VARCHAR, opponent VARCHAR) ### Question: What was the resolution of the fight against steve schneider? ### Answer: SELECT res FROM table_name_25 WHERE opponent = "steve schneider" |
What was the resolution of the fight when matt grice had a record of 2-0? | CREATE TABLE table_name_89 (res VARCHAR, record VARCHAR) | SELECT res FROM table_name_89 WHERE record = "2-0" | ### Context: CREATE TABLE table_name_89 (res VARCHAR, record VARCHAR) ### Question: What was the resolution of the fight when matt grice had a record of 2-0? ### Answer: SELECT res FROM table_name_89 WHERE record = "2-0" |
What was the record when matt grice fought dennis bermudez with a time of 5:00? | CREATE TABLE table_name_36 (record VARCHAR, time VARCHAR, opponent VARCHAR) | SELECT record FROM table_name_36 WHERE time = "5:00" AND opponent = "dennis bermudez" | ### Context: CREATE TABLE table_name_36 (record VARCHAR, time VARCHAR, opponent VARCHAR) ### Question: What was the record when matt grice fought dennis bermudez with a time of 5:00? ### Answer: SELECT record FROM table_name_36 WHERE time = "5:00" AND opponent = "dennis bermudez" |
What was the outcome of the match against Juan Ignacio Chela? | CREATE TABLE table_name_51 (outcome VARCHAR, opponent VARCHAR) | SELECT outcome FROM table_name_51 WHERE opponent = "juan ignacio chela" | ### Context: CREATE TABLE table_name_51 (outcome VARCHAR, opponent VARCHAR) ### Question: What was the outcome of the match against Juan Ignacio Chela? ### Answer: SELECT outcome FROM table_name_51 WHERE opponent = "juan ignacio chela" |
What is the 250 cc with a year bigger than 1984? | CREATE TABLE table_name_89 (year INTEGER) | SELECT 250 AS _cc FROM table_name_89 WHERE year > 1984 | ### Context: CREATE TABLE table_name_89 (year INTEGER) ### Question: What is the 250 cc with a year bigger than 1984? ### Answer: SELECT 250 AS _cc FROM table_name_89 WHERE year > 1984 |
How much did Jerry Barber score to come in at T9? | CREATE TABLE table_name_79 (score VARCHAR, place VARCHAR, player VARCHAR) | SELECT score FROM table_name_79 WHERE place = "t9" AND player = "jerry barber" | ### Context: CREATE TABLE table_name_79 (score VARCHAR, place VARCHAR, player VARCHAR) ### Question: How much did Jerry Barber score to come in at T9? ### Answer: SELECT score FROM table_name_79 WHERE place = "t9" AND player = "jerry barber" |
What place did Jerry Barber of the United States come in at? | CREATE TABLE table_name_92 (place VARCHAR, country VARCHAR, player VARCHAR) | SELECT place FROM table_name_92 WHERE country = "united states" AND player = "jerry barber" | ### Context: CREATE TABLE table_name_92 (place VARCHAR, country VARCHAR, player VARCHAR) ### Question: What place did Jerry Barber of the United States come in at? ### Answer: SELECT place FROM table_name_92 WHERE country = "united states" AND player = "jerry barber" |
What score did Ed Furgol get to come in at T6? | CREATE TABLE table_name_7 (score VARCHAR, place VARCHAR, player VARCHAR) | SELECT score FROM table_name_7 WHERE place = "t6" AND player = "ed furgol" | ### Context: CREATE TABLE table_name_7 (score VARCHAR, place VARCHAR, player VARCHAR) ### Question: What score did Ed Furgol get to come in at T6? ### Answer: SELECT score FROM table_name_7 WHERE place = "t6" AND player = "ed furgol" |
What score did Ted Kroll get to come in at T2? | CREATE TABLE table_name_80 (score VARCHAR, place VARCHAR, player VARCHAR) | SELECT score FROM table_name_80 WHERE place = "t2" AND player = "ted kroll" | ### Context: CREATE TABLE table_name_80 (score VARCHAR, place VARCHAR, player VARCHAR) ### Question: What score did Ted Kroll get to come in at T2? ### Answer: SELECT score FROM table_name_80 WHERE place = "t2" AND player = "ted kroll" |
Where is Fred Haas from? | CREATE TABLE table_name_15 (country VARCHAR, player VARCHAR) | SELECT country FROM table_name_15 WHERE player = "fred haas" | ### Context: CREATE TABLE table_name_15 (country VARCHAR, player VARCHAR) ### Question: Where is Fred Haas from? ### Answer: SELECT country FROM table_name_15 WHERE player = "fred haas" |
Where is Fred Haas from? | CREATE TABLE table_name_93 (country VARCHAR, player VARCHAR) | SELECT country FROM table_name_93 WHERE player = "fred haas" | ### Context: CREATE TABLE table_name_93 (country VARCHAR, player VARCHAR) ### Question: Where is Fred Haas from? ### Answer: SELECT country FROM table_name_93 WHERE player = "fred haas" |
What is Position, when School/Club Team is McMaster? | CREATE TABLE table_name_34 (position VARCHAR, school_club_team VARCHAR) | SELECT position FROM table_name_34 WHERE school_club_team = "mcmaster" | ### Context: CREATE TABLE table_name_34 (position VARCHAR, school_club_team VARCHAR) ### Question: What is Position, when School/Club Team is McMaster? ### Answer: SELECT position FROM table_name_34 WHERE school_club_team = "mcmaster" |
What is the lowest Round, when Pick is 9 (via Hamilton)? | CREATE TABLE table_name_66 (round INTEGER, pick VARCHAR) | SELECT MIN(round) FROM table_name_66 WHERE pick = "9 (via hamilton)" | ### Context: CREATE TABLE table_name_66 (round INTEGER, pick VARCHAR) ### Question: What is the lowest Round, when Pick is 9 (via Hamilton)? ### Answer: SELECT MIN(round) FROM table_name_66 WHERE pick = "9 (via hamilton)" |
What is Pick, when Position is OL, and when Round is less than 6? | CREATE TABLE table_name_59 (pick VARCHAR, position VARCHAR, round VARCHAR) | SELECT pick FROM table_name_59 WHERE position = "ol" AND round < 6 | ### Context: CREATE TABLE table_name_59 (pick VARCHAR, position VARCHAR, round VARCHAR) ### Question: What is Pick, when Position is OL, and when Round is less than 6? ### Answer: SELECT pick FROM table_name_59 WHERE position = "ol" AND round < 6 |
What is School/Club Team, when Pick is 9 (via Hamilton)? | CREATE TABLE table_name_38 (school_club_team VARCHAR, pick VARCHAR) | SELECT school_club_team FROM table_name_38 WHERE pick = "9 (via hamilton)" | ### Context: CREATE TABLE table_name_38 (school_club_team VARCHAR, pick VARCHAR) ### Question: What is School/Club Team, when Pick is 9 (via Hamilton)? ### Answer: SELECT school_club_team FROM table_name_38 WHERE pick = "9 (via hamilton)" |
What is the Result of the game with an Attendance of 55,353? | CREATE TABLE table_name_53 (result VARCHAR, attendance VARCHAR) | SELECT result FROM table_name_53 WHERE attendance = "55,353" | ### Context: CREATE TABLE table_name_53 (result VARCHAR, attendance VARCHAR) ### Question: What is the Result of the game with an Attendance of 55,353? ### Answer: SELECT result FROM table_name_53 WHERE attendance = "55,353" |
In what Week was the Attendance 39,923? | CREATE TABLE table_name_71 (week INTEGER, attendance VARCHAR) | SELECT SUM(week) FROM table_name_71 WHERE attendance = "39,923" | ### Context: CREATE TABLE table_name_71 (week INTEGER, attendance VARCHAR) ### Question: In what Week was the Attendance 39,923? ### Answer: SELECT SUM(week) FROM table_name_71 WHERE attendance = "39,923" |
What was the Result of the game after Week 9 with an Attendance of 69,714? | CREATE TABLE table_name_70 (result VARCHAR, week VARCHAR, attendance VARCHAR) | SELECT result FROM table_name_70 WHERE week > 9 AND attendance = "69,714" | ### Context: CREATE TABLE table_name_70 (result VARCHAR, week VARCHAR, attendance VARCHAR) ### Question: What was the Result of the game after Week 9 with an Attendance of 69,714? ### Answer: SELECT result FROM table_name_70 WHERE week > 9 AND attendance = "69,714" |
What Week falls on September 4, 1994? | CREATE TABLE table_name_49 (week INTEGER, date VARCHAR) | SELECT AVG(week) FROM table_name_49 WHERE date = "september 4, 1994" | ### Context: CREATE TABLE table_name_49 (week INTEGER, date VARCHAR) ### Question: What Week falls on September 4, 1994? ### Answer: SELECT AVG(week) FROM table_name_49 WHERE date = "september 4, 1994" |
What is Pos., when Player is "Nigel De Jong"? | CREATE TABLE table_name_33 (pos VARCHAR, player VARCHAR) | SELECT pos FROM table_name_33 WHERE player = "nigel de jong" | ### Context: CREATE TABLE table_name_33 (pos VARCHAR, player VARCHAR) ### Question: What is Pos., when Player is "Nigel De Jong"? ### Answer: SELECT pos FROM table_name_33 WHERE player = "nigel de jong" |
What is From Club, when Player is "Robinho"? | CREATE TABLE table_name_80 (from_club VARCHAR, player VARCHAR) | SELECT from_club FROM table_name_80 WHERE player = "robinho" | ### Context: CREATE TABLE table_name_80 (from_club VARCHAR, player VARCHAR) ### Question: What is From Club, when Player is "Robinho"? ### Answer: SELECT from_club FROM table_name_80 WHERE player = "robinho" |
What is Pos., when From Club is "CSKA Moscow"? | CREATE TABLE table_name_20 (pos VARCHAR, from_club VARCHAR) | SELECT pos FROM table_name_20 WHERE from_club = "cska moscow" | ### Context: CREATE TABLE table_name_20 (pos VARCHAR, from_club VARCHAR) ### Question: What is Pos., when From Club is "CSKA Moscow"? ### Answer: SELECT pos FROM table_name_20 WHERE from_club = "cska moscow" |
What is Pos., when From Club is "Chelsea", and when Date is "30 July 2008"? | CREATE TABLE table_name_66 (pos VARCHAR, from_club VARCHAR, date VARCHAR) | SELECT pos FROM table_name_66 WHERE from_club = "chelsea" AND date = "30 july 2008" | ### Context: CREATE TABLE table_name_66 (pos VARCHAR, from_club VARCHAR, date VARCHAR) ### Question: What is Pos., when From Club is "Chelsea", and when Date is "30 July 2008"? ### Answer: SELECT pos FROM table_name_66 WHERE from_club = "chelsea" AND date = "30 july 2008" |
What is the team 2 for the match with a team 1 of Panathinaikos? | CREATE TABLE table_name_34 (team_2 VARCHAR, team_1 VARCHAR) | SELECT team_2 FROM table_name_34 WHERE team_1 = "panathinaikos" | ### Context: CREATE TABLE table_name_34 (team_2 VARCHAR, team_1 VARCHAR) ### Question: What is the team 2 for the match with a team 1 of Panathinaikos? ### Answer: SELECT team_2 FROM table_name_34 WHERE team_1 = "panathinaikos" |
What was the first leg score for the match with a team 1 of Panathinaikos? | CREATE TABLE table_name_59 (team_1 VARCHAR) | SELECT 1 AS st_leg FROM table_name_59 WHERE team_1 = "panathinaikos" | ### Context: CREATE TABLE table_name_59 (team_1 VARCHAR) ### Question: What was the first leg score for the match with a team 1 of Panathinaikos? ### Answer: SELECT 1 AS st_leg FROM table_name_59 WHERE team_1 = "panathinaikos" |
What is the 2nd leg score for the match with a team 2 of Werder Bremen? | CREATE TABLE table_name_48 (team_2 VARCHAR) | SELECT 2 AS nd_leg FROM table_name_48 WHERE team_2 = "werder bremen" | ### Context: CREATE TABLE table_name_48 (team_2 VARCHAR) ### Question: What is the 2nd leg score for the match with a team 2 of Werder Bremen? ### Answer: SELECT 2 AS nd_leg FROM table_name_48 WHERE team_2 = "werder bremen" |
Who is the kitmaker for Fc Augsburg? | CREATE TABLE table_name_38 (kitmaker VARCHAR, team VARCHAR) | SELECT kitmaker FROM table_name_38 WHERE team = "fc augsburg" | ### Context: CREATE TABLE table_name_38 (kitmaker VARCHAR, team VARCHAR) ### Question: Who is the kitmaker for Fc Augsburg? ### Answer: SELECT kitmaker FROM table_name_38 WHERE team = "fc augsburg" |
Who is the head coach of the team, whose shirt sponsor is karstadt quelle versicherungen? | CREATE TABLE table_name_34 (head_coach VARCHAR, shirt_sponsor VARCHAR) | SELECT head_coach FROM table_name_34 WHERE shirt_sponsor = "karstadt quelle versicherungen" | ### Context: CREATE TABLE table_name_34 (head_coach VARCHAR, shirt_sponsor VARCHAR) ### Question: Who is the head coach of the team, whose shirt sponsor is karstadt quelle versicherungen? ### Answer: SELECT head_coach FROM table_name_34 WHERE shirt_sponsor = "karstadt quelle versicherungen" |
Who is the kitmaker for the team that Uwe Rapolder is the head coach of. | CREATE TABLE table_name_84 (kitmaker VARCHAR, head_coach VARCHAR) | SELECT kitmaker FROM table_name_84 WHERE head_coach = "uwe rapolder" | ### Context: CREATE TABLE table_name_84 (kitmaker VARCHAR, head_coach VARCHAR) ### Question: Who is the kitmaker for the team that Uwe Rapolder is the head coach of. ### Answer: SELECT kitmaker FROM table_name_84 WHERE head_coach = "uwe rapolder" |
Who is the team captain of the team that Lübzer is the shirt sponsor for? | CREATE TABLE table_name_88 (team VARCHAR, shirt_sponsor VARCHAR) | SELECT team AS captain FROM table_name_88 WHERE shirt_sponsor = "lübzer" | ### Context: CREATE TABLE table_name_88 (team VARCHAR, shirt_sponsor VARCHAR) ### Question: Who is the team captain of the team that Lübzer is the shirt sponsor for? ### Answer: SELECT team AS captain FROM table_name_88 WHERE shirt_sponsor = "lübzer" |
What was the date of the game number 22? | CREATE TABLE table_name_25 (date VARCHAR, game VARCHAR) | SELECT date FROM table_name_25 WHERE game = 22 | ### Context: CREATE TABLE table_name_25 (date VARCHAR, game VARCHAR) ### Question: What was the date of the game number 22? ### Answer: SELECT date FROM table_name_25 WHERE game = 22 |
What is the Director from Paramount with a Film with a Gross of $128,152,301? | CREATE TABLE table_name_63 (director VARCHAR, studio VARCHAR, gross VARCHAR) | SELECT director FROM table_name_63 WHERE studio = "paramount" AND gross = "$128,152,301" | ### Context: CREATE TABLE table_name_63 (director VARCHAR, studio VARCHAR, gross VARCHAR) ### Question: What is the Director from Paramount with a Film with a Gross of $128,152,301? ### Answer: SELECT director FROM table_name_63 WHERE studio = "paramount" AND gross = "$128,152,301" |
What is the Studio of the Rank 10 Film? | CREATE TABLE table_name_98 (studio VARCHAR, rank VARCHAR) | SELECT studio FROM table_name_98 WHERE rank = 10 | ### Context: CREATE TABLE table_name_98 (studio VARCHAR, rank VARCHAR) ### Question: What is the Studio of the Rank 10 Film? ### Answer: SELECT studio FROM table_name_98 WHERE rank = 10 |
What is the release date of the album written by Ford, Phil Phil Ford under BBC Audio? | CREATE TABLE table_name_12 (release_date VARCHAR, company VARCHAR, writer VARCHAR) | SELECT release_date FROM table_name_12 WHERE company = "bbc audio" AND writer = "ford, phil phil ford" | ### Context: CREATE TABLE table_name_12 (release_date VARCHAR, company VARCHAR, writer VARCHAR) ### Question: What is the release date of the album written by Ford, Phil Phil Ford under BBC Audio? ### Answer: SELECT release_date FROM table_name_12 WHERE company = "bbc audio" AND writer = "ford, phil phil ford" |
What is the release date of the album written by Goss, James James Goss under Audiogo? | CREATE TABLE table_name_36 (release_date VARCHAR, writer VARCHAR, company VARCHAR) | SELECT release_date FROM table_name_36 WHERE writer = "goss, james james goss" AND company = "audiogo" | ### Context: CREATE TABLE table_name_36 (release_date VARCHAR, writer VARCHAR, company VARCHAR) ### Question: What is the release date of the album written by Goss, James James Goss under Audiogo? ### Answer: SELECT release_date FROM table_name_36 WHERE writer = "goss, james james goss" AND company = "audiogo" |
Who is the company that released the album on 2008-09-18 18 September 2008? | CREATE TABLE table_name_76 (company VARCHAR, release_date VARCHAR) | SELECT company FROM table_name_76 WHERE release_date = "2008-09-18 18 september 2008" | ### Context: CREATE TABLE table_name_76 (company VARCHAR, release_date VARCHAR) ### Question: Who is the company that released the album on 2008-09-18 18 September 2008? ### Answer: SELECT company FROM table_name_76 WHERE release_date = "2008-09-18 18 september 2008" |
Notre-Dame-De-Lourdes has what average area km 2? | CREATE TABLE table_name_46 (area_km_2 INTEGER, official_name VARCHAR) | SELECT AVG(area_km_2) FROM table_name_46 WHERE official_name = "notre-dame-de-lourdes" | ### Context: CREATE TABLE table_name_46 (area_km_2 INTEGER, official_name VARCHAR) ### Question: Notre-Dame-De-Lourdes has what average area km 2? ### Answer: SELECT AVG(area_km_2) FROM table_name_46 WHERE official_name = "notre-dame-de-lourdes" |
Saint-Jacques has what as the area km 2? | CREATE TABLE table_name_73 (area_km_2 VARCHAR, official_name VARCHAR) | SELECT area_km_2 FROM table_name_73 WHERE official_name = "saint-jacques" | ### Context: CREATE TABLE table_name_73 (area_km_2 VARCHAR, official_name VARCHAR) ### Question: Saint-Jacques has what as the area km 2? ### Answer: SELECT area_km_2 FROM table_name_73 WHERE official_name = "saint-jacques" |
With an area km 2 of 343.95 what is the official name? | CREATE TABLE table_name_38 (official_name VARCHAR, area_km_2 VARCHAR) | SELECT official_name FROM table_name_38 WHERE area_km_2 = 343.95 | ### Context: CREATE TABLE table_name_38 (official_name VARCHAR, area_km_2 VARCHAR) ### Question: With an area km 2 of 343.95 what is the official name? ### Answer: SELECT official_name FROM table_name_38 WHERE area_km_2 = 343.95 |
Saint-Basile has what status? | CREATE TABLE table_name_32 (status VARCHAR, official_name VARCHAR) | SELECT status FROM table_name_32 WHERE official_name = "saint-basile" | ### Context: CREATE TABLE table_name_32 (status VARCHAR, official_name VARCHAR) ### Question: Saint-Basile has what status? ### Answer: SELECT status FROM table_name_32 WHERE official_name = "saint-basile" |
What circuit has qualifying as the session? | CREATE TABLE table_name_77 (circuit VARCHAR, session VARCHAR) | SELECT circuit FROM table_name_77 WHERE session = "qualifying" | ### Context: CREATE TABLE table_name_77 (circuit VARCHAR, session VARCHAR) ### Question: What circuit has qualifying as the session? ### Answer: SELECT circuit FROM table_name_77 WHERE session = "qualifying" |
The 1997 Japanese Formula 3 Championship is part of what circuit? | CREATE TABLE table_name_63 (circuit VARCHAR, event VARCHAR) | SELECT circuit FROM table_name_63 WHERE event = "1997 japanese formula 3 championship" | ### Context: CREATE TABLE table_name_63 (circuit VARCHAR, event VARCHAR) ### Question: The 1997 Japanese Formula 3 Championship is part of what circuit? ### Answer: SELECT circuit FROM table_name_63 WHERE event = "1997 japanese formula 3 championship" |
The Fall Nationals has what sessions? | CREATE TABLE table_name_84 (session VARCHAR, event VARCHAR) | SELECT session FROM table_name_84 WHERE event = "fall nationals" | ### Context: CREATE TABLE table_name_84 (session VARCHAR, event VARCHAR) ### Question: The Fall Nationals has what sessions? ### Answer: SELECT session FROM table_name_84 WHERE event = "fall nationals" |
The 1977 Japanese Grand Prix in the open wheel discipline has what session? | CREATE TABLE table_name_78 (session VARCHAR, discipline VARCHAR, event VARCHAR) | SELECT session FROM table_name_78 WHERE discipline = "open wheel" AND event = "1977 japanese grand prix" | ### Context: CREATE TABLE table_name_78 (session VARCHAR, discipline VARCHAR, event VARCHAR) ### Question: The 1977 Japanese Grand Prix in the open wheel discipline has what session? ### Answer: SELECT session FROM table_name_78 WHERE discipline = "open wheel" AND event = "1977 japanese grand prix" |
What circuit has a race for the session, and open wheel as the discipline, and the 1977 Japanese Grand Prix as the event? | CREATE TABLE table_name_42 (circuit VARCHAR, event VARCHAR, session VARCHAR, discipline VARCHAR) | SELECT circuit FROM table_name_42 WHERE session = "race" AND discipline = "open wheel" AND event = "1977 japanese grand prix" | ### Context: CREATE TABLE table_name_42 (circuit VARCHAR, event VARCHAR, session VARCHAR, discipline VARCHAR) ### Question: What circuit has a race for the session, and open wheel as the discipline, and the 1977 Japanese Grand Prix as the event? ### Answer: SELECT circuit FROM table_name_42 WHERE session = "race" AND discipline = "open wheel" AND event = "1977 japanese grand prix" |
For what cause is Touring Car Racing the discipline? | CREATE TABLE table_name_91 (cause VARCHAR, discipline VARCHAR) | SELECT cause FROM table_name_91 WHERE discipline = "touring car racing" | ### Context: CREATE TABLE table_name_91 (cause VARCHAR, discipline VARCHAR) ### Question: For what cause is Touring Car Racing the discipline? ### Answer: SELECT cause FROM table_name_91 WHERE discipline = "touring car racing" |
What player scored 70-73-69-72=284? | CREATE TABLE table_name_39 (player VARCHAR, score VARCHAR) | SELECT player FROM table_name_39 WHERE score = 70 - 73 - 69 - 72 = 284 | ### Context: CREATE TABLE table_name_39 (player VARCHAR, score VARCHAR) ### Question: What player scored 70-73-69-72=284? ### Answer: SELECT player FROM table_name_39 WHERE score = 70 - 73 - 69 - 72 = 284 |
What is the lowest amount of money that Craig Stadler won? | CREATE TABLE table_name_64 (money___ INTEGER, player VARCHAR) | SELECT MIN(money___) AS $__ FROM table_name_64 WHERE player = "craig stadler" | ### Context: CREATE TABLE table_name_64 (money___ INTEGER, player VARCHAR) ### Question: What is the lowest amount of money that Craig Stadler won? ### Answer: SELECT MIN(money___) AS $__ FROM table_name_64 WHERE player = "craig stadler" |
What country is David Graham from? | CREATE TABLE table_name_94 (country VARCHAR, player VARCHAR) | SELECT country FROM table_name_94 WHERE player = "david graham" | ### Context: CREATE TABLE table_name_94 (country VARCHAR, player VARCHAR) ### Question: What country is David Graham from? ### Answer: SELECT country FROM table_name_94 WHERE player = "david graham" |
What is the total amount of money that the United States one with a To par of –2? | CREATE TABLE table_name_93 (money___ VARCHAR, country VARCHAR, to_par VARCHAR) | SELECT COUNT(money___) AS $__ FROM table_name_93 WHERE country = "united states" AND to_par = "–2" | ### Context: CREATE TABLE table_name_93 (money___ VARCHAR, country VARCHAR, to_par VARCHAR) ### Question: What is the total amount of money that the United States one with a To par of –2? ### Answer: SELECT COUNT(money___) AS $__ FROM table_name_93 WHERE country = "united states" AND to_par = "–2" |
What score did Jack Nicklaus have when he placed t6? | CREATE TABLE table_name_92 (score VARCHAR, place VARCHAR, player VARCHAR) | SELECT score FROM table_name_92 WHERE place = "t6" AND player = "jack nicklaus" | ### Context: CREATE TABLE table_name_92 (score VARCHAR, place VARCHAR, player VARCHAR) ### Question: What score did Jack Nicklaus have when he placed t6? ### Answer: SELECT score FROM table_name_92 WHERE place = "t6" AND player = "jack nicklaus" |
How much money has a to par of E? | CREATE TABLE table_name_14 (money___ VARCHAR, to_par VARCHAR) | SELECT COUNT(money___) AS $__ FROM table_name_14 WHERE to_par = "e" | ### Context: CREATE TABLE table_name_14 (money___ VARCHAR, to_par VARCHAR) ### Question: How much money has a to par of E? ### Answer: SELECT COUNT(money___) AS $__ FROM table_name_14 WHERE to_par = "e" |
What was the location on October 16? | CREATE TABLE table_name_29 (location VARCHAR, date VARCHAR) | SELECT location FROM table_name_29 WHERE date = "october 16" | ### Context: CREATE TABLE table_name_29 (location VARCHAR, date VARCHAR) ### Question: What was the location on October 16? ### Answer: SELECT location FROM table_name_29 WHERE date = "october 16" |
Who was the winner when the result was 56-0 before 1935? | CREATE TABLE table_name_53 (winner VARCHAR, year VARCHAR, result VARCHAR) | SELECT winner FROM table_name_53 WHERE year < 1935 AND result = "56-0" | ### Context: CREATE TABLE table_name_53 (winner VARCHAR, year VARCHAR, result VARCHAR) ### Question: Who was the winner when the result was 56-0 before 1935? ### Answer: SELECT winner FROM table_name_53 WHERE year < 1935 AND result = "56-0" |
Who was the winner in philadelphia municipal stadium in 1939? | CREATE TABLE table_name_31 (winner VARCHAR, location VARCHAR, year VARCHAR) | SELECT winner FROM table_name_31 WHERE location = "philadelphia municipal stadium" AND year = 1939 | ### Context: CREATE TABLE table_name_31 (winner VARCHAR, location VARCHAR, year VARCHAR) ### Question: Who was the winner in philadelphia municipal stadium in 1939? ### Answer: SELECT winner FROM table_name_31 WHERE location = "philadelphia municipal stadium" AND year = 1939 |
What was the earliest year that the result 21-17? | CREATE TABLE table_name_51 (year INTEGER, result VARCHAR) | SELECT MIN(year) FROM table_name_51 WHERE result = "21-17" | ### Context: CREATE TABLE table_name_51 (year INTEGER, result VARCHAR) ### Question: What was the earliest year that the result 21-17? ### Answer: SELECT MIN(year) FROM table_name_51 WHERE result = "21-17" |
What was the location after 1934 that Philadelphia Eagles lost on October 15? | CREATE TABLE table_name_98 (location VARCHAR, date VARCHAR, year VARCHAR, loser VARCHAR) | SELECT location FROM table_name_98 WHERE year > 1934 AND loser = "philadelphia eagles" AND date = "october 15" | ### Context: CREATE TABLE table_name_98 (location VARCHAR, date VARCHAR, year VARCHAR, loser VARCHAR) ### Question: What was the location after 1934 that Philadelphia Eagles lost on October 15? ### Answer: SELECT location FROM table_name_98 WHERE year > 1934 AND loser = "philadelphia eagles" AND date = "october 15" |
When did chang myon (장면) leave office? | CREATE TABLE table_name_96 (left_office VARCHAR, romanized__hangul_ VARCHAR) | SELECT left_office FROM table_name_96 WHERE romanized__hangul_ = "chang myon (장면)" | ### Context: CREATE TABLE table_name_96 (left_office VARCHAR, romanized__hangul_ VARCHAR) ### Question: When did chang myon (장면) leave office? ### Answer: SELECT left_office FROM table_name_96 WHERE romanized__hangul_ = "chang myon (장면)" |
When did the vice president with a vice over 6 take office? | CREATE TABLE table_name_53 (took_office VARCHAR, vice INTEGER) | SELECT took_office FROM table_name_53 WHERE vice > 6 | ### Context: CREATE TABLE table_name_53 (took_office VARCHAR, vice INTEGER) ### Question: When did the vice president with a vice over 6 take office? ### Answer: SELECT took_office FROM table_name_53 WHERE vice > 6 |
What province in Tumbes has less than 11 districts and a UBIGEO of 2401? | CREATE TABLE table_name_9 (province VARCHAR, ubigeo VARCHAR, districts VARCHAR, region VARCHAR) | SELECT province FROM table_name_9 WHERE districts < 11 AND region = "tumbes" AND ubigeo = 2401 | ### Context: CREATE TABLE table_name_9 (province VARCHAR, ubigeo VARCHAR, districts VARCHAR, region VARCHAR) ### Question: What province in Tumbes has less than 11 districts and a UBIGEO of 2401? ### Answer: SELECT province FROM table_name_9 WHERE districts < 11 AND region = "tumbes" AND ubigeo = 2401 |
What is Chepén's average UBIGEO? | CREATE TABLE table_name_34 (ubigeo INTEGER, province VARCHAR) | SELECT AVG(ubigeo) FROM table_name_34 WHERE province = "chepén" | ### Context: CREATE TABLE table_name_34 (ubigeo INTEGER, province VARCHAR) ### Question: What is Chepén's average UBIGEO? ### Answer: SELECT AVG(ubigeo) FROM table_name_34 WHERE province = "chepén" |
What is the region for Chepén with 3 districts? | CREATE TABLE table_name_63 (region VARCHAR, districts VARCHAR, capital VARCHAR) | SELECT region FROM table_name_63 WHERE districts = 3 AND capital = "chepén" | ### Context: CREATE TABLE table_name_63 (region VARCHAR, districts VARCHAR, capital VARCHAR) ### Question: What is the region for Chepén with 3 districts? ### Answer: SELECT region FROM table_name_63 WHERE districts = 3 AND capital = "chepén" |
What is the Diameter (km) of the Valle with a Longitude of 152.5e named before 1997? | CREATE TABLE table_name_52 (diameter__km_ INTEGER, longitude VARCHAR, year_named VARCHAR) | SELECT MAX(diameter__km_) FROM table_name_52 WHERE longitude = "152.5e" AND year_named < 1997 | ### Context: CREATE TABLE table_name_52 (diameter__km_ INTEGER, longitude VARCHAR, year_named VARCHAR) ### Question: What is the Diameter (km) of the Valle with a Longitude of 152.5e named before 1997? ### Answer: SELECT MAX(diameter__km_) FROM table_name_52 WHERE longitude = "152.5e" AND year_named < 1997 |
What is the Year named of the Ganga Valles? | CREATE TABLE table_name_39 (year_named INTEGER, name VARCHAR) | SELECT MAX(year_named) FROM table_name_39 WHERE name = "ganga valles" | ### Context: CREATE TABLE table_name_39 (year_named INTEGER, name VARCHAR) ### Question: What is the Year named of the Ganga Valles? ### Answer: SELECT MAX(year_named) FROM table_name_39 WHERE name = "ganga valles" |
What is the Latitude of the Alajen Vallis named after 1997? | CREATE TABLE table_name_86 (latitude VARCHAR, year_named VARCHAR, name VARCHAR) | SELECT latitude FROM table_name_86 WHERE year_named > 1997 AND name = "alajen vallis" | ### Context: CREATE TABLE table_name_86 (latitude VARCHAR, year_named VARCHAR, name VARCHAR) ### Question: What is the Latitude of the Alajen Vallis named after 1997? ### Answer: SELECT latitude FROM table_name_86 WHERE year_named > 1997 AND name = "alajen vallis" |
What is the release date with par116 as the cat. #? | CREATE TABLE table_name_96 (release_date VARCHAR, cat__number VARCHAR) | SELECT release_date FROM table_name_96 WHERE cat__number = "par116" | ### Context: CREATE TABLE table_name_96 (release_date VARCHAR, cat__number VARCHAR) ### Question: What is the release date with par116 as the cat. #? ### Answer: SELECT release_date FROM table_name_96 WHERE cat__number = "par116" |
What is the title released on 24 July 2005? | CREATE TABLE table_name_87 (title VARCHAR, release_date VARCHAR) | SELECT title FROM table_name_87 WHERE release_date = "24 july 2005" | ### Context: CREATE TABLE table_name_87 (title VARCHAR, release_date VARCHAR) ### Question: What is the title released on 24 July 2005? ### Answer: SELECT title FROM table_name_87 WHERE release_date = "24 july 2005" |
What is Record, when High Points is "Thaddeus Young (19)", and when Team is "@ Orlando"? | CREATE TABLE table_name_2 (record VARCHAR, high_points VARCHAR, team VARCHAR) | SELECT record FROM table_name_2 WHERE high_points = "thaddeus young (19)" AND team = "@ orlando" | ### Context: CREATE TABLE table_name_2 (record VARCHAR, high_points VARCHAR, team VARCHAR) ### Question: What is Record, when High Points is "Thaddeus Young (19)", and when Team is "@ Orlando"? ### Answer: SELECT record FROM table_name_2 WHERE high_points = "thaddeus young (19)" AND team = "@ orlando" |
What is High Rebounds, when Location Attendance is "Time Warner Cable Arena 10,848"? | CREATE TABLE table_name_14 (high_rebounds VARCHAR, location_attendance VARCHAR) | SELECT high_rebounds FROM table_name_14 WHERE location_attendance = "time warner cable arena 10,848" | ### Context: CREATE TABLE table_name_14 (high_rebounds VARCHAR, location_attendance VARCHAR) ### Question: What is High Rebounds, when Location Attendance is "Time Warner Cable Arena 10,848"? ### Answer: SELECT high_rebounds FROM table_name_14 WHERE location_attendance = "time warner cable arena 10,848" |
Can you tell me the lowest Losses that has the Gains smaller than 0? | CREATE TABLE table_name_24 (losses INTEGER, gains INTEGER) | SELECT MIN(losses) FROM table_name_24 WHERE gains < 0 | ### Context: CREATE TABLE table_name_24 (losses INTEGER, gains INTEGER) ### Question: Can you tell me the lowest Losses that has the Gains smaller than 0? ### Answer: SELECT MIN(losses) FROM table_name_24 WHERE gains < 0 |
what is the record when marc gasol (8) had the high rebounds? | CREATE TABLE table_name_23 (record VARCHAR, high_rebounds VARCHAR) | SELECT record FROM table_name_23 WHERE high_rebounds = "marc gasol (8)" | ### Context: CREATE TABLE table_name_23 (record VARCHAR, high_rebounds VARCHAR) ### Question: what is the record when marc gasol (8) had the high rebounds? ### Answer: SELECT record FROM table_name_23 WHERE high_rebounds = "marc gasol (8)" |
what is the score on march 8? | CREATE TABLE table_name_40 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_40 WHERE date = "march 8" | ### Context: CREATE TABLE table_name_40 (score VARCHAR, date VARCHAR) ### Question: what is the score on march 8? ### Answer: SELECT score FROM table_name_40 WHERE date = "march 8" |
who had the high assists on march 30? | CREATE TABLE table_name_78 (high_assists VARCHAR, date VARCHAR) | SELECT high_assists FROM table_name_78 WHERE date = "march 30" | ### Context: CREATE TABLE table_name_78 (high_assists VARCHAR, date VARCHAR) ### Question: who had the high assists on march 30? ### Answer: SELECT high_assists FROM table_name_78 WHERE date = "march 30" |
Which location has a capacity greater than 51,500? | CREATE TABLE table_name_43 (location VARCHAR, capacity INTEGER) | SELECT location FROM table_name_43 WHERE capacity > 51 OFFSET 500 | ### Context: CREATE TABLE table_name_43 (location VARCHAR, capacity INTEGER) ### Question: Which location has a capacity greater than 51,500? ### Answer: SELECT location FROM table_name_43 WHERE capacity > 51 OFFSET 500 |
Who was the rider who had less than 30 laps, ended in an accident with a car manufactured by yamaha on a grid larger than 3? | CREATE TABLE table_name_30 (rider VARCHAR, grid VARCHAR, time VARCHAR, laps VARCHAR, manufacturer VARCHAR) | SELECT rider FROM table_name_30 WHERE laps < 30 AND manufacturer = "yamaha" AND time = "accident" AND grid > 3 | ### Context: CREATE TABLE table_name_30 (rider VARCHAR, grid VARCHAR, time VARCHAR, laps VARCHAR, manufacturer VARCHAR) ### Question: Who was the rider who had less than 30 laps, ended in an accident with a car manufactured by yamaha on a grid larger than 3? ### Answer: SELECT rider FROM table_name_30 WHERE laps < 30 AND manufacturer = "yamaha" AND time = "accident" AND grid > 3 |
Who was the manufacturer for the race on grid 12? | CREATE TABLE table_name_49 (manufacturer VARCHAR, grid VARCHAR) | SELECT manufacturer FROM table_name_49 WHERE grid = 12 | ### Context: CREATE TABLE table_name_49 (manufacturer VARCHAR, grid VARCHAR) ### Question: Who was the manufacturer for the race on grid 12? ### Answer: SELECT manufacturer FROM table_name_49 WHERE grid = 12 |
Who was the manufacturer for the car that dani pedrosa did less than 9 laps in? | CREATE TABLE table_name_86 (manufacturer VARCHAR, laps VARCHAR, rider VARCHAR) | SELECT manufacturer FROM table_name_86 WHERE laps < 9 AND rider = "dani pedrosa" | ### Context: CREATE TABLE table_name_86 (manufacturer VARCHAR, laps VARCHAR, rider VARCHAR) ### Question: Who was the manufacturer for the car that dani pedrosa did less than 9 laps in? ### Answer: SELECT manufacturer FROM table_name_86 WHERE laps < 9 AND rider = "dani pedrosa" |
How many laps did the driver with the yamaha manufacturer go on grid 3? | CREATE TABLE table_name_61 (laps VARCHAR, manufacturer VARCHAR, grid VARCHAR) | SELECT laps FROM table_name_61 WHERE manufacturer = "yamaha" AND grid = 3 | ### Context: CREATE TABLE table_name_61 (laps VARCHAR, manufacturer VARCHAR, grid VARCHAR) ### Question: How many laps did the driver with the yamaha manufacturer go on grid 3? ### Answer: SELECT laps FROM table_name_61 WHERE manufacturer = "yamaha" AND grid = 3 |
What is the time in Baltimore? | CREATE TABLE table_name_9 (time VARCHAR, city VARCHAR) | SELECT time FROM table_name_9 WHERE city = "baltimore" | ### Context: CREATE TABLE table_name_9 (time VARCHAR, city VARCHAR) ### Question: What is the time in Baltimore? ### Answer: SELECT time FROM table_name_9 WHERE city = "baltimore" |
What date was the score 1-8? | CREATE TABLE table_name_96 (date VARCHAR, score VARCHAR) | SELECT date FROM table_name_96 WHERE score = "1-8" | ### Context: CREATE TABLE table_name_96 (date VARCHAR, score VARCHAR) ### Question: What date was the score 1-8? ### Answer: SELECT date FROM table_name_96 WHERE score = "1-8" |
What is the event where the opponent was Chris Barden? | CREATE TABLE table_name_12 (event VARCHAR, opponent VARCHAR) | SELECT event FROM table_name_12 WHERE opponent = "chris barden" | ### Context: CREATE TABLE table_name_12 (event VARCHAR, opponent VARCHAR) ### Question: What is the event where the opponent was Chris Barden? ### Answer: SELECT event FROM table_name_12 WHERE opponent = "chris barden" |
What is the Surface of the Court in Napoli? | CREATE TABLE table_name_26 (surface VARCHAR, tournament VARCHAR) | SELECT surface FROM table_name_26 WHERE tournament = "napoli" | ### Context: CREATE TABLE table_name_26 (surface VARCHAR, tournament VARCHAR) ### Question: What is the Surface of the Court in Napoli? ### Answer: SELECT surface FROM table_name_26 WHERE tournament = "napoli" |
What is the Outcome of the game with a Score of 6–4, 6–4? | CREATE TABLE table_name_45 (outcome VARCHAR, score VARCHAR) | SELECT outcome FROM table_name_45 WHERE score = "6–4, 6–4" | ### Context: CREATE TABLE table_name_45 (outcome VARCHAR, score VARCHAR) ### Question: What is the Outcome of the game with a Score of 6–4, 6–4? ### Answer: SELECT outcome FROM table_name_45 WHERE score = "6–4, 6–4" |
What is the Outcome of the game against Frederic Jeanclaude? | CREATE TABLE table_name_55 (outcome VARCHAR, opponent VARCHAR) | SELECT outcome FROM table_name_55 WHERE opponent = "frederic jeanclaude" | ### Context: CREATE TABLE table_name_55 (outcome VARCHAR, opponent VARCHAR) ### Question: What is the Outcome of the game against Frederic Jeanclaude? ### Answer: SELECT outcome FROM table_name_55 WHERE opponent = "frederic jeanclaude" |
What is the Opponent in a game with a Score of 6–2, 6–2? | CREATE TABLE table_name_66 (opponent VARCHAR, score VARCHAR) | SELECT opponent FROM table_name_66 WHERE score = "6–2, 6–2" | ### Context: CREATE TABLE table_name_66 (opponent VARCHAR, score VARCHAR) ### Question: What is the Opponent in a game with a Score of 6–2, 6–2? ### Answer: SELECT opponent FROM table_name_66 WHERE score = "6–2, 6–2" |
What is the Surface of the court against Ivo Klec with a Score of 6–3, 6–3? | CREATE TABLE table_name_61 (surface VARCHAR, opponent VARCHAR, score VARCHAR) | SELECT surface FROM table_name_61 WHERE opponent = "ivo klec" AND score = "6–3, 6–3" | ### Context: CREATE TABLE table_name_61 (surface VARCHAR, opponent VARCHAR, score VARCHAR) ### Question: What is the Surface of the court against Ivo Klec with a Score of 6–3, 6–3? ### Answer: SELECT surface FROM table_name_61 WHERE opponent = "ivo klec" AND score = "6–3, 6–3" |
Who was the player with a score of 70-69=139? | CREATE TABLE table_name_37 (player VARCHAR, score VARCHAR) | SELECT player FROM table_name_37 WHERE score = 70 - 69 = 139 | ### Context: CREATE TABLE table_name_37 (player VARCHAR, score VARCHAR) ### Question: Who was the player with a score of 70-69=139? ### Answer: SELECT player FROM table_name_37 WHERE score = 70 - 69 = 139 |
What country did Bart Bryant with a score of 69-70=139 belong to? | CREATE TABLE table_name_37 (country VARCHAR, player VARCHAR, score VARCHAR) | SELECT country FROM table_name_37 WHERE score = 69 - 70 = 139 AND player = "bart bryant" | ### Context: CREATE TABLE table_name_37 (country VARCHAR, player VARCHAR, score VARCHAR) ### Question: What country did Bart Bryant with a score of 69-70=139 belong to? ### Answer: SELECT country FROM table_name_37 WHERE score = 69 - 70 = 139 AND player = "bart bryant" |
What is the country that the player with a score of 70-69=139 from? | CREATE TABLE table_name_43 (country VARCHAR, score VARCHAR) | SELECT country FROM table_name_43 WHERE score = 70 - 69 = 139 | ### Context: CREATE TABLE table_name_43 (country VARCHAR, score VARCHAR) ### Question: What is the country that the player with a score of 70-69=139 from? ### Answer: SELECT country FROM table_name_43 WHERE score = 70 - 69 = 139 |
In what place did the player with a score of 66-67=133 come in? | CREATE TABLE table_name_98 (place VARCHAR, score VARCHAR) | SELECT place FROM table_name_98 WHERE score = 66 - 67 = 133 | ### Context: CREATE TABLE table_name_98 (place VARCHAR, score VARCHAR) ### Question: In what place did the player with a score of 66-67=133 come in? ### Answer: SELECT place FROM table_name_98 WHERE score = 66 - 67 = 133 |
What country was the player from who placed t3 with a score of 70-68=138? | CREATE TABLE table_name_81 (country VARCHAR, place VARCHAR, score VARCHAR) | SELECT country FROM table_name_81 WHERE place = "t3" AND score = 70 - 68 = 138 | ### Context: CREATE TABLE table_name_81 (country VARCHAR, place VARCHAR, score VARCHAR) ### Question: What country was the player from who placed t3 with a score of 70-68=138? ### Answer: SELECT country FROM table_name_81 WHERE place = "t3" AND score = 70 - 68 = 138 |
What was the score for the player from Scotland? | CREATE TABLE table_name_76 (score VARCHAR, country VARCHAR) | SELECT score FROM table_name_76 WHERE country = "scotland" | ### Context: CREATE TABLE table_name_76 (score VARCHAR, country VARCHAR) ### Question: What was the score for the player from Scotland? ### Answer: SELECT score FROM table_name_76 WHERE country = "scotland" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.