instruction
stringclasses 1
value | input
stringlengths 12
244
| output
stringlengths 22
468
|
---|---|---|
Translate the following into a SQL query | What is the brand name for the antibody Brentuximab Vedotin? | SELECT Brand name FROM table WHERE Antibody = Brentuximab vedotin |
Translate the following into a SQL query | How many targets are there with an approval date of 1997? | SELECT COUNT Target FROM table WHERE Approval date = 1997 |
Translate the following into a SQL query | What are the approved treatments when the antibody is bevacizumab? | SELECT Approved treatment(s) FROM table WHERE Antibody = Bevacizumab |
Translate the following into a SQL query | What is the target when the approved treatment is non-hodgkin lymphoma? | SELECT Target FROM table WHERE Approved treatment(s) = non-Hodgkin lymphoma |
Translate the following into a SQL query | What is the target with an approval date of 2006? | SELECT Target FROM table WHERE Approval date = 2006 |
Translate the following into a SQL query | What is the urban population % when the rural percentage is 43? | SELECT MIN Urban, % FROM table WHERE Rural, % = 43 |
Translate the following into a SQL query | What is the rural population percentage in 1979? | SELECT MIN Rural, % FROM table WHERE Year (January) = 1979 |
Translate the following into a SQL query | How many percentage figures are given for the urban population when the total population number is 14685? | SELECT COUNT Urban, % FROM table WHERE Population (000) = 14685 |
Translate the following into a SQL query | For how many years was the urban population 57%? | SELECT COUNT Source FROM table WHERE Urban, % = 57 |
Translate the following into a SQL query | When tajik is the ethnicity what is islam? | SELECT Islam FROM table WHERE Ethnicity = Tajik |
Translate the following into a SQL query | How many had a length of 455? | SELECT COUNT Name FROM table WHERE Length (m) = 455 |
Translate the following into a SQL query | What is the average climb for Tenbosse? | SELECT MIN Average climb (%) FROM table WHERE Name = Tenbosse |
Translate the following into a SQL query | How many have a kilometers of 233? | SELECT Number FROM table WHERE Kilometer = 233 |
Translate the following into a SQL query | How many have a length of 375? | SELECT COUNT Average climb (%) FROM table WHERE Length (m) = 375 |
Translate the following into a SQL query | What was the team's playoff status in 2011? | SELECT Playoffs FROM table WHERE Year = 2011 |
Translate the following into a SQL query | What was the team's league in 2010? | SELECT League FROM table WHERE Year = 2010 |
Translate the following into a SQL query | What is the league name for the regular season status of 2nd, mid atlantic? | SELECT League FROM table WHERE Regular Season = 2nd, Mid Atlantic |
Translate the following into a SQL query | Who was the winning driver at Okayama International Circuit? | SELECT Winning Driver FROM table WHERE Circuit = Okayama International Circuit |
Translate the following into a SQL query | Who had the fastest lap when the winning team was Tom's Racing? | SELECT Fastest Lap FROM table WHERE Winning Team = TOM'S Racing |
Translate the following into a SQL query | Who had the fastest lap in the race won by Team Impul at the Twin Ring Motegi circuit? | SELECT Fastest Lap FROM table WHERE Winning Team = Team Impul AND Circuit = Twin Ring Motegi |
Translate the following into a SQL query | How many opponents did the team play in week 13? | SELECT COUNT Opponents FROM table WHERE Game = 13 |
Translate the following into a SQL query | How many points did the opponent score on Sept. 14? | SELECT MAX Opponents FROM table WHERE Date = Sept. 14 |
Translate the following into a SQL query | What team were the bills playing where their first down was 23? | SELECT Opponent FROM table WHERE Bills first downs = 23 |
Translate the following into a SQL query | What was the record for the game on Sept. 14? | SELECT Record FROM table WHERE Date = Sept. 14 |
Translate the following into a SQL query | When 12743 is the spelthorne what is the largest gore hundred? | SELECT MAX Gore Hundred FROM table WHERE Spelthorne Hundred = 12743 |
Translate the following into a SQL query | When 1546 is inns of court and chancery what is the finsbury division? | SELECT Finsbury Division FROM table WHERE Inns of Court and Chancery = 1546 |
Translate the following into a SQL query | What is the lowest overall year? | SELECT MIN Year FROM table |
Translate the following into a SQL query | When 70489 is without walls what is the inns of court and chancery? | SELECT Inns of Court and Chancery FROM table WHERE Without the Walls = 70489 |
Translate the following into a SQL query | When within the walls is larger than 56174.0 what is the lowest amount without the walls? | SELECT MIN Without the Walls FROM table WHERE Within the Walls > 56174.0 |
Translate the following into a SQL query | When 272966 is the tower division what is the highest holborn division? | SELECT MAX Holborn Division FROM table WHERE Tower Division = 272966 |
Translate the following into a SQL query | How many stolen ends against where there when Thomas Dufour was skip? | SELECT Stolen Ends Against FROM table WHERE Skip = Thomas Dufour |
Translate the following into a SQL query | What is the maximum number of stolen ends against for Japan? | SELECT MAX Stolen Ends Against FROM table WHERE Country = Japan |
Translate the following into a SQL query | Who was the skip when the stolen ends against was 13? | SELECT Skip FROM table WHERE Stolen Ends Against = 13 |
Translate the following into a SQL query | Name the most glucolse where cl is 154 | SELECT MAX [Glucose](mg/dl) FROM table WHERE [Cl - ](mmol/L) = 154 |
Translate the following into a SQL query | Name the other name where glucose is 5000 | SELECT Other Name FROM table WHERE [Glucose](mg/dl) = 5000 |
Translate the following into a SQL query | Name the other name where na plus is 77 | SELECT Other Name FROM table WHERE [Na + ](mmol/L) = 77 |
Translate the following into a SQL query | Who are the batting partners for the 1997 season? | SELECT Batting partners FROM table WHERE Season = 1997 |
Translate the following into a SQL query | Which season reported wickets of 7th? | SELECT Season FROM table WHERE Wicket = 7th |
Translate the following into a SQL query | Which team is 9th in wickets? | SELECT Fielding team FROM table WHERE Wicket = 9th |
Translate the following into a SQL query | What is the venue for batting partners Mahela Jayawardene and Prasanna Jayawardene | SELECT Venue FROM table WHERE Batting partners = Mahela Jayawardene and Prasanna Jayawardene |
Translate the following into a SQL query | How many teams are listed for 3rd wickets? | SELECT COUNT Batting team FROM table WHERE Wicket = 3rd |
Translate the following into a SQL query | How many total batting partners were most successful in the 2006 season? | SELECT COUNT Batting partners FROM table WHERE Season = 2006 |
Translate the following into a SQL query | What batting partners batted for pakistan? | SELECT Batting partners FROM table WHERE Batting team = Pakistan |
Translate the following into a SQL query | How many runs when bangladesh was the fielding team? | SELECT Runs FROM table WHERE Fielding team = Bangladesh |
Translate the following into a SQL query | What are the wickets when there are 451 runs and india is the fielding team? | SELECT Wicket FROM table WHERE Runs = 451 AND Fielding team = India |
Translate the following into a SQL query | What batting partners played in sydney? | SELECT Batting partners FROM table WHERE Venue = Sydney |
Translate the following into a SQL query | What batting partners were the most successful in 2004? | SELECT Batting partners FROM table WHERE Season = 2004 |
Translate the following into a SQL query | Name the falcons points for record of 3-2 | SELECT Falcons points FROM table WHERE Record = 3-2 |
Translate the following into a SQL query | Name the date for game 9 | SELECT Date FROM table WHERE Game = 9 |
Translate the following into a SQL query | Name the max game for attendance being 54774 | SELECT MAX Game FROM table WHERE Attendance = 54774 |
Translate the following into a SQL query | Name the total number of results for new orleans saints | SELECT COUNT Result FROM table WHERE Opponent = New Orleans Saints |
Translate the following into a SQL query | What is the total number of opponents for the game recorded as 1-3? | SELECT COUNT Opponent FROM table WHERE Record = 1-3 |
Translate the following into a SQL query | What was the result of the 1978 Atlanta Falcons season when the record was 1-2? | SELECT Result FROM table WHERE Record = 1-2 |
Translate the following into a SQL query | How many points did the Falcons score when the record was 4-4? | SELECT Falcons points FROM table WHERE Record = 4-4 |
Translate the following into a SQL query | How many opponents were there for the game recorded as 6-4 in the Atlanta Falcons 1978 season? | SELECT COUNT Opponents FROM table WHERE Record = 6-4 |
Translate the following into a SQL query | In games where the opponent was the San Francisco 49ers what was the minimum amount of points scored? | SELECT MIN Falcons points FROM table WHERE Opponent = San Francisco 49ers |
Translate the following into a SQL query | How many points did kiefer-bos-castrol honda have? | SELECT Pts FROM table WHERE Team = Kiefer-Bos-Castrol Honda |
Translate the following into a SQL query | What result did the ktm motorcycle achieve? | SELECT Position FROM table WHERE Motorcycle = KTM |
Translate the following into a SQL query | What is the lowest number of poles? | SELECT MIN Poles FROM table |
Translate the following into a SQL query | Name the least top 5 | SELECT MIN Top 5 FROM table |
Translate the following into a SQL query | name the top 5 where the winnings is $52,595 | SELECT Top 5 FROM table WHERE Winnings = $52,595 |
Translate the following into a SQL query | name the total number of top 10 also where the position is 51st | SELECT COUNT Top 10 FROM table WHERE Position = 51st |
Translate the following into a SQL query | name all the winnings that the start appears to be 7 | SELECT Winnings FROM table WHERE Starts = 7 |
Translate the following into a SQL query | Name the total number of winnings for 1995 | SELECT COUNT Winnings FROM table WHERE Year = 1995 |
Translate the following into a SQL query | Name the max top 5 for 5.0 avg finish | SELECT MAX Top 5 FROM table WHERE Avg. Finish = 5.0 |
Translate the following into a SQL query | Name the poles for avg finish is 26.8 | SELECT Poles FROM table WHERE Avg. Finish = 26.8 |
Translate the following into a SQL query | Name the total number of teams for top 10 being 5 | SELECT COUNT Team(s) FROM table WHERE Top 10 = 5 |
Translate the following into a SQL query | How many times was the mens u20 recorded when the Womens 40 were Sydney Scorpions def North Queensland Cyclones? | SELECT COUNT Mens u20 FROM table WHERE Womens 40 = Sydney Scorpions def North Queensland Cyclones |
Translate the following into a SQL query | What were the results for mens 40 when the mens u20 was Southern Suns def Gold Coast Sharks? | SELECT Mens 40 FROM table WHERE Mens u20 = Southern Suns def Gold Coast Sharks |
Translate the following into a SQL query | What were the results of the mens open when the womens 40 was Sydney Scorpions defeated Hunter Hornets? | SELECT Mens Open FROM table WHERE Womens 40 = Sydney Scorpions defeated Hunter Hornets |
Translate the following into a SQL query | What were the results of the womens u20 when the mens 45 was Sunwest Razorbacks def Northern Eagles? | SELECT Womens u20 FROM table WHERE Mens 45 = SunWest Razorbacks def Northern Eagles |
Translate the following into a SQL query | What was the mens 45 when mens 40 was Sunwest Razorbacks def Sydney Mets? | SELECT Mens 45 FROM table WHERE Mens 40 = SunWest Razorbacks def Sydney Mets |
Translate the following into a SQL query | What was the mens open when the mens u20 was Qld Country Rustlers def Southern Suns? | SELECT Mens Open FROM table WHERE Mens u20 = Qld Country Rustlers def Southern Suns |
Translate the following into a SQL query | What date was the opponent the Los Angeles Raiders? | SELECT Date FROM table WHERE Opponent = Los Angeles Raiders |
Translate the following into a SQL query | How many games were played at Cleveland Stadium? | SELECT COUNT Date FROM table WHERE Game site = Cleveland Stadium |
Translate the following into a SQL query | In what week number was the attendance 74716? | SELECT COUNT Week FROM table WHERE Attendance = 74716 |
Translate the following into a SQL query | What is the region where Iquitos is located? | SELECT Region FROM table WHERE Name of City = Iquitos |
Translate the following into a SQL query | What is the region containing the Constitutional Province of Callao? | SELECT Region FROM table WHERE Province = Constitutional Province of Callao |
Translate the following into a SQL query | How did the game end against the New Orleans Saints? | SELECT Result FROM table WHERE Opponent = New Orleans Saints |
Translate the following into a SQL query | How many weeks had an attendance of 60038? | SELECT COUNT Week FROM table WHERE Attendance = 60038 |
Translate the following into a SQL query | Name the least points for daniël willemsen / kenny van gaalen | SELECT MIN Points FROM table WHERE Driver / Passenger = Daniël Willemsen / Kenny van Gaalen |
Translate the following into a SQL query | Name the driver passenger for position 4 | SELECT Driver / Passenger FROM table WHERE Position = 4 |
Translate the following into a SQL query | Name the driver/passenger for position 8 | SELECT Driver / Passenger FROM table WHERE Position = 8 |
Translate the following into a SQL query | Name the driver/passenger for 6 position | SELECT Driver / Passenger FROM table WHERE Position = 6 |
Translate the following into a SQL query | Who was the winner when the total attendance was 16597? | SELECT Winner FROM table WHERE Attendance = 16597 |
Translate the following into a SQL query | What is the socket for microprocessors with a frequency of 1.3 ghz? | SELECT Socket FROM table WHERE Frequency = 1.3 GHz |
Translate the following into a SQL query | For a release price of $72, what is the TDP of the microprocessor? | SELECT TDP FROM table WHERE Release price ( USD ) = $72 |
Translate the following into a SQL query | For a processor with part number cy80632007221ab and TDP of 3.6 W, What are the available GPU frequencies? | SELECT GPU frequency FROM table WHERE TDP = 3.6 W AND Part number(s) = CY80632007221AB |
Translate the following into a SQL query | For a processor with model number atom e665c and a TDP of 3.6 W, what is the sSpec number? | SELECT sSpec number FROM table WHERE TDP = 3.6 W AND Model number = Atom E665C |
Translate the following into a SQL query | What is the release price for a processor with part number cy80632007227ab? | SELECT Release price ( USD ) FROM table WHERE Part number(s) = CY80632007227AB |
Translate the following into a SQL query | Name the fsb for atom z540 | SELECT FSB FROM table WHERE Model number = Atom Z540 |
Translate the following into a SQL query | Name the frequency for part number of ac80566ue041dw | SELECT Frequency FROM table WHERE Part number(s) = AC80566UE041DW |
Translate the following into a SQL query | Name the memory for part number of ct80618003201aa | SELECT Memory FROM table WHERE Part number(s) = CT80618003201AA |
Translate the following into a SQL query | Name the memory for meodel number for atom e640t | SELECT Memory FROM table WHERE Model number = Atom E640T |
Translate the following into a SQL query | Name the memory for frequency of 1.6 ghz | SELECT Memory FROM table WHERE Frequency = 1.6 GHz |
Translate the following into a SQL query | Who won the game where the Challenge Leader is ACC (2-1)? | SELECT Winner FROM table WHERE Challenge Leader = ACC (2-1) |
Translate the following into a SQL query | What station aired a game at 9:00pm? | SELECT Television FROM table WHERE Time = 9:00PM |
Translate the following into a SQL query | ON JUNE 11, WHAT WAS THE NUMBER OF RNDS ? | SELECT MIN Rnd FROM table WHERE Date = June 11 |
Translate the following into a SQL query | FOR AUGUST 13 WHAT IS THE RND ? | SELECT MAX Rnd FROM table WHERE Date = August 13 |
Translate the following into a SQL query | PLEASE LIST ALL RACES WHERE THE RND IS 13. | SELECT Race Name FROM table WHERE Rnd = 13 |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.