instruction
stringclasses 1
value | input
stringlengths 12
244
| output
stringlengths 22
468
|
---|---|---|
Translate the following into a SQL query | San Juan Jabloteh calls which stadium home? | SELECT Stadium FROM table WHERE Team = San Juan Jabloteh |
Translate the following into a SQL query | What was the innings when caught was 20? | SELECT Innings FROM table WHERE Caught = 20 |
Translate the following into a SQL query | What ist he matches where the player is ms dhoni? | SELECT Matches FROM table WHERE Player = MS Dhoni |
Translate the following into a SQL query | What is stumped when inning is 143? | SELECT Stumped FROM table WHERE Innings = 143 |
Translate the following into a SQL query | How many matches were 44? | SELECT COUNT Dismissals FROM table WHERE Matches = 44 |
Translate the following into a SQL query | What is stumped when matches is 14? | SELECT MIN Stumped FROM table WHERE Matches = 14 |
Translate the following into a SQL query | Name the crownded for 17 september 1025 | SELECT Crowned FROM table WHERE Co-kingship ceased = 17 September 1025 |
Translate the following into a SQL query | Name the total number of monarchs for 23 may 1059 crowned | SELECT COUNT Monarch FROM table WHERE Crowned = 23 May 1059 |
Translate the following into a SQL query | Name the reason for 20 july 1031 | SELECT Reason FROM table WHERE Co-kingship ceased = 20 July 1031 |
Translate the following into a SQL query | Name the monarch for 13 october 1131 | SELECT Monarch FROM table WHERE Co-kingship ceased = 13 October 1131 |
Translate the following into a SQL query | What was the playoff result where the league did not qualify in the Open Cup in 1998? | SELECT Playoffs FROM table WHERE Open Cup = Did not qualify AND Year = 1998 |
Translate the following into a SQL query | What was the earliest year where USL PDL played in 3rd, Southeast season? | SELECT MIN Year FROM table WHERE Regular Season = 3rd, Southeast AND League = USL PDL |
Translate the following into a SQL query | What was the Open Cup results for the year 2003? | SELECT Open Cup FROM table WHERE Year = 2003 |
Translate the following into a SQL query | What is the highest total for evm votes | SELECT MAX Total EVM Votes FROM table |
Translate the following into a SQL query | What is DMK's total number of votes? | SELECT Total Votes FROM table WHERE Party Name = DMK |
Translate the following into a SQL query | In what episode did heat 1 take place? | SELECT Episode FROM table WHERE Contest = Heat 1 |
Translate the following into a SQL query | What events took place in episode 12? | SELECT Events FROM table WHERE Episode = 12 |
Translate the following into a SQL query | Which female challengers featured in episode 28? | SELECT Challengers (Female) FROM table WHERE Episode = 28 |
Translate the following into a SQL query | How many players came from Los Angeles? | SELECT COUNT Name FROM table WHERE Hometown = Los Angeles |
Translate the following into a SQL query | What is the height when the player is from Los Angeles? | SELECT Height FROM table WHERE Hometown = Los Angeles |
Translate the following into a SQL query | What is Kammeon Holsey's height? | SELECT Height FROM table WHERE Name = Kammeon Holsey |
Translate the following into a SQL query | What is the high school of the player number 5? | SELECT High School FROM table WHERE Number = 5 |
Translate the following into a SQL query | What is the 12::37.35 when hengelo , netherlands is hengelo, netherlands? | SELECT 12:37.35 FROM table WHERE Hengelo , Netherlands = Hengelo, Netherlands |
Translate the following into a SQL query | what is hengelo , netherlands when 31 may 2004 is 8 june 2006? | SELECT Hengelo , Netherlands FROM table WHERE 31 May 2004 = 8 June 2006 |
Translate the following into a SQL query | what is 31 may 2004 when 12:37.35 is 13:19.43? | SELECT 31 May 2004 FROM table WHERE 12:37.35 = 13:19.43 |
Translate the following into a SQL query | How many times is kenenisa bekele ( eth ) is marílson gomes dos santos ( bra )? | SELECT COUNT World record FROM table WHERE Kenenisa Bekele ( ETH ) = Marílson Gomes dos Santos ( BRA ) |
Translate the following into a SQL query | What is every entry for against with opponent Andreas Vinciguerra? | SELECT Against FROM table WHERE Opponent = Andreas Vinciguerra |
Translate the following into a SQL query | What is every entry for against with opponent Andreas Vinciguerra? | SELECT Against FROM table WHERE Opponent = Andreas Vinciguerra |
Translate the following into a SQL query | What is every surface against Sweden? | SELECT Surface FROM table WHERE Against = Sweden |
Translate the following into a SQL query | What is every entry in the win/lose against Sweden? | SELECT Win/Lose FROM table WHERE Against = Sweden |
Translate the following into a SQL query | How many production codes have an original airdate of November 16, 1990? | SELECT COUNT Production code FROM table WHERE Original air date = November 16, 1990 |
Translate the following into a SQL query | What series number had an original airdate of March 1, 1991? | SELECT MIN No. in series FROM table WHERE Original air date = March 1, 1991 |
Translate the following into a SQL query | Who directed "Torn Between Two Lovers"? | SELECT Directed by FROM table WHERE Title = "Torn Between Two Lovers" |
Translate the following into a SQL query | How many production codes were in series 39? | SELECT COUNT Production code FROM table WHERE No. in series = 39 |
Translate the following into a SQL query | Who wrote season 23? | SELECT Written by FROM table WHERE No. in season = 23 |
Translate the following into a SQL query | What is the production code for episode number 86 in the series? | SELECT MIN Production code FROM table WHERE No. in series = 86 |
Translate the following into a SQL query | What episode number in the series is "dance to the music"? | SELECT MIN No. in series FROM table WHERE Title = "Dance to the Music" |
Translate the following into a SQL query | What is the production code for the episode that originally aired on January 8, 1993? | SELECT MAX Production code FROM table WHERE Original air date = January 8, 1993 |
Translate the following into a SQL query | Who wrote the episode that originally aired on January 15, 1993? | SELECT Written by FROM table WHERE Original air date = January 15, 1993 |
Translate the following into a SQL query | What is the name of episode number 77 in the series? | SELECT Title FROM table WHERE No. in series = 77 |
Translate the following into a SQL query | When 17 is the number in series who is the director? | SELECT Directed by FROM table WHERE No. in series = 17 |
Translate the following into a SQL query | When 21 is the number in series what is the air date? | SELECT Original air date FROM table WHERE No. in series = 21 |
Translate the following into a SQL query | When 446004 is the production code who are the writers? | SELECT Written by FROM table WHERE Production code = 446004 |
Translate the following into a SQL query | When "body damage" is the title how many air dates are there? | SELECT COUNT Original air date FROM table WHERE Title = "Body Damage" |
Translate the following into a SQL query | Who directed "what do you know?"? | SELECT Directed by FROM table WHERE Title = "What Do You Know?" |
Translate the following into a SQL query | What was the name of the epiode written by Gary M. Goodrich? | SELECT Title FROM table WHERE Written by = Gary M. Goodrich |
Translate the following into a SQL query | Who directed episode number 179 in the series? | SELECT Directed by FROM table WHERE No. in series = 179 |
Translate the following into a SQL query | How many people directed "odd man in"? | SELECT COUNT Directed by FROM table WHERE Title = "Odd Man In" |
Translate the following into a SQL query | What's the voltage of the model with part number TT80503300? | SELECT Voltage FROM table WHERE Part number(s) = TT80503300 |
Translate the following into a SQL query | What's the frequency of the model with part number TT80503300? | SELECT Frequency FROM table WHERE Part number(s) = TT80503300 |
Translate the following into a SQL query | What's the part number of the model with TDP of 2.9 (max.4.1~5.4) w? | SELECT Part number(s) FROM table WHERE TDP = 2.9 (Max.4.1~5.4) W |
Translate the following into a SQL query | What's the l1 cache of the model with sspec number sl2z3, sl28q (mya0)? | SELECT L1 Cache FROM table WHERE sSpec number = SL2Z3, SL28Q (myA0) |
Translate the following into a SQL query | How many region 4 dates are associated with a region 2 date of July 9, 2007? | SELECT COUNT Region 4 (Australia) FROM table WHERE Region 2 (UK) = July 9, 2007 |
Translate the following into a SQL query | What is the region 1 (Canada) date associated with a region 1 (US) date of January 16, 2007? | SELECT Region 1 (CAN) FROM table WHERE Region 1 (US) = January 16, 2007 |
Translate the following into a SQL query | What is the region 4 (Aus) date associated with a region 1 (US) date of January 16, 2007? | SELECT Region 4 (Australia) FROM table WHERE Region 1 (US) = January 16, 2007 |
Translate the following into a SQL query | What is the region 2 (UK) date associated with a region 4 (Aus) date of July 31, 2008? | SELECT Region 2 (UK) FROM table WHERE Region 4 (Australia) = July 31, 2008 |
Translate the following into a SQL query | What is the region 1 (Canada) date associated with a region 2 (UK) date of May 18, 2009? | SELECT Region 1 (CAN) FROM table WHERE Region 2 (UK) = May 18, 2009 |
Translate the following into a SQL query | How many seasons included an episode titled "all the wrong moves"? | SELECT COUNT No. in season FROM table WHERE Title = "All the Wrong Moves" |
Translate the following into a SQL query | Who was the director for the episode airing on September 24, 1993? | SELECT Directed by FROM table WHERE Original air date = September 24, 1993 |
Translate the following into a SQL query | In which series was season 18? | SELECT COUNT No. in series FROM table WHERE No. in season = 18 |
Translate the following into a SQL query | Who wrote the episode "car wars"? | SELECT Written by FROM table WHERE Title = "Car Wars" |
Translate the following into a SQL query | What is the title of season 2? | SELECT Title FROM table WHERE No. in season = 2 |
Translate the following into a SQL query | What is the brand name associated with a model name e4xxx? | SELECT Brand name FROM table WHERE Model (list) = E4xxx |
Translate the following into a SQL query | What is the brand name associated with the model named e4xxx? | SELECT Brand name FROM table WHERE Model (list) = E4xxx |
Translate the following into a SQL query | What is the brand name associated with the model 4x0? | SELECT Brand name FROM table WHERE Model (list) = 4x0 |
Translate the following into a SQL query | What is the number of cores associated with model name e2xxx? | SELECT Cores FROM table WHERE Model (list) = E2xxx |
Translate the following into a SQL query | What is the wattage/TDP associated with model name 4x0? | SELECT TDP FROM table WHERE Model (list) = 4x0 |
Translate the following into a SQL query | When the socket is bga956 and processor is penryn-3m, what is the tdp? | SELECT TDP FROM table WHERE Socket = BGA956 AND Processor = Penryn-3M |
Translate the following into a SQL query | Whats the processor for p9xxx? | SELECT Processor FROM table WHERE Model (list) = P9xxx |
Translate the following into a SQL query | What's the l2 cache of the model with TDP of 5.5-10 w? | SELECT L2 Cache FROM table WHERE TDP = 5.5-10 W |
Translate the following into a SQL query | What's the model of the processor with BGA479 socket and a 5.5 w TDP? | SELECT Model (list) FROM table WHERE Socket = BGA479 AND TDP = 5.5 W |
Translate the following into a SQL query | What's the model of the processor with a 5.5 w TDP? | SELECT Model (list) FROM table WHERE TDP = 5.5 W |
Translate the following into a SQL query | What's the smallest number for cores of any of the processor models? | SELECT MIN Cores FROM table |
Translate the following into a SQL query | what is the model where the processor is yorkfield and the brand name is xeon? | SELECT Model (list) FROM table WHERE Processor = Yorkfield AND Brand Name = Xeon |
Translate the following into a SQL query | what is the socket that has a brand name of core 2 extreme? | SELECT Socket FROM table WHERE Brand Name = Core 2 Extreme |
Translate the following into a SQL query | what is the name of the processor for model x33x0? | SELECT Processor FROM table WHERE Model (list) = X33x0 |
Translate the following into a SQL query | What is the earliest number in before? | SELECT MIN Before FROM table |
Translate the following into a SQL query | What is the latest after when the player is Steve Stricker? | SELECT MAX After FROM table WHERE Player = Steve Stricker |
Translate the following into a SQL query | List all before numbers when Geoff Ogilvy was playing. | SELECT Before FROM table WHERE Player = Geoff Ogilvy |
Translate the following into a SQL query | Name the least events for number 7 | SELECT MIN Events FROM table WHERE # = 7 |
Translate the following into a SQL query | Name the number of events for 3031 | SELECT COUNT Events FROM table WHERE Points = 3031 |
Translate the following into a SQL query | Name the player for 22 events | SELECT Player FROM table WHERE Events = 22 |
Translate the following into a SQL query | Name the least points for number 6 | SELECT MIN Points FROM table WHERE # = 6 |
Translate the following into a SQL query | Name the most number for steve stricker | SELECT MAX # FROM table WHERE Player = Steve Stricker |
Translate the following into a SQL query | Name the total number of points for 800 reset | SELECT COUNT Points FROM table WHERE Reset points = 800 |
Translate the following into a SQL query | What percentage did kennedy win while coakly won 37.9% | SELECT Kennedy % FROM table WHERE Coakley % = 37.9% |
Translate the following into a SQL query | How many votes did kennedy win when coakley won 66.2% | SELECT MIN Kennedy votes FROM table WHERE Coakley % = 66.2% |
Translate the following into a SQL query | What was the percentage of votes for coakley when kennedy won 1.6% | SELECT Coakley % FROM table WHERE Kennedy % = 1.6% |
Translate the following into a SQL query | How many votes did kennedy win when coaklely won 2139 votes? | SELECT COUNT Kennedy votes FROM table WHERE Coakley votes = 2139 |
Translate the following into a SQL query | How many locations did the team play at on week 7? | SELECT COUNT Location FROM table WHERE Week = 7 |
Translate the following into a SQL query | What was the result of the games VS the Lions? | SELECT Final Score FROM table WHERE Opponent = Lions |
Translate the following into a SQL query | Name the number of dates for alouettes | SELECT COUNT Date FROM table WHERE Opponent = Alouettes |
Translate the following into a SQL query | Name the least attendance for l 36–1 | SELECT MIN Attendance FROM table WHERE Final Score = L 36–1 |
Translate the following into a SQL query | Name the final score for exhibition stadium for september 10 | SELECT Final Score FROM table WHERE Location = Exhibition Stadium AND Date = September 10 |
Translate the following into a SQL query | Name the number of record for week 11 | SELECT COUNT Record FROM table WHERE Week = 11 |
Translate the following into a SQL query | Name the opponent for week 12 | SELECT Opponent FROM table WHERE Week = 12 |
Translate the following into a SQL query | Name the total number of opponent for october 3 | SELECT COUNT Opponent FROM table WHERE Date = October 3 |
Translate the following into a SQL query | Name the final score for week 5 | SELECT Final Score FROM table WHERE Week = 5 |
Translate the following into a SQL query | Who directed episode 28 in the series? | SELECT Directed by FROM table WHERE No. in series = 28 |
Translate the following into a SQL query | Who directed "go your own way"? | SELECT Directed by FROM table WHERE Title = "Go Your Own Way" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.