instruction
stringclasses 1
value | input
stringlengths 12
244
| output
stringlengths 22
468
|
---|---|---|
Translate the following into a SQL query | What is the brightest star of the constellation that means archer? | SELECT Brightest star FROM table WHERE Meaning = archer |
Translate the following into a SQL query | What is the other abbreviation of the constellation that has hydrae /ˈhaɪdriː/ as genitive? | SELECT Other abbreviation FROM table WHERE Genitive = Hydrae /ˈhaɪdriː/ |
Translate the following into a SQL query | What is the meaning of the constellation that has puppis /ˈpʌpɨs/ as genitive? | SELECT Meaning FROM table WHERE Genitive = Puppis /ˈpʌpɨs/ |
Translate the following into a SQL query | How many track numbers were called song 2? | SELECT COUNT Track no. FROM table WHERE Track = Song 2 |
Translate the following into a SQL query | Who was the vocal percussionist when stevie wonder was the original artist? | SELECT Vocal Percussionist FROM table WHERE Original Artist = Stevie Wonder |
Translate the following into a SQL query | What track name had Terry Tamm as the soloist? | SELECT Track FROM table WHERE Soloist(s) = Terry Tamm |
Translate the following into a SQL query | What was the date of the game that had a result of Army 16, SMU 14? | SELECT Date FROM table WHERE Matchups/Results = Army 16, SMU 14 |
Translate the following into a SQL query | What was the city whose stadium is Gerald J. Ford Stadium? | SELECT City FROM table WHERE Stadium = Gerald J. Ford Stadium |
Translate the following into a SQL query | What is every category wise when the multi lane is 677? | SELECT Category wise FROM table WHERE Multi lane = 677 |
Translate the following into a SQL query | What is the highest value for multi lane if category wise is major district roads? | SELECT MAX Multi lane FROM table WHERE Category wise = Major district roads |
Translate the following into a SQL query | What is the least total? | SELECT MIN Total FROM table |
Translate the following into a SQL query | What are the years of TeBe career for the players whose league matches are exactly 163? | SELECT TeBe career FROM table WHERE League matches = 163 |
Translate the following into a SQL query | What is the number of league goals for players with 10 league matches and a TeBe career of 2003? | SELECT League goals FROM table WHERE League matches = 10 AND TeBe career = 2003 |
Translate the following into a SQL query | What is listed in eliminated when the finish is 15th voted out 9th jury Member Day 46? | SELECT Eliminated FROM table WHERE Finish = 15th Voted Out 9th Jury Member Day 46 |
Translate the following into a SQL query | What is listed in reward when the finish is listed at 13th voted out 6th jury Member Day 43? | SELECT Reward FROM table WHERE Finish = 13th Voted Out 6th Jury Member Day 43 |
Translate the following into a SQL query | What is the name of immunity when the finish is 3rd voted out day 9? | SELECT Immunity FROM table WHERE Finish = 3rd Voted Out Day 9 |
Translate the following into a SQL query | What is the vote number when immunity listed as David and reward is listed as none? | SELECT Vote FROM table WHERE Immunity = David AND Reward = None |
Translate the following into a SQL query | what is the united fc wehre pifa colaba is maratha united? | SELECT United FC FROM table WHERE PIFA Colaba FC u-17 = Maratha United |
Translate the following into a SQL query | what is the united fc where pifa colaba is sporting options? | SELECT United FC FROM table WHERE PIFA Colaba FC u-17 = Sporting Options |
Translate the following into a SQL query | what is the dadar xi b where pifa colaba is sporting options? | SELECT Dadar XI ‘B’ FROM table WHERE PIFA Colaba FC u-17 = Sporting Options |
Translate the following into a SQL query | what is the athens xi where dada xi b is strikers fc? | SELECT Athens XI FROM table WHERE Dadar XI ‘B’ = Strikers FC |
Translate the following into a SQL query | what is the dadar xi b where the good shepherd is sea liner fc? | SELECT Dadar XI ‘B’ FROM table WHERE Good Shepherd = Sea Liner FC |
Translate the following into a SQL query | What is the Record at School of Tom O'Brien's team? | SELECT Record at School FROM table WHERE Head Coach = Tom O'Brien |
Translate the following into a SQL query | How many values were used to express the years at school of the Maryland team? | SELECT COUNT Years at School FROM table WHERE Team = Maryland |
Translate the following into a SQL query | What is the record in the atlantic coast conference for the Miami team? | SELECT ACC Record FROM table WHERE Team = Miami |
Translate the following into a SQL query | How many values reflect the overall record of the team coached by Frank Beamer? | SELECT COUNT Overall Record FROM table WHERE Head Coach = Frank Beamer |
Translate the following into a SQL query | what type over school is Clemson? | SELECT School Type FROM table WHERE Institution = Clemson |
Translate the following into a SQL query | what year did north carolina institution join the acc? | SELECT MAX Joined ACC FROM table WHERE Institution = North Carolina |
Translate the following into a SQL query | how many acc football titles have been won by the institution nicknamed tar heels? | SELECT ACC Football Titles FROM table WHERE Nickname = Tar Heels |
Translate the following into a SQL query | what type of school is the institution nicknamed seminoles? | SELECT School Type FROM table WHERE Nickname = Seminoles |
Translate the following into a SQL query | when did the institution at chapel hill, North carolina join acc? | SELECT Joined ACC FROM table WHERE Location = Chapel Hill, North Carolina |
Translate the following into a SQL query | What were the supersonics record at game 2? | SELECT Record FROM table WHERE Game = 2 |
Translate the following into a SQL query | What is the most amount of games played this season? | SELECT MAX Game FROM table |
Translate the following into a SQL query | Who had highest assists in game against Utah? | SELECT High assists FROM table WHERE Team = Utah |
Translate the following into a SQL query | In the North Central region, what are the regional page #'s? | SELECT Regional Page # FROM table WHERE Region name = North Central |
Translate the following into a SQL query | What states have a regional page # of 1, 5-7, 9-11, 13-15? | SELECT State name FROM table WHERE Regional Page # = 1, 5-7, 9-11, 13-15 |
Translate the following into a SQL query | Which region has a regional page # of 1-3, 5-7, 9-11, 13-15? | SELECT Region name FROM table WHERE Regional Page # = 1-3, 5-7, 9-11, 13-15 |
Translate the following into a SQL query | In Ca/Nv, what are all of the regional page #s? | SELECT Regional Page # FROM table WHERE State name = CA/NV |
Translate the following into a SQL query | What is the maximum number of 2nd places for Tajikistan? | SELECT MAX Second Place FROM table WHERE Region Represented = Tajikistan |
Translate the following into a SQL query | What is the maximum number of 1st places for the country with exactly 1 third place? | SELECT MAX First Place FROM table WHERE Third Place = 1 |
Translate the following into a SQL query | How many values of total top 3 placements does Taiwan have? | SELECT COUNT Total Top 3 Placements FROM table WHERE Region Represented = Taiwan |
Translate the following into a SQL query | What is the name of the country when the ioc code is mas? | SELECT Country FROM table WHERE IOC Code = MAS |
Translate the following into a SQL query | What is the ioc code when the country is listed as Singapore? | SELECT IOC Code FROM table WHERE Country = Singapore |
Translate the following into a SQL query | What is listed in Network station when the country is Brunei? | SELECT COUNT Network Station FROM table WHERE Country = Brunei |
Translate the following into a SQL query | How many television station listing have a radio station as lao national radio? | SELECT COUNT Television Station FROM table WHERE Radio Station = Lao National Radio |
Translate the following into a SQL query | How many television station listings have a ioc code as mas? | SELECT COUNT Television Station FROM table WHERE IOC Code = MAS |
Translate the following into a SQL query | Who wrote "the diaper incident"? | SELECT Written by FROM table WHERE Title = "The Diaper Incident" |
Translate the following into a SQL query | Who directed "the diaper incident"? | SELECT Directed by FROM table WHERE Title = "The Diaper Incident" |
Translate the following into a SQL query | Who wrote episode 27 in the series that was directed by Wendey Stanzler? | SELECT Written by FROM table WHERE Directed by = Wendey Stanzler AND No. in series = 27 |
Translate the following into a SQL query | What is the name of episode 43 in the series? | SELECT Title FROM table WHERE No. in series = 43 |
Translate the following into a SQL query | What date did the episode that had 8.84 million u.s. viewers originally air? | SELECT Original air date FROM table WHERE U.S. viewers (million) = 8.84 |
Translate the following into a SQL query | How many games have high assists as earl watson (11) and location attendance as Keyarena 16,841? | SELECT COUNT Game FROM table WHERE High assists = Earl Watson (11) AND Location Attendance = KeyArena 16,841 |
Translate the following into a SQL query | What is the record listed when the high assists is earl watson (6)? | SELECT Record FROM table WHERE High assists = Earl Watson (6) |
Translate the following into a SQL query | Where is the location attendance when the date is January 9? | SELECT Location Attendance FROM table WHERE Date = January 9 |
Translate the following into a SQL query | What is listed in hight points when the high rebounds is listed as Nick Collison (10)? | SELECT High points FROM table WHERE High rebounds = Nick Collison (10) |
Translate the following into a SQL query | What is listed in game when the location attendance is listed as Keyarena 16,841? | SELECT MAX Game FROM table WHERE Location Attendance = KeyArena 16,841 |
Translate the following into a SQL query | What was the airdate of the episode of production code 214? | SELECT Original air date FROM table WHERE Production Code = 214 |
Translate the following into a SQL query | How many numbers in the season have an air date of June 3, 2012? | SELECT COUNT No in. season FROM table WHERE Original air date = June 3, 2012 |
Translate the following into a SQL query | What is the highest production code of the episodes having a US viewership of exactly 2.3? | SELECT MAX Production Code FROM table WHERE U.S. viewers (millions) = 2.3 |
Translate the following into a SQL query | How many millions of US viewers watched the episode titled "Happy Howl-o-ween"? | SELECT U.S. viewers (millions) FROM table WHERE Title = "Happy Howl-O-Ween" |
Translate the following into a SQL query | When the number of wickets is 29, what was the economy? | SELECT Economy FROM table WHERE Wickets = 29 |
Translate the following into a SQL query | How many wickets was there when the economy was 3.64? | SELECT Wickets FROM table WHERE Economy = 3.64 |
Translate the following into a SQL query | What is the average of all the wickets that were 27? | SELECT Average FROM table WHERE Wickets = 27 |
Translate the following into a SQL query | Which branding has the callsign of DXGH? | SELECT Branding FROM table WHERE Callsign = DXGH |
Translate the following into a SQL query | What type of station is within the 972khz frequency? | SELECT Station Type FROM table WHERE Frequency = 972kHz |
Translate the following into a SQL query | What types of stations are located in Cebu? | SELECT Station Type FROM table WHERE Location = Cebu |
Translate the following into a SQL query | Where are all the 1485khz frequency located? | SELECT Location FROM table WHERE Frequency = 1485kHz |
Translate the following into a SQL query | How many locations have the callsign DXGH? | SELECT COUNT Location FROM table WHERE Callsign = DXGH |
Translate the following into a SQL query | Where are the broadcasting companys with the callsign DWRH located? | SELECT Location FROM table WHERE Callsign = DWRH |
Translate the following into a SQL query | Where is the audition city when the venue is upi convention center? | SELECT Audition city FROM table WHERE Venue = UPI Convention Center |
Translate the following into a SQL query | How many times is there a golden tickets entry when the callback venue is rcti studio, jakarta? | SELECT COUNT Golden tickets FROM table WHERE Callback venue = RCTI Studio, Jakarta |
Translate the following into a SQL query | In what year was 1.35% the average vote per candidate? | SELECT Year FROM table WHERE Average % of vote per candidate = 1.35 |
Translate the following into a SQL query | When 3.29% was the average per candidate, what was the number of average votes per candidate? | SELECT MIN Average votes per candidate FROM table WHERE Average % of vote per candidate = 3.29 |
Translate the following into a SQL query | What was the percentage of total votes in 1997? | SELECT % of total vote FROM table WHERE Year = 1997 |
Translate the following into a SQL query | How many shows were launched on CBS (2002)? | SELECT COUNT Launched FROM table WHERE Original channel = CBS (2002) |
Translate the following into a SQL query | How many IRST figures for the show that premiered on Canale 5 (2006)? | SELECT COUNT IRST FROM table WHERE Original channel = Canale 5 (2006) |
Translate the following into a SQL query | What is the original channel of the show with 88 episodes? | SELECT Original channel FROM table WHERE No. of episodes = 88 |
Translate the following into a SQL query | What are the dates that Falling Angel aired? | SELECT Date FROM table WHERE Name = Falling Angel |
Translate the following into a SQL query | How many economy stats for the player with 2/19 BBI? | SELECT COUNT Economy FROM table WHERE BBI = 2/19 |
Translate the following into a SQL query | Who is the player with an average of 35.42? | SELECT Player FROM table WHERE Average = 35.42 |
Translate the following into a SQL query | What is the economy of the player with BBI of 3/33? | SELECT Economy FROM table WHERE BBI = 3/33 |
Translate the following into a SQL query | What is the average when the highest score is 151? | SELECT Average FROM table WHERE Highest Score = 151 |
Translate the following into a SQL query | Who is the player when the highest score is 84? | SELECT Player FROM table WHERE Highest Score = 84 |
Translate the following into a SQL query | How many runs are there when the highest score is 228*? | SELECT MIN Runs FROM table WHERE Highest Score = 228* |
Translate the following into a SQL query | What is the average when the 100s is listed as 7? | SELECT Average FROM table WHERE 100s = 7 |
Translate the following into a SQL query | What is the innings when the highest score is 72? | SELECT MAX Innings FROM table WHERE Highest Score = 72 |
Translate the following into a SQL query | What is the highest number listed for matches? | SELECT MAX Matches FROM table |
Translate the following into a SQL query | How many entries is under 50s column when the average is 39.60? | SELECT 50s FROM table WHERE Average = 39.60 |
Translate the following into a SQL query | How many runs are there when the 50s column is 3? | SELECT MIN Runs FROM table WHERE 50s = 3 |
Translate the following into a SQL query | Who is the player when the average is 69.66? | SELECT Player FROM table WHERE Average = 69.66 |
Translate the following into a SQL query | what is the minimumfor 5wi? | SELECT MIN 5wi FROM table |
Translate the following into a SQL query | how many 10wi and bbi is 6/101 | SELECT COUNT 10wi FROM table WHERE BBI = 6/101 |
Translate the following into a SQL query | how many innings had bbi 4/26? | SELECT Innings FROM table WHERE BBI = 4/26 |
Translate the following into a SQL query | how many 5wi with an average of 33.13? | SELECT COUNT 5wi FROM table WHERE Average = 33.13 |
Translate the following into a SQL query | how many innings have an average of 19.60? | SELECT Innings FROM table WHERE Average = 19.60 |
Translate the following into a SQL query | What is the average when the BBI is 3/27? | SELECT Average FROM table WHERE BBI = 3/27 |
Translate the following into a SQL query | Who is the player when the economy is 6.14? | SELECT Player FROM table WHERE Economy = 6.14 |
Translate the following into a SQL query | Who is the player when the economy is 5.29? | SELECT Player FROM table WHERE Economy = 5.29 |
Translate the following into a SQL query | What the number of matches when the BBI is 3/27? | SELECT MIN Matches FROM table WHERE BBI = 3/27 |
Translate the following into a SQL query | What is the BBI whent the economy is 5.68? | SELECT BBI FROM table WHERE Economy = 5.68 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.