instruction
stringclasses 1
value | input
stringlengths 12
244
| output
stringlengths 22
468
|
---|---|---|
Translate the following into a SQL query | What is the codename for the Core i3-32xxt? | SELECT Codename (main article) FROM table WHERE Brand name (list) = Core i3-32xxT |
Translate the following into a SQL query | What i/o buses are associated with the LGA 1155 socket, a code name of Sandy Bridge (desktop) and a brand name of Core i3-21xx? | SELECT I/O Bus FROM table WHERE Socket = LGA 1155 AND Codename (main article) = Sandy Bridge (Desktop) AND Brand name (list) = Core i3-21xx |
Translate the following into a SQL query | What is the sockets associated with a brand name of Core i3-3xx0m? | SELECT Socket FROM table WHERE Brand name (list) = Core i3-3xx0M |
Translate the following into a SQL query | Who was drafted by the calgary stampeders? | SELECT Player FROM table WHERE CFL Team = Calgary Stampeders |
Translate the following into a SQL query | Where was the player from se missouri state drafted? | SELECT COUNT Pick # FROM table WHERE School = SE Missouri State |
Translate the following into a SQL query | What position does the player from kent state play? | SELECT Position FROM table WHERE School = Kent State |
Translate the following into a SQL query | What school did the rb drafted attend? | SELECT School FROM table WHERE Position = RB |
Translate the following into a SQL query | What numbered pick attended western ontario and is an OL? | SELECT Pick # FROM table WHERE School = Western Ontario AND Position = OL |
Translate the following into a SQL query | How many players attended SE missouri state? | SELECT COUNT Position FROM table WHERE School = SE Missouri State |
Translate the following into a SQL query | Who was in the pole position for knockhill? | SELECT Pole Position FROM table WHERE Circuit = Knockhill |
Translate the following into a SQL query | How many dates was knockhill? | SELECT COUNT Date FROM table WHERE Circuit = Knockhill |
Translate the following into a SQL query | Name the l3 cache for core i7-2xxxqe, i7-26xxqm, i7-27xxqm | SELECT L3 Cache FROM table WHERE Brand name (list) = Core i7-2xxxQE, i7-26xxQM, i7-27xxQM |
Translate the following into a SQL query | Who had most laps led at Chicagoland speedway? | SELECT Most Laps Led FROM table WHERE Track = Chicagoland Speedway |
Translate the following into a SQL query | In what race did Buddy Rice hav fastest lap? | SELECT Race Name FROM table WHERE Fastest lap = Buddy Rice |
Translate the following into a SQL query | On what tra k was the march 19 race held? | SELECT Track FROM table WHERE Date = March 19 |
Translate the following into a SQL query | On what track is the Argent mortgage Indy 300 held? | SELECT Track FROM table WHERE Race Name = Argent Mortgage Indy 300 |
Translate the following into a SQL query | who held the fastes lap in Phoenix, Arizona? | SELECT Fastest lap FROM table WHERE Location = Phoenix, Arizona |
Translate the following into a SQL query | How many games were played with 25 legs won with 35 100+? | SELECT Played FROM table WHERE Legs Won = 25 AND 100+ = 35 |
Translate the following into a SQL query | How many sets were lost with a 3-dart average of 87.55? | SELECT MAX Sets Lost FROM table WHERE 3-dart Average = 87.55 |
Translate the following into a SQL query | How man players checked out at 84? | SELECT COUNT Player FROM table WHERE High Checkout = 84 |
Translate the following into a SQL query | How man 3-dart averages did gary anderson have? | SELECT COUNT 3-dart Average FROM table WHERE Player = Gary Anderson |
Translate the following into a SQL query | List all results from the 3-3 scoring game. | SELECT Result FROM table WHERE Record = 3-3 |
Translate the following into a SQL query | List all opponents from the 4-4 scoring game. | SELECT Opponent FROM table WHERE Record = 4-4 |
Translate the following into a SQL query | List the record from the game where Wildcats had 48 points. | SELECT Record FROM table WHERE Wildcats points = 48 |
Translate the following into a SQL query | How many points did the Wildcats get when Baylor was an opponent? | SELECT Wildcats points FROM table WHERE Opponent = Baylor |
Translate the following into a SQL query | Who was the opponent on Oct. 4? | SELECT Opponent FROM table WHERE Date = Oct. 4 |
Translate the following into a SQL query | What was the minimum number for opponents? | SELECT MIN Opponents FROM table |
Translate the following into a SQL query | What is the minimum number of opponents' points for the game at Michigan State? | SELECT MIN Opponents FROM table WHERE Opponent = at Michigan State |
Translate the following into a SQL query | Which opponent led to a 5-2 record? | SELECT Opponent FROM table WHERE Record = 5-2 |
Translate the following into a SQL query | How many opponents' points numbers are associated with the game at Ole Miss? | SELECT COUNT Opponents FROM table WHERE Opponent = at Ole Miss |
Translate the following into a SQL query | Name the total number of period for yvon le roux | SELECT COUNT Period FROM table WHERE Name = Yvon Le Roux |
Translate the following into a SQL query | Name the period for michel llodra | SELECT Period FROM table WHERE Name = Michel Llodra |
Translate the following into a SQL query | Name the number of position for democratic republic of the congo | SELECT COUNT Position FROM table WHERE Nationality² = Democratic Republic of the Congo |
Translate the following into a SQL query | How many names correspond to the value 101 for appearances? | SELECT COUNT Name FROM table WHERE Appearances¹ = 101 |
Translate the following into a SQL query | What positions correspond to the name Thierry Morin? | SELECT Position FROM table WHERE Name = Thierry Morin |
Translate the following into a SQL query | What time period had appearances of 219? | SELECT Period FROM table WHERE Appearances¹ = 219 |
Translate the following into a SQL query | How many periods had 15 goals? | SELECT COUNT Period FROM table WHERE Goals¹ = 15 |
Translate the following into a SQL query | at least how many times was Pierre Vermeulen at a game? | SELECT MIN Appearances¹ FROM table WHERE Name = Pierre Vermeulen |
Translate the following into a SQL query | What country is Richard Vanquelef from? | SELECT Nationality² FROM table WHERE Name = Richard Vanquelef |
Translate the following into a SQL query | What country is Pierre Vermeulen from? | SELECT Nationality² FROM table WHERE Name = Pierre Vermeulen |
Translate the following into a SQL query | Name the number of appearances for yugoslavia | SELECT COUNT Appearances¹ FROM table WHERE Nationality² = Yugoslavia |
Translate the following into a SQL query | Name the nationality for defender 201 | SELECT Nationality² FROM table WHERE Position = Defender AND Appearances¹ = 201 |
Translate the following into a SQL query | Name the goals for daniel sanchez | SELECT Goals¹ FROM table WHERE Name = Daniel Sanchez |
Translate the following into a SQL query | Name the most goals for algeria | SELECT MIN Goals¹ FROM table WHERE Nationality² = Algeria |
Translate the following into a SQL query | What was the lowest score. | SELECT MIN Goals¹ FROM table |
Translate the following into a SQL query | List the minimum impressions for sammy traoré | SELECT MIN Appearances¹ FROM table WHERE Name = Sammy Traoré |
Translate the following into a SQL query | During what years did nabatingue toko play. | SELECT Period FROM table WHERE Name = Nabatingue Toko |
Translate the following into a SQL query | Name the number of goals for mauricio pochettino | SELECT COUNT Goals¹ FROM table WHERE Name = Mauricio Pochettino |
Translate the following into a SQL query | Name the period for michel prost | SELECT Period FROM table WHERE Name = Michel Prost |
Translate the following into a SQL query | Name the goals for mauricio pochettino | SELECT Goals¹ FROM table WHERE Name = Mauricio Pochettino |
Translate the following into a SQL query | Name the period for appearances being 380 | SELECT Period FROM table WHERE Appearances¹ = 380 |
Translate the following into a SQL query | Name the appearances for bernard allou | SELECT Appearances¹ FROM table WHERE Name = Bernard Allou |
Translate the following into a SQL query | Name the most appearances for bernard allou | SELECT MAX Appearances¹ FROM table WHERE Name = Bernard Allou |
Translate the following into a SQL query | What is the highest number of goals scored | SELECT MAX Goals¹ FROM table |
Translate the following into a SQL query | What is the lowest number of appearances a player had | SELECT MIN Appearances¹ FROM table |
Translate the following into a SQL query | What is the nationality of Louis floch | SELECT Nationality² FROM table WHERE Name = Louis Floch |
Translate the following into a SQL query | Which player had 252 appearances | SELECT Name FROM table WHERE Appearances¹ = 252 |
Translate the following into a SQL query | What is the nationality of the player who scored 13 goals | SELECT Nationality² FROM table WHERE Goals¹ = 13 |
Translate the following into a SQL query | how many time is the final record is 9–16–5? | SELECT COUNT Season FROM table WHERE Final Record = 9–16–5 |
Translate the following into a SQL query | What station was sent on flight up and was launched on 23 July 1980 18:33:03? | SELECT Flight up FROM table WHERE Launch date = 23 July 1980 18:33:03 |
Translate the following into a SQL query | Who were the crews on the flight up of Soyuz T-3? | SELECT Crew FROM table WHERE Flight up = Soyuz T-3 |
Translate the following into a SQL query | How many days were the station of Soyuz 35 in flight down were in orbit? | SELECT Duration (days) FROM table WHERE Flight down = Soyuz 35 |
Translate the following into a SQL query | Name the number of gn divisions for mannar | SELECT COUNT GN Divisions FROM table WHERE DS Division = Mannar |
Translate the following into a SQL query | Name the sinhalese for manthai west | SELECT MAX Sinhalese FROM table WHERE DS Division = Manthai West |
Translate the following into a SQL query | Name the least indian tamil for population density being 240 | SELECT MIN Indian Tamil FROM table WHERE Population Density (/km 2 ) = 240 |
Translate the following into a SQL query | Name the popultion density being manthai west | SELECT Population Density (/km 2 ) FROM table WHERE DS Division = Manthai West |
Translate the following into a SQL query | Name the total number of sinhalese for indian tamil being 177 | SELECT COUNT Sinhalese FROM table WHERE Indian Tamil = 177 |
Translate the following into a SQL query | Name the least area | SELECT MIN Area (km 2 ) FROM table |
Translate the following into a SQL query | When westcott is in division one how many leagues are in division 5? | SELECT COUNT Division Five FROM table WHERE Division One = Westcott |
Translate the following into a SQL query | When godstone is in division five who is in division four? | SELECT Division Four FROM table WHERE Division Five = Godstone |
Translate the following into a SQL query | When the wallington new foresters are in division four what is the season? | SELECT Season FROM table WHERE Division Four = Wallington New Foresters |
Translate the following into a SQL query | When racing epsom is in division two how many seasons are there? | SELECT COUNT Season FROM table WHERE Division Two = Racing Epsom |
Translate the following into a SQL query | When westcott 1935 is in division two how many leagues are in division three? | SELECT COUNT Division Three FROM table WHERE Division Two = Westcott 1935 |
Translate the following into a SQL query | When real holmesdale reserves is division four who is in division one? | SELECT Division One FROM table WHERE Division Four = Real Holmesdale Reserves |
Translate the following into a SQL query | When salyut 7 – ve-4 – eva 1 is the spacecraft, what is the duration? | SELECT Duration FROM table WHERE Spacecraft = Salyut 7 – VE-4 – EVA 1 |
Translate the following into a SQL query | When first woman eva is the comment what is the end -utc? | SELECT End – UTC FROM table WHERE Comments = First woman EVA |
Translate the following into a SQL query | What series did the racer earn 68 points in? | SELECT Series FROM table WHERE Points = 68 |
Translate the following into a SQL query | Name the duration for georgi grechko | SELECT Duration (days) FROM table WHERE Crew = Georgi Grechko |
Translate the following into a SQL query | Name the flight up for 10 december 1982 19:02:36 utc | SELECT Flight up FROM table WHERE Landing date = 10 December 1982 19:02:36 UTC |
Translate the following into a SQL query | Name the launch date for vladimir lyakhov , aleksandr pavlovich aleksandrov | SELECT Launch date FROM table WHERE Crew = Vladimir Lyakhov , Aleksandr Pavlovich Aleksandrov |
Translate the following into a SQL query | Name the flight down for vladimir vasyutin , alexander volkov | SELECT Flight down FROM table WHERE Crew = Vladimir Vasyutin , Alexander Volkov |
Translate the following into a SQL query | Name the duration for vladimir vasyutin , alexander volkov | SELECT COUNT Duration (days) FROM table WHERE Crew = Vladimir Vasyutin , Alexander Volkov |
Translate the following into a SQL query | What team was he on the year he had 38 points? | SELECT Team FROM table WHERE Points = 38 |
Translate the following into a SQL query | What was the least amount of wins when he had 10 poles? | SELECT MIN Wins FROM table WHERE Poles = 10 |
Translate the following into a SQL query | Name the team for 22 points | SELECT Team FROM table WHERE Points = 22 |
Translate the following into a SQL query | Name the f/laps for gp2 series | SELECT F/Laps FROM table WHERE Series = GP2 Series |
Translate the following into a SQL query | Name the most wins | SELECT MIN Wins FROM table |
Translate the following into a SQL query | Name the least races for carlin | SELECT MIN Races FROM table WHERE Team = Carlin |
Translate the following into a SQL query | Name the position for 0 podiums and carlin team | SELECT Position FROM table WHERE Podiums = 0 AND Team = Carlin |
Translate the following into a SQL query | Name the name in syriac for 500 believers | SELECT Name in Syriac FROM table WHERE Number of Believers = 500 |
Translate the following into a SQL query | Name the least number of believers | SELECT MIN Number of Believers FROM table |
Translate the following into a SQL query | Name the most number of believers for ܓܘܝܠܢ | SELECT MAX Number of Believers FROM table WHERE Name in Syriac = ܓܘܝܠܢ |
Translate the following into a SQL query | Name the number of believers for khosrowa | SELECT Number of Believers FROM table WHERE Name of Village = Khosrowa |
Translate the following into a SQL query | Name the number of believers for patavur | SELECT COUNT Number of Believers FROM table WHERE Name of Village = Patavur |
Translate the following into a SQL query | The local title "Live to Dance" was aired in which channel? | SELECT Channel FROM table WHERE Local title = Live to Dance |
Translate the following into a SQL query | Which country did Johanna Klum presented the show? | SELECT Country FROM table WHERE Presenter(s) = Johanna Klum |
Translate the following into a SQL query | Name the most released for the in crowd | SELECT MAX Released FROM table WHERE Song = The In Crowd |
Translate the following into a SQL query | Name the most released for apologize | SELECT MAX Released FROM table WHERE Song = Apologize |
Translate the following into a SQL query | Name the most released for right here, right now | SELECT MAX Released FROM table WHERE Song = Right Here, Right Now |
Translate the following into a SQL query | Name the us exclusive for miley cyrus | SELECT US exclusive FROM table WHERE Artist/Band = Miley Cyrus |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.