combined_text stringlengths 106 1.05k |
|---|
###question:What team did they play when the series was 1-1?###answer:SELECT team FROM table_name_51 WHERE series = "1-1"###context:CREATE TABLE table_name_51 (team VARCHAR, series VARCHAR) |
###question:What were the high points on May 12?###answer:SELECT high_points FROM table_name_4 WHERE date = "may 12"###context:CREATE TABLE table_name_4 (high_points VARCHAR, date 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"###context:CREATE TABLE table_name_76 (team VARCHAR, series VARCHAR) |
###question:who is the opponent on february 8, 1990?###answer: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 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"###context:CREATE TABLE table_name_3 (opponent VARCHAR, streak VARCHAR, date 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"###context:CREATE TABLE table_name_54 (_num... |
###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_... |
###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###context:CREATE TABLE tab... |
###question:What was the resolution of the fight against steve schneider?###answer: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 when matt grice had a record of 2-0?###answer:SELECT res FROM table_name_89 WHERE record = "2-0"###context:CREATE TABLE table_name_89 (res VARCHAR, record 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"###context:CREATE TABLE table_name_36 (record VARCHAR, time 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"###context:CREATE TABLE table_name_51 (outcome VARCHAR, opponent VARCHAR) |
###question:What is the 250 cc with a year bigger than 1984?###answer:SELECT 250 AS _cc FROM table_name_89 WHERE year > 1984###context:CREATE TABLE table_name_89 (year INTEGER) |
###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"###context:CREATE TABLE table_name_79 (score VARCHAR, place 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"###context:CREATE TABLE table_name_92 (place VARCHAR, country 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"###context:CREATE TABLE table_name_7 (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"###context:CREATE TABLE table_name_80 (score VARCHAR, place VARCHAR, player VARCHAR) |
###question:Where is Fred Haas from?###answer: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_93 WHERE player = "fred haas"###context:CREATE TABLE table_name_93 (country VARCHAR, player VARCHAR) |
###question:What is Position, when School/Club Team is McMaster?###answer: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 the lowest Round, when Pick is 9 (via Hamilton)?###answer: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 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###context:CREATE TABLE table_name_59 (pick VARCHAR, position VARCHAR, round 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)"###context:CREATE TABLE table_name_38 (school_club_team VARCHAR, pick 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"###context:CREATE TABLE table_name_53 (result VARCHAR, attendance VARCHAR) |
###question:In what Week was the Attendance 39,923?###answer:SELECT SUM(week) FROM table_name_71 WHERE attendance = "39,923"###context:CREATE TABLE table_name_71 (week INTEGER, 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"###context:CREATE TABLE table_name_70 (result VARCHAR, week VARCHAR, attendance VARCHAR) |
###question:What Week falls on September 4, 1994?###answer:SELECT AVG(week) FROM table_name_49 WHERE date = "september 4, 1994"###context:CREATE TABLE table_name_49 (week INTEGER, date VARCHAR) |
###question:What is Pos., when Player is "Nigel De Jong"?###answer:SELECT pos FROM table_name_33 WHERE player = "nigel de jong"###context:CREATE TABLE table_name_33 (pos VARCHAR, player VARCHAR) |
###question:What is From Club, when Player is "Robinho"?###answer:SELECT from_club FROM table_name_80 WHERE player = "robinho"###context:CREATE TABLE table_name_80 (from_club VARCHAR, player VARCHAR) |
###question:What is Pos., when From Club is "CSKA Moscow"?###answer: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 "Chelsea", and when Date is "30 July 2008"?###answer: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 the team 2 for the match with a team 1 of Panathinaikos?###answer: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 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"###context:CREATE TABLE table_name_59 (team_1 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"###context:CREATE TABLE table_name_48 (team_2 VARCHAR) |
###question:Who is the kitmaker for Fc Augsburg?###answer:SELECT kitmaker FROM table_name_38 WHERE team = "fc augsburg"###context:CREATE TABLE table_name_38 (kitmaker VARCHAR, team 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"###context:CREATE TABLE table_name_34 (head_coach VARCHAR, shirt_sponsor 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"###context:CREATE TABLE table_name_84 (kitmaker VARCHAR, head_coach 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"###context:CREATE TABLE table_name_88 (team VARCHAR, shirt_sponsor VARCHAR) |
###question:What was the date of the game number 22?###answer:SELECT date FROM table_name_25 WHERE game = 22###context:CREATE TABLE table_name_25 (date VARCHAR, game 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"###context:CREATE TABLE table_name_63 (director VARCHAR, studio VARCHAR, gross VARCHAR) |
###question:What is the Studio of the Rank 10 Film?###answer:SELECT studio FROM table_name_98 WHERE rank = 10###context:CREATE TABLE table_name_98 (studio VARCHAR, rank 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"###context:CREATE TABLE table_name_12 (release_date VARCHAR, company VARCHAR, writer 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"###context:CREATE TABLE table_name_36 (release_date VARCHAR, writer VARCHAR, company 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"###context:CREATE TABLE table_name_76 (company VARCHAR, release_date 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"###context:CREATE TABLE table_name_46 (area_km_2 INTEGER, 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"###context:CREATE TABLE table_name_73 (area_km_2 VARCHAR, official_name 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###context:CREATE TABLE table_name_38 (official_name VARCHAR, area_km_2 VARCHAR) |
###question:Saint-Basile has what status?###answer:SELECT status FROM table_name_32 WHERE official_name = "saint-basile"###context:CREATE TABLE table_name_32 (status VARCHAR, official_name VARCHAR) |
###question:What circuit has qualifying as the session?###answer:SELECT circuit FROM table_name_77 WHERE session = "qualifying"###context:CREATE TABLE table_name_77 (circuit VARCHAR, session 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"###context:CREATE TABLE table_name_63 (circuit VARCHAR, event VARCHAR) |
###question:The Fall Nationals has what sessions?###answer:SELECT session FROM table_name_84 WHERE event = "fall nationals"###context:CREATE TABLE table_name_84 (session 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"###context:CREATE TABLE table_name_78 (session VARCHAR, discipline VARCHAR, event 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"###context:CREATE TABLE table_name_42 (circuit VARCH... |
###question:For what cause is Touring Car Racing the discipline?###answer:SELECT cause FROM table_name_91 WHERE discipline = "touring car racing"###context:CREATE TABLE table_name_91 (cause VARCHAR, discipline VARCHAR) |
###question:What player scored 70-73-69-72=284?###answer: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 is the lowest amount of money that Craig Stadler won?###answer:SELECT MIN(money___) AS $__ FROM table_name_64 WHERE player = "craig stadler"###context:CREATE TABLE table_name_64 (money___ INTEGER, player VARCHAR) |
###question:What country is David Graham from?###answer:SELECT country FROM table_name_94 WHERE player = "david graham"###context:CREATE TABLE table_name_94 (country VARCHAR, player 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"###context:CREATE TABLE table_name_93 (money___ VARCHAR, country VARCHAR, to_par 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"###context:CREATE TABLE table_name_92 (score VARCHAR, place VARCHAR, player VARCHAR) |
###question:How much money has a to par of E?###answer:SELECT COUNT(money___) AS $__ FROM table_name_14 WHERE to_par = "e"###context:CREATE TABLE table_name_14 (money___ VARCHAR, to_par VARCHAR) |
###question:What was the location on October 16?###answer:SELECT location FROM table_name_29 WHERE date = "october 16"###context:CREATE TABLE table_name_29 (location VARCHAR, date 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"###context:CREATE TABLE table_name_53 (winner VARCHAR, year VARCHAR, result 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###context:CREATE TABLE table_name_31 (winner VARCHAR, location VARCHAR, year VARCHAR) |
###question:What was the earliest year that the result 21-17?###answer: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 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"###context:CREATE TABLE table_name_98 (location VARCHAR, date VARCHAR, year VARCHAR, loser VARCHAR) |
###question:When did chang myon (장면) leave office?###answer: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 the vice president with a vice over 6 take office?###answer:SELECT took_office FROM table_name_53 WHERE vice > 6###context:CREATE TABLE table_name_53 (took_office VARCHAR, vice INTEGER) |
###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###context:CREATE TABLE table_name_9 (province VARCHAR, ubigeo VARCHAR, districts VARCHAR, region VARCHAR) |
###question:What is Chepén's average UBIGEO?###answer:SELECT AVG(ubigeo) FROM table_name_34 WHERE province = "chepén"###context:CREATE TABLE table_name_34 (ubigeo INTEGER, province 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"###context:CREATE TABLE table_name_63 (region VARCHAR, districts VARCHAR, capital 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###context:CREATE TABLE table_name_52 (diameter__km_ INTEGER, longitude VARCHAR, year_named VARCHAR) |
###question:What is the Year named of the Ganga Valles?###answer: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 Latitude of the Alajen Vallis named after 1997?###answer: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 release date with par116 as the cat. #?###answer: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 title released on 24 July 2005?###answer: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 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"###context:CREATE TABLE table_name_2 (record VARCHAR, high_points VARCHAR, team 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"###context:CREATE TABLE table_name_14 (high_rebounds VARCHAR, location_attendance VARCHAR) |
###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###context:CREATE TABLE table_name_24 (losses INTEGER, gains INTEGER) |
###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)"###context:CREATE TABLE table_name_23 (record VARCHAR, high_rebounds VARCHAR) |
###question:what is the score on march 8?###answer:SELECT score FROM table_name_40 WHERE date = "march 8"###context:CREATE TABLE table_name_40 (score VARCHAR, date VARCHAR) |
###question:who had the high assists on march 30?###answer:SELECT high_assists FROM table_name_78 WHERE date = "march 30"###context:CREATE TABLE table_name_78 (high_assists VARCHAR, date VARCHAR) |
###question:Which location has a capacity greater than 51,500?###answer:SELECT location FROM table_name_43 WHERE capacity > 51 OFFSET 500###context:CREATE TABLE table_name_43 (location VARCHAR, capacity INTEGER) |
###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###context:CREATE TABLE table_name_30 (rider VARCHAR, grid VARCH... |
###question:Who was the manufacturer for the race on grid 12?###answer: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 car that dani pedrosa did less than 9 laps in?###answer: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: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###context:CREATE TABLE table_name_61 (laps VARCHAR, manufacturer VARCHAR, grid VARCHAR) |
###question:What is the time in Baltimore?###answer:SELECT time FROM table_name_9 WHERE city = "baltimore"###context:CREATE TABLE table_name_9 (time VARCHAR, city VARCHAR) |
###question:What date was the score 1-8?###answer:SELECT date FROM table_name_96 WHERE score = "1-8"###context:CREATE TABLE table_name_96 (date VARCHAR, score VARCHAR) |
###question:What is the event where the opponent was Chris Barden?###answer:SELECT event FROM table_name_12 WHERE opponent = "chris barden"###context:CREATE TABLE table_name_12 (event VARCHAR, opponent VARCHAR) |
###question:What is the Surface of the Court in Napoli?###answer:SELECT surface FROM table_name_26 WHERE tournament = "napoli"###context:CREATE TABLE table_name_26 (surface VARCHAR, tournament 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"###context:CREATE TABLE table_name_45 (outcome VARCHAR, score VARCHAR) |
###question:What is the Outcome of the game against Frederic Jeanclaude?###answer:SELECT outcome FROM table_name_55 WHERE opponent = "frederic jeanclaude"###context:CREATE TABLE table_name_55 (outcome VARCHAR, opponent 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"###context:CREATE TABLE table_name_66 (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"###context:CREATE TABLE table_name_61 (surface VARCHAR, opponent 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###context:CREATE TABLE table_name_37 (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"###context:CREATE TABLE table_name_37 (country VARCHAR, player 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###context:CREATE TABLE table_name_43 (country 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###context:CREATE TABLE table_name_98 (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###context:CREATE TABLE table_name_81 (country VARCHAR, place VARCHAR, score VARCHAR) |
###question:What was the score for the player from Scotland?###answer:SELECT score FROM table_name_76 WHERE country = "scotland"###context:CREATE TABLE table_name_76 (score VARCHAR, country VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.