instruction
stringclasses 1
value | input
stringlengths 12
244
| output
stringlengths 22
468
|
---|---|---|
Translate the following into a SQL query | What is the highest L of the tournament? | SELECT MAX L FROM table |
Translate the following into a SQL query | What is the highest W of the 0 L? | SELECT MAX W FROM table WHERE L = 0 |
Translate the following into a SQL query | Name the least pa for w being 2 | SELECT MIN PA FROM table WHERE W = 2 |
Translate the following into a SQL query | Name the least ends lost for joëlle belley (glenmore) | SELECT MIN Ends Lost FROM table WHERE Skip (Club) = Joëlle Belley (Glenmore) |
Translate the following into a SQL query | Which skip (club) had 28 PA? | SELECT Skip (Club) FROM table WHERE PA = 28 |
Translate the following into a SQL query | What is the most amount of stolen ends for a skip with 1 W? | SELECT MAX Stolen Ends FROM table WHERE W = 1 |
Translate the following into a SQL query | Which skip (club) had 31 PA and 9 blank ends? | SELECT Skip (Club) FROM table WHERE PA = 31 AND Blank Ends = 9 |
Translate the following into a SQL query | What is the least amount of blank ends for a skip who has 44 PF? | SELECT MIN Blank Ends FROM table WHERE PF = 44 |
Translate the following into a SQL query | How many high points occur with the team Umass? | SELECT COUNT High points FROM table WHERE Team = UMass |
Translate the following into a SQL query | When la salle is the team who has the highest amount of points? | SELECT High points FROM table WHERE Team = La Salle |
Translate the following into a SQL query | When allen/moore/wyatt – 4 have the highest amount of assists what is the highest game? | SELECT MAX Game FROM table WHERE High assists = Allen/Moore/Wyatt – 4 |
Translate the following into a SQL query | When dayton is the team what is the record? | SELECT Record FROM table WHERE Team = Dayton |
Translate the following into a SQL query | What the title of the song when the result is to the live shows? | SELECT Song title FROM table WHERE Result (Placement) = to the Live Shows |
Translate the following into a SQL query | What is the episode when the original performaer is diana ross? | SELECT Episode FROM table WHERE Original performer = Diana Ross |
Translate the following into a SQL query | Who is the original performer when the episode is casting? | SELECT Original performer FROM table WHERE Episode = Casting |
Translate the following into a SQL query | What is the pa listed when the ends won is 21? | SELECT MAX PA FROM table WHERE Ends Won = 21 |
Translate the following into a SQL query | How many times is there an entry in stolen ends when skip (club) is listed as debbie folk (nutana)? | SELECT COUNT Stolen Ends FROM table WHERE Skip (Club) = Debbie Folk (Nutana) |
Translate the following into a SQL query | What is the total mumber of skip (club) entries when the pf is 40? | SELECT COUNT Skip (Club) FROM table WHERE PF = 40 |
Translate the following into a SQL query | What is the number of ends won entries when the skip (club) is chantelle eberle (tartan)? | SELECT COUNT Ends Won FROM table WHERE Skip (Club) = Chantelle Eberle (Tartan) |
Translate the following into a SQL query | What horse had a starting price of 66/1? | SELECT Name FROM table WHERE Starting price = 66/1 |
Translate the following into a SQL query | Who is listed under skip (club) when the ends won is 43? | SELECT Skip (Club) FROM table WHERE Ends Won = 43 |
Translate the following into a SQL query | What is the L when the skip club is Jeff Richard (kelowna)? | SELECT MAX L FROM table WHERE Skip (Club) = Jeff Richard (Kelowna) |
Translate the following into a SQL query | What is the L when the W is 4? | SELECT MIN L FROM table WHERE W = 4 |
Translate the following into a SQL query | What is the largest number in L? | SELECT MAX L FROM table |
Translate the following into a SQL query | What is the PA when the PF is 73? | SELECT MIN PA FROM table WHERE PF = 73 |
Translate the following into a SQL query | What is the blank ends record when the win record is higher than 6.0? | SELECT Blank Ends FROM table WHERE W > 6.0 |
Translate the following into a SQL query | What is the win record where the pa record is 62? | SELECT W FROM table WHERE PA = 62 |
Translate the following into a SQL query | What is listed under L when the stolen ends is 1? | SELECT L FROM table WHERE Stolen Ends = 1 |
Translate the following into a SQL query | What is listed under W when the ends won is 22? | SELECT MIN W FROM table WHERE Ends Won = 22 |
Translate the following into a SQL query | What is listed under L when the ends won is 21? | SELECT MAX L FROM table WHERE Ends Won = 21 |
Translate the following into a SQL query | How many rank entries are there when new points are 1155? | SELECT COUNT Rank FROM table WHERE New points = 1155 |
Translate the following into a SQL query | What is listed in new points when status is second round lost to xavier malisse? | SELECT MIN New points FROM table WHERE Status = Second round lost to Xavier Malisse |
Translate the following into a SQL query | What is the status when points is 4595? | SELECT Status FROM table WHERE Points = 4595 |
Translate the following into a SQL query | What is the status when the rank is 2? | SELECT Status FROM table WHERE Rank = 2 |
Translate the following into a SQL query | How many points are listed when the rank is 17? | SELECT MAX Points FROM table WHERE Rank = 17 |
Translate the following into a SQL query | How many seed entries are there when points are 2175? | SELECT COUNT Seed FROM table WHERE Points = 2175 |
Translate the following into a SQL query | How many clubs remained when there were 4 winners from the previous round? | SELECT Clubs remaining FROM table WHERE Winners from previous round = 4 |
Translate the following into a SQL query | What is the maximum number of clubs remaining when the league entering at this round was allsvenskan? | SELECT MIN Clubs remaining FROM table WHERE Leagues entering at this round = Allsvenskan |
Translate the following into a SQL query | How many different values of clubs involved were there when the league entering at this round was allsvenskan? | SELECT COUNT Clubs involved FROM table WHERE Leagues entering at this round = Allsvenskan |
Translate the following into a SQL query | Which programs were originally broadcast on CITV? | SELECT Programme FROM table WHERE Original channel(s) = CITV |
Translate the following into a SQL query | What is the date of return for the program for the program "Big Brother"? | SELECT Date of return FROM table WHERE Programme = Big Brother |
Translate the following into a SQL query | How many episodes are directed by Jamie Payne? | SELECT COUNT Episode FROM table WHERE Directed by = Jamie Payne |
Translate the following into a SQL query | How many millions of viewers are listed when the share is 10.8? | SELECT UK viewers (million) FROM table WHERE Share (%) = 10.8 |
Translate the following into a SQL query | Who is the director when there are 2.70 million viewers? | SELECT Directed by FROM table WHERE UK viewers (million) = 2.70 |
Translate the following into a SQL query | How many episodes have the title "episode 2"? | SELECT MIN Episode FROM table WHERE Title = "Episode 2" |
Translate the following into a SQL query | How many episodes hve 4.50 million viewers? | SELECT Episode FROM table WHERE UK viewers (million) = 4.50 |
Translate the following into a SQL query | Who is the director when the share is 11.8? | SELECT Directed by FROM table WHERE Share (%) = 11.8 |
Translate the following into a SQL query | Who wrote the episode with production code 57376? | SELECT Written by FROM table WHERE Production code = 57376 |
Translate the following into a SQL query | What is the smallest numbered production code listed? | SELECT MIN Production code FROM table |
Translate the following into a SQL query | What date did the episode that was directed by Christian i. nyby ii originally air on? | SELECT Original air date FROM table WHERE Directed by = Christian I. Nyby II |
Translate the following into a SQL query | What is the original air date of the episode that was number 31 in the series? | SELECT Original air date FROM table WHERE No. in series = 31 |
Translate the following into a SQL query | What is the original air date of the episode that was directed by Bruce Seth Green? | SELECT Original air date FROM table WHERE Directed by = Bruce Seth Green |
Translate the following into a SQL query | Who wrote the episode titled "Goliath (Part 2)"? | SELECT Written by FROM table WHERE Title = "Goliath (Part 2)" |
Translate the following into a SQL query | What number episode in the season was titled "K.I.T.T. the Cat"? | SELECT MAX No. in season FROM table WHERE Title = "K.I.T.T. the Cat" |
Translate the following into a SQL query | How many times is the couple kerry & daniel? | SELECT COUNT Place FROM table WHERE Couple = Kerry & Daniel |
Translate the following into a SQL query | how many times is the total points 128.0? | SELECT COUNT Couple FROM table WHERE Total points = 128.0 |
Translate the following into a SQL query | How many times is the couple laura and colin? | SELECT COUNT Place FROM table WHERE Couple = Laura and Colin |
Translate the following into a SQL query | what is the average when the place is 16? | SELECT Average FROM table WHERE Place = 16 |
Translate the following into a SQL query | How many times is the rank by average 4? | SELECT COUNT Place FROM table WHERE Rank by average = 4 |
Translate the following into a SQL query | How many different season numbers does the episode "The Nineteenth Hole" have? | SELECT COUNT No. in season FROM table WHERE Title = "The Nineteenth Hole" |
Translate the following into a SQL query | How many different pairs of writers wrote the episode with series number 56? | SELECT COUNT Written by FROM table WHERE No. in series = 56 |
Translate the following into a SQL query | what is the school for chris mcnamara? | SELECT Last School/College FROM table WHERE Name = Chris McNamara |
Translate the following into a SQL query | how many hometowns for faisal aden? | SELECT COUNT Hometown FROM table WHERE Name = Faisal Aden |
Translate the following into a SQL query | what year is chris mcnamara? | SELECT Year FROM table WHERE Name = Chris McNamara |
Translate the following into a SQL query | what is the height of columbia river hs? | SELECT Height FROM table WHERE Last School/College = Columbia River HS |
Translate the following into a SQL query | what is the hometown for mike ladd? | SELECT Hometown FROM table WHERE Name = Mike Ladd |
Translate the following into a SQL query | How many seasons did Apocalypstix place 2nd? | SELECT COUNT Season FROM table WHERE Apocalypstix = 2nd |
Translate the following into a SQL query | What season did the Sake Tuyas come in 1st place? | SELECT Season FROM table WHERE Sake Tuyas = 1st |
Translate the following into a SQL query | What is the most recent season where the Denim Demons placed 3rd? | SELECT MAX Season FROM table WHERE Denim Demons = 3rd |
Translate the following into a SQL query | What place did the Sake Tuyas come in when the Denim Demons were 4th? | SELECT Sake Tuyas FROM table WHERE Denim Demons = 4th |
Translate the following into a SQL query | List all the places that the Apocalypstix occupied when the Denim Demons were 2nd. | SELECT Apocalypstix FROM table WHERE Denim Demons = 2nd |
Translate the following into a SQL query | Which team has a midfielder of konrad warzycha? | SELECT MLS team FROM table WHERE Position = Midfielder AND Player = Konrad Warzycha |
Translate the following into a SQL query | What is the pick number for the team toronto fc and affiliation is ldu quito? | SELECT MAX Pick # FROM table WHERE MLS team = Toronto FC AND Affiliation = LDU Quito |
Translate the following into a SQL query | Which MLS team picked player Jason Herrick? | SELECT MLS team FROM table WHERE Player = Jason Herrick |
Translate the following into a SQL query | What position did the team new york red bulls pick? | SELECT Position FROM table WHERE MLS team = New York Red Bulls |
Translate the following into a SQL query | What was the position when the affiliation is ldu quito? | SELECT Position FROM table WHERE Affiliation = LDU Quito |
Translate the following into a SQL query | how many peaks where for the chinese episode named 萬凰之王 | SELECT COUNT Peak FROM table WHERE Chinese title = 萬凰之王 |
Translate the following into a SQL query | what is the number of the average of the drama titled 魚躍在花見 | SELECT MAX Average FROM table WHERE Chinese title = 魚躍在花見 |
Translate the following into a SQL query | how many milion of viewers where in the episode called in english "is a great way to care" | SELECT HK viewers FROM table WHERE English title = A Great Way to Care |
Translate the following into a SQL query | what is the number of the premiere for the 34 peak | SELECT Premiere FROM table WHERE Peak = 34 |
Translate the following into a SQL query | In what week was the first game played? | SELECT MIN Week FROM table |
Translate the following into a SQL query | How many object dates have origin in Samoa? | SELECT COUNT Object Date FROM table WHERE Origin = Samoa |
Translate the following into a SQL query | How many origins have titles of Samoan cricket bats? | SELECT COUNT Origin FROM table WHERE Title & Link to Episode on YouTube = Samoan Cricket Bats |
Translate the following into a SQL query | How many object dates does episode #16 have? | SELECT COUNT Object Date FROM table WHERE Episode Number = 16 |
Translate the following into a SQL query | Which films participated in the 61st Berlin international film festival? | SELECT Participants/Recipients FROM table WHERE Film Festival = 61st Berlin International Film Festival |
Translate the following into a SQL query | What was the result when competing in the Opening NIght Film category? | SELECT Result FROM table WHERE Category = Opening Night Film |
Translate the following into a SQL query | Which films participated in the 30th Hawaii International Film Festival? | SELECT Participants/Recipients FROM table WHERE Film Festival = 30th Hawaii International Film Festival |
Translate the following into a SQL query | Which films participated when the category was Best Newcomer? | SELECT Participants/Recipients FROM table WHERE Category = Best Newcomer |
Translate the following into a SQL query | in which year the season was in 5th position | SELECT Season FROM table WHERE Position = 5th |
Translate the following into a SQL query | what is the name of the movement in the 7th position | SELECT Movements FROM table WHERE Position = 7th |
Translate the following into a SQL query | what is the name of the level for the 7th position | SELECT Level FROM table WHERE Position = 7th |
Translate the following into a SQL query | how many sections are for the season of 2008 | SELECT COUNT Section FROM table WHERE Season = 2008 |
Translate the following into a SQL query | in what year the position was the 9th | SELECT Season FROM table WHERE Position = 9th |
Translate the following into a SQL query | Who was eliminated a person at 18:48? | SELECT Eliminated by FROM table WHERE Time = 18:48 |
Translate the following into a SQL query | How many entries are shown for entered at 21:09? | SELECT COUNT Entered FROM table WHERE Time = 21:09 |
Translate the following into a SQL query | Who was eliminated by being pinned after a spear at 22:50? | SELECT Wrestler FROM table WHERE Method of elimination = Pinned after a spear AND Time = 22:50 |
Translate the following into a SQL query | What number was the person eliminated at 22:50? | SELECT Eliminated FROM table WHERE Time = 22:50 |
Translate the following into a SQL query | what is the circuit where the fastest lap is sam lowes and the winning rider is luca scassa? | SELECT Circuit FROM table WHERE Fastest Lap = Sam Lowes AND Winning Rider = Luca Scassa |
Translate the following into a SQL query | what is the round wher the fabien foret had the fastest lap and david salom was the pole position? | SELECT Round FROM table WHERE Fastest Lap = Fabien Foret AND Pole Position = David Salom |
Translate the following into a SQL query | who had the fastest lap for round 1? | SELECT Fastest Lap FROM table WHERE Round = 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.