instruction
stringclasses
1 value
input
stringlengths
12
244
output
stringlengths
22
468
Translate the following into a SQL query
On what Surface was the match with a Score of 6–4, 6–3 and Runner-up Outcome played?
SELECT Surface FROM table WHERE Outcome = runner-up AND Score = 6–4, 6–3
Translate the following into a SQL query
What is the Outcome of the match with Partner Andoni Vivanco?
SELECT Outcome FROM table WHERE Partner = andoni vivanco
Translate the following into a SQL query
Who was the Leading Scorer in the Game with a Score of 96-87?
SELECT Leading Scorer FROM table WHERE Score = 96-87
Translate the following into a SQL query
What Country with a MC Format has a ATCO Records Label?
SELECT Country FROM table WHERE Label = atco records AND Format = mc
Translate the following into a SQL query
What team has a location and attendance at the Seattle Center Coliseum 12,591?
SELECT Team FROM table WHERE Location Attendance = seattle center coliseum 12,591
Translate the following into a SQL query
What is 1st Leg, when Team #2 is "Emelec"?
SELECT 1st leg FROM table WHERE Team #2 = emelec
Translate the following into a SQL query
What is 1st Leg, when Team #1 is "San Lorenzo"?
SELECT 1st leg FROM table WHERE Team #1 = san lorenzo
Translate the following into a SQL query
What is the muzzle energy with grains (g) bullet weight and a max pressure of 35,000 psi?
SELECT Muzzle energy FROM table WHERE Bullet weight = grains (g) AND Max pressure = 35,000 psi
Translate the following into a SQL query
What is the bullet weight with a 12,000 cup max pressure?
SELECT Bullet weight FROM table WHERE Max pressure = 12,000 cup
Translate the following into a SQL query
What is the max pressure for the 468ft•lbf (634 j) muzzle energy?
SELECT Max pressure FROM table WHERE Muzzle energy = 468ft•lbf (634 j)
Translate the following into a SQL query
What is the muzzle velocity for the muzzle energy 351ft•lbf (476 j)?
SELECT Muzzle velocity FROM table WHERE Muzzle energy = 351ft•lbf (476 j)
Translate the following into a SQL query
What is the muzzle velocity for the .38 long colt cartridge?
SELECT Muzzle velocity FROM table WHERE Cartridge = .38 long colt
Translate the following into a SQL query
What is the muzzle energy with 40,000 psi max pressure?
SELECT Muzzle energy FROM table WHERE Max pressure = 40,000 psi
Translate the following into a SQL query
What is the home country of the player who placed t5 and had a score of 69-71=140?
SELECT Country FROM table WHERE Place = t5 AND Score = 69-71=140
Translate the following into a SQL query
What was the place for the player whose final score was 71-69=140?
SELECT Place FROM table WHERE Score = 71-69=140
Translate the following into a SQL query
What was the To par for the player whose final score was 67-71=138?
SELECT To par FROM table WHERE Score = 67-71=138
Translate the following into a SQL query
What was Nolan Henke's To par when he placed in t3?
SELECT To par FROM table WHERE Place = t3 AND Player = nolan henke
Translate the following into a SQL query
WHAT IS THE MEANING WITH Pīnyīn of chē?
SELECT Meaning FROM table WHERE Pīnyīn = chē
Translate the following into a SQL query
WHAT IS THE RADICAL WITH gǔ, AND STROKE COUNT OF 7?
SELECT Radical (variants) FROM table WHERE Pīnyīn = gǔ AND Stroke count = 7
Translate the following into a SQL query
WHAT IS THE STROKE COUNT WITH RADICAL OF 生, FRQUENCY SMALLER THAN 22?
SELECT COUNT Stroke count FROM table WHERE Radical (variants) = 生 AND Frequency < 22
Translate the following into a SQL query
WHAT IS THE STROKE COUNT WITH RADICAL 皿 FREQUENCY SMALLER THAN 129?
SELECT AVG Stroke count FROM table WHERE Radical (variants) = 皿 AND Frequency < 129
Translate the following into a SQL query
What is the Flagship of the Show Hosted by Rover (Shane French)?
SELECT Flagship FROM table WHERE Host(s) = rover (shane french)
Translate the following into a SQL query
What is the Host of the Show with a Market of New York?
SELECT Host(s) FROM table WHERE Market = new york
Translate the following into a SQL query
What is the iHeartRadio of the Bronson and Christine Show?
SELECT iHeartRadio FROM table WHERE Show = bronson and christine
Translate the following into a SQL query
What is the to total number of par with laurie ayton?
SELECT COUNT To par FROM table WHERE Player = laurie ayton
Translate the following into a SQL query
Where is bobby jones (a)?
SELECT Place FROM table WHERE Player = bobby jones (a)
Translate the following into a SQL query
Can you tell me the total number of Top 5 that has the Year smaller than 2009, and the Wins larger than 0?
SELECT COUNT Top 5 FROM table WHERE Year < 2009 AND Wins > 0
Translate the following into a SQL query
Can you tell me the Wins that has the Starts larger than 1, and the Top 5 of 3?
SELECT Wins FROM table WHERE Starts > 1 AND Top 5 = 3
Translate the following into a SQL query
Can you tell me the sum of Starts that the Winnings of $139,774, and the Wins smaller than 0?
SELECT SUM Starts FROM table WHERE Winnings = $139,774 AND Wins < 0
Translate the following into a SQL query
Who is affiliated with the nickname Ramblers?
SELECT Affiliation FROM table WHERE Nickname = ramblers
Translate the following into a SQL query
Who was the Opponent in the match with a Score of 6–3, 6–4?
SELECT Opponent FROM table WHERE Score = 6–3, 6–4
Translate the following into a SQL query
On what Surface was the match against Malek Jaziri played?
SELECT Surface FROM table WHERE Opponent = malek jaziri
Translate the following into a SQL query
What is the total number of Year(s) Won, when Player is Ed Furgol, and when To Par is greater than 12?
SELECT COUNT Year(s) won FROM table WHERE Player = ed furgol AND To par > 12
Translate the following into a SQL query
What is Year(s) Won, when Player is Arnold Palmer?
SELECT Year(s) won FROM table WHERE Player = arnold palmer
Translate the following into a SQL query
What is Highest Total, when Year(s) Won is before 1959?
SELECT MAX Total FROM table WHERE Year(s) won < 1959
Translate the following into a SQL query
What is Player, when Year(s) Won is before 1961, and when To Par is 6?
SELECT Player FROM table WHERE Year(s) won < 1961 AND To par = 6
Translate the following into a SQL query
What is Finish, when To Par is greater than 6, and when Year(s) Won is before 1961?
SELECT Finish FROM table WHERE To par > 6 AND Year(s) won < 1961
Translate the following into a SQL query
What is Top Par, when Country is Sweden?
SELECT To par FROM table WHERE Country = sweden
Translate the following into a SQL query
What is the highest Money ($), when Top Par is E, and when Player is Ernie Els?
SELECT MAX Money ( $ ) FROM table WHERE To par = e AND Player = ernie els
Translate the following into a SQL query
What is the sum of Money ($), when Score is 70-71-70-69=280?
SELECT SUM Money ( $ ) FROM table WHERE Score = 70-71-70-69=280
Translate the following into a SQL query
What was the high assist when the high point was Eric Gordon (21)?
SELECT High assists FROM table WHERE High points = eric gordon (21)
Translate the following into a SQL query
What day was the high assist Mike Taylor (5)?
SELECT Date FROM table WHERE High assists = mike taylor (5)
Translate the following into a SQL query
What was the record when the high rebound was Deandre Jordan (11)?
SELECT Record FROM table WHERE High rebounds = deandre jordan (11)
Translate the following into a SQL query
When was the home team score 17.5 (107)?
SELECT Date FROM table WHERE Home team score = 17.5 (107)
Translate the following into a SQL query
What was the away team when the home was st kilda?
SELECT Away team FROM table WHERE Home team = st kilda
Translate the following into a SQL query
Who was the away team on sunday, 13 february?
SELECT Away team FROM table WHERE Date = sunday, 13 february
Translate the following into a SQL query
Which Week has a Date of december 3, 2001?
SELECT Week FROM table WHERE Date = december 3, 2001
Translate the following into a SQL query
Which Week has a Opponent of tennessee titans?
SELECT Week FROM table WHERE Opponent = tennessee titans
Translate the following into a SQL query
What are the years won with a total of 282?
SELECT Year(s) won FROM table WHERE Total = 282
Translate the following into a SQL query
What was the date when the against was 3?
SELECT Date FROM table WHERE Against = 3
Translate the following into a SQL query
What was the Against when the Opposing Team was sheffield wednesday?
SELECT Against FROM table WHERE Opposing Team = sheffield wednesday
Translate the following into a SQL query
Which round was played in the H Venue on 29 january 1949?
SELECT Round FROM table WHERE Venue = h AND Date = 29 january 1949
Translate the following into a SQL query
What is the total number of Against that were played in the H Venue on 26 february 1949?
SELECT COUNT Against FROM table WHERE Venue = h AND Date = 26 february 1949
Translate the following into a SQL query
What was the round for 29 January 1949, when the against was 1?
SELECT Round FROM table WHERE Against = 1 AND Date = 29 january 1949
Translate the following into a SQL query
What is the Result when the Attendance is 1,634?
SELECT Result FROM table WHERE Attendance = 1,634
Translate the following into a SQL query
On what date was Stuart Potts the Man of the Match?
SELECT Date FROM table WHERE Man of the Match = stuart potts
Translate the following into a SQL query
Who was the Opponent when Terry Miles was the Man of the Match?
SELECT Opponent FROM table WHERE Man of the Match = terry miles
Translate the following into a SQL query
What was the Result of the game dated 21st?
SELECT Result FROM table WHERE Date = 21st
Translate the following into a SQL query
Which Venue is listed under the Date of 21st?
SELECT Venue FROM table WHERE Date = 21st
Translate the following into a SQL query
What was the Result on the Date of 25th?
SELECT Result FROM table WHERE Date = 25th
Translate the following into a SQL query
What was the rank when the opponent was Wisconsin (played at Wisconsin)?
SELECT Rank # FROM table WHERE Opponent# = at wisconsin
Translate the following into a SQL query
What was the result when they played at Michigan State?
SELECT Result FROM table WHERE Opponent# = at michigan state
Translate the following into a SQL query
Who was the opponent when the result was w24-7?
SELECT Opponent# FROM table WHERE Result = w24-7
Translate the following into a SQL query
How many were in attendance when they played vs. 12 Stanford?
SELECT Attendance FROM table WHERE Opponent# = vs. 12 stanford
Translate the following into a SQL query
Which Big (>500ha) has a Micro (10ha) larger than 940, and a Department of potosí, and a Total smaller than 16,240?
SELECT MAX Big (>500ha) FROM table WHERE Micro (10ha) > 940 AND Department = potosí AND Total < 16,240
Translate the following into a SQL query
Which Small (100ha) has a Big (>500ha) of 5,710, and a Total smaller than 36,351?
SELECT MIN Small (100ha) FROM table WHERE Big (>500ha) = 5,710 AND Total < 36,351
Translate the following into a SQL query
How much Micro (10ha) has a Big (>500ha) larger than 63,454, and a Medium (500ha) larger than 440, and a Small (100ha) smaller than 21,047?
SELECT COUNT Micro (10ha) FROM table WHERE Big (>500ha) > 63,454 AND Medium (500ha) > 440 AND Small (100ha) < 21,047
Translate the following into a SQL query
Which Small (100ha) is the highest one that has a Big (>500ha) larger than 9,021?
SELECT MAX Small (100ha) FROM table WHERE Big (>500ha) > 9,021
Translate the following into a SQL query
Which Fumb Yds has a Fumb F. of 0, and a Int LG smaller than 0?
SELECT MAX Fumb Yds FROM table WHERE Fumb F. = 0 AND Int LG < 0
Translate the following into a SQL query
Which Fumb TD has an Int TD of 1, and a Fumb F. smaller than 1?
SELECT MIN Fumb TD FROM table WHERE Int TD = 1 AND Fumb F. < 1
Translate the following into a SQL query
What is the name of the person whose country is West Indies.
SELECT Name FROM table WHERE Country = west indies
Translate the following into a SQL query
What is the Pananmal Punjabi's date of birth?
SELECT Date of birth FROM table WHERE Name = pananmal punjabi
Translate the following into a SQL query
Who was the winner after 2011?
SELECT Winner FROM table WHERE Year > 2011
Translate the following into a SQL query
What was the lowest year for TCU?
SELECT MIN Year FROM table WHERE Winner = tcu
Translate the following into a SQL query
What is the score of player bill rogers?
SELECT Score FROM table WHERE Player = bill rogers
Translate the following into a SQL query
What is the country with a t7 place and a 69-68-72=209 score?
SELECT Country FROM table WHERE Place = t7 AND Score = 69-68-72=209
Translate the following into a SQL query
What is the place of player jim thorpe?
SELECT Place FROM table WHERE Player = jim thorpe
Translate the following into a SQL query
What is the place of player chi-chi rodríguez?
SELECT Place FROM table WHERE Player = chi-chi rodríguez
Translate the following into a SQL query
Who is the player with a 69-68-71=208 score?
SELECT Player FROM table WHERE Score = 69-68-71=208
Translate the following into a SQL query
What state had a title of duke for the royal house of ji?
SELECT State FROM table WHERE Title = duke AND Royal house = ji
Translate the following into a SQL query
What state had the name of wu for the royal house of ji?
SELECT State FROM table WHERE Royal house = ji AND Name = wu
Translate the following into a SQL query
What was the name listed for the royal house of jiang and a title of duke?
SELECT Name FROM table WHERE Title = duke AND Royal house = jiang
Translate the following into a SQL query
What was the name when the state was wey?
SELECT Name FROM table WHERE State = wey
Translate the following into a SQL query
What was the title for the state of qin?
SELECT Title FROM table WHERE State = qin
Translate the following into a SQL query
What was the state that had the vassal name of li?
SELECT State FROM table WHERE Name = li
Translate the following into a SQL query
Where was the match held that lasted 3:24?
SELECT Location FROM table WHERE Time = 3:24
Translate the following into a SQL query
The match against Mark Hunt had what result?
SELECT Res. FROM table WHERE Opponent = mark hunt
Translate the following into a SQL query
Who was the match against at the PRIDE 31 event?
SELECT Opponent FROM table WHERE Event = pride 31
Translate the following into a SQL query
The match that went 1 round, and had a method of submission (rear-naked choke) had what record?
SELECT Record FROM table WHERE Round = 1 AND Method = submission (rear-naked choke)
Translate the following into a SQL query
Who is the player with a t7 place?
SELECT Player FROM table WHERE Place = t7
Translate the following into a SQL query
What is the lowest amount of money player jim colbert has?
SELECT MIN Money ( $ ) FROM table WHERE Player = jim colbert
Translate the following into a SQL query
What is the average Enrollment of Dickinson College?
SELECT AVG Enrollment FROM table WHERE Institution = dickinson college
Translate the following into a SQL query
Which institution has a nickname of Blue Hens?
SELECT Institution FROM table WHERE Nickname = blue hens
Translate the following into a SQL query
What is the nickname of the college established in 1773?
SELECT Nickname FROM table WHERE Established = 1773
Translate the following into a SQL query
What was the time of round 2 against Taylor Mccorriston?
SELECT Time FROM table WHERE Round = 2 AND Opponent = taylor mccorriston
Translate the following into a SQL query
Who had the high assists against San Antonio?
SELECT High assists FROM table WHERE Team = san antonio
Translate the following into a SQL query
What was the number of the game against Charlotte?
SELECT SUM Game FROM table WHERE Team = charlotte
Translate the following into a SQL query
Which Money has a Score of 70-68-73-68=279?
SELECT MIN Money ( $ ) FROM table WHERE Score = 70-68-73-68=279
Translate the following into a SQL query
Which Score has a To par of +1, and a Player of masashi ozaki?
SELECT Score FROM table WHERE To par = +1 AND Player = masashi ozaki
Translate the following into a SQL query
Which money has a Country of united states, and a Place of t6?
SELECT AVG Money ( $ ) FROM table WHERE Country = united states AND Place = t6