instruction
stringclasses 1
value | input
stringlengths 12
244
| output
stringlengths 22
468
|
---|---|---|
Translate the following into a SQL query | Who had a high rebound where the associated record is 11-13? | SELECT High rebounds FROM table WHERE Record = 11-13 |
Translate the following into a SQL query | On July 8, what was the score? | SELECT Score FROM table WHERE Date = July 8 |
Translate the following into a SQL query | Who was the oppenent what the score was L 68-60? | SELECT Opponent FROM table WHERE Score = L 68-60 |
Translate the following into a SQL query | what is the winning % whre the last 5 is 3-2 and the streak is l1? | SELECT Winning % FROM table WHERE Last 5 = 3-2 AND Streak = L1 |
Translate the following into a SQL query | If high assists are under Canty (6) how much would the record be? | SELECT Record FROM table WHERE High assists = Canty (6) |
Translate the following into a SQL query | If the score is 62-70, what are the high points? | SELECT High points FROM table WHERE Score = 62-70 |
Translate the following into a SQL query | On which date was the location/attendance UIC Pavilion 3,829 respectively? | SELECT Date FROM table WHERE Location/Attendance = UIC Pavilion 3,829 |
Translate the following into a SQL query | On which date is high assists Dupree (6)? | SELECT Date FROM table WHERE High assists = Dupree (6) |
Translate the following into a SQL query | What was the local investment (in $) in the projects of the department with $912,185 BID/PRONAR investment? | SELECT Local Investment (US$) FROM table WHERE BID/PRONAR Investment (US$) = 912,185 |
Translate the following into a SQL query | How many farmers were included by the department with 32 projects? | SELECT MAX Farmers FROM table WHERE Projects = 32 |
Translate the following into a SQL query | What department irrigated 2170 Ha? | SELECT Department FROM table WHERE Irrigated Ha = 2170 |
Translate the following into a SQL query | What was the BID/PRONAR investment (in $) in the department that included 1326 farmers in its projects? | SELECT BID/PRONAR Investment (US$) FROM table WHERE Farmers = 1326 |
Translate the following into a SQL query | What was the department that got $626,798 in local investments? | SELECT Department FROM table WHERE Local Investment (US$) = 626,798 |
Translate the following into a SQL query | What number was the game resulting in a 5-11 record? | SELECT MIN Game FROM table WHERE Record = 5-11 |
Translate the following into a SQL query | How many high assists are listed for the game with a score of 68-60? | SELECT COUNT High assists FROM table WHERE Score = 68-60 |
Translate the following into a SQL query | In the game resulting in a 5-11 record, who scored the high rebounds? | SELECT High rebounds FROM table WHERE Record = 5-11 |
Translate the following into a SQL query | Who was the opponent of the game with final score won 4-1? | SELECT Opponent FROM table WHERE Result = Won 4-1 |
Translate the following into a SQL query | What was the attendance at the game where Neil Liddiard was Man of the Match? | SELECT MIN Attendance FROM table WHERE Man of the Match = Neil Liddiard |
Translate the following into a SQL query | What was the venue of the game that was lost 3-4? | SELECT Venue FROM table WHERE Result = Lost 3-4 |
Translate the following into a SQL query | What is the venue of the game with Man of the Match Vaclav Zavoral? | SELECT Venue FROM table WHERE Man of the Match = Vaclav Zavoral |
Translate the following into a SQL query | How many attendance figures are given for the game where the final score was lost 5-3? | SELECT COUNT Attendance FROM table WHERE Result = Lost 5-3 |
Translate the following into a SQL query | Name the opponent for 4th | SELECT Opponent FROM table WHERE Date = 4th |
Translate the following into a SQL query | Name the venue for 19th date | SELECT Venue FROM table WHERE Date = 19th |
Translate the following into a SQL query | Name the result for lukas smital and home | SELECT Result FROM table WHERE Man of the Match = Lukas Smital AND Venue = Home |
Translate the following into a SQL query | Name the man of the match for 24th | SELECT Man of the Match FROM table WHERE Date = 24th |
Translate the following into a SQL query | Name the man of the maatch for sheffield scimitars | SELECT Man of the Match FROM table WHERE Opponent = Sheffield Scimitars |
Translate the following into a SQL query | On the 19th, where was the venue? | SELECT Venue FROM table WHERE Date = 19th |
Translate the following into a SQL query | What was the total attendance during the home game against the Swindon Wildcats? | SELECT Attendance FROM table WHERE Opponent = Swindon Wildcats AND Venue = Home |
Translate the following into a SQL query | On what day was Stuart Potts the Man of the Match? | SELECT Date FROM table WHERE Man of the Match = Stuart Potts |
Translate the following into a SQL query | At what venue did Alex Mettam/Mark Williams be named Man of the Match? | SELECT Venue FROM table WHERE Man of the Match = Alex Mettam/Mark Williams |
Translate the following into a SQL query | How many dates did David Savage get man of the match? | SELECT COUNT Date FROM table WHERE Man of the Match = David Savage |
Translate the following into a SQL query | When the attendance was 1568, who was man of the match? | SELECT Man of the Match FROM table WHERE Attendance = 1568 |
Translate the following into a SQL query | Who was the man of the match when they lost 2-4? | SELECT Man of the Match FROM table WHERE Result = Lost 2-4 |
Translate the following into a SQL query | what was the competitoin where the opponent is sheffield scimitars? | SELECT Competition FROM table WHERE Opponent = Sheffield Scimitars |
Translate the following into a SQL query | where was the venue where the attendance was 702? | SELECT Venue FROM table WHERE Attendance = 702 |
Translate the following into a SQL query | what was the venue where the date was the 22nd? | SELECT Venue FROM table WHERE Date = 22nd |
Translate the following into a SQL query | who was the opponent where the date was the 21st? | SELECT Opponent FROM table WHERE Date = 21st |
Translate the following into a SQL query | What is the score for Milwaukee? | SELECT Score FROM table WHERE Team = Milwaukee |
Translate the following into a SQL query | What was the record against Washington? | SELECT COUNT Record FROM table WHERE Team = Washington |
Translate the following into a SQL query | If the census ranking is 231 of 5,008, what was the population? | SELECT Population FROM table WHERE Census Ranking = 231 of 5,008 |
Translate the following into a SQL query | If the area is 59.73, what is the official name? | SELECT Official Name FROM table WHERE Area km 2 = 59.73 |
Translate the following into a SQL query | If the census ranking is 693 of 5,008, what is the status? | SELECT Status FROM table WHERE Census Ranking = 693 of 5,008 |
Translate the following into a SQL query | With the official name Quispamsis, what is the census ranking? | SELECT Census Ranking FROM table WHERE Official Name = Quispamsis |
Translate the following into a SQL query | What was the population for census ranking 782 of 5,008? | SELECT Population FROM table WHERE Census Ranking = 782 of 5,008 |
Translate the following into a SQL query | If the area is 34.73, what is the census ranking? | SELECT Census Ranking FROM table WHERE Area km 2 = 34.73 |
Translate the following into a SQL query | What are the census ranking(s) for a population of 284? | SELECT Census Ranking FROM table WHERE Population = 284 |
Translate the following into a SQL query | What are the census ranking(s) that have an area of 369.25 km2? | SELECT Census Ranking FROM table WHERE Area km 2 = 369.25 |
Translate the following into a SQL query | What is the population that has an area of 715.58? | SELECT Population FROM table WHERE Area km 2 = 715.58 |
Translate the following into a SQL query | What are that status(es) of saint-jacques? | SELECT Status FROM table WHERE Official Name = Saint-Jacques |
Translate the following into a SQL query | What are the area(s) (km2) for saint-joseph? | SELECT Area km 2 FROM table WHERE Official Name = Saint-Joseph |
Translate the following into a SQL query | What rank is the parish with 482.81 km^2? | SELECT Census Ranking FROM table WHERE Area km 2 = 482.81 |
Translate the following into a SQL query | What status doe the area with a census ranking of 2,290 of 5,008 have? | SELECT Status FROM table WHERE Census Ranking = 2,290 of 5,008 |
Translate the following into a SQL query | How many statuses are listed for the parish officially named Gagetown? | SELECT COUNT Status FROM table WHERE Official Name = Gagetown |
Translate the following into a SQL query | What is Petersville's census ranking? | SELECT Census Ranking FROM table WHERE Official Name = Petersville |
Translate the following into a SQL query | What is the population of each community with city status? | SELECT Population FROM table WHERE Status = City |
Translate the following into a SQL query | What is the name of the community with an area of 30.75 sq. km.? | SELECT Official Name FROM table WHERE Area km 2 = 30.75 |
Translate the following into a SQL query | What is the area of the community with a population of 1209? | SELECT Area km 2 FROM table WHERE Population = 1209 |
Translate the following into a SQL query | How many population values are listed for the community with an area of 10.25 sq.km.? | SELECT COUNT Population FROM table WHERE Area km 2 = 10.25 |
Translate the following into a SQL query | Name the region 1 where region 4 for april 2, 2009 | SELECT Region 1 FROM table WHERE Region 4 = April 2, 2009 |
Translate the following into a SQL query | Name the region 1 for episode number 13 | SELECT Region 1 FROM table WHERE Ep # = 13 |
Translate the following into a SQL query | Who directed the episode titled "Episode 19"? | SELECT Directed by FROM table WHERE Title = "Episode 19" |
Translate the following into a SQL query | How many episodes have the season number of 1? | SELECT COUNT Series # FROM table WHERE Season # = 1 |
Translate the following into a SQL query | Who was the director of the film with the original title of "The Patience Stone"? | SELECT Director FROM table WHERE Original title = The Patience Stone |
Translate the following into a SQL query | For what ceremony was "Fire Dancer" not nominated? | SELECT Year (Ceremony) FROM table WHERE Original title = Fire Dancer |
Translate the following into a SQL query | What name was used for nomination for the film with an original title of "The Black Tulip"? | SELECT Film title used in nomination FROM table WHERE Original title = The Black Tulip |
Translate the following into a SQL query | What languages were spoken in the film "FireDancer"? | SELECT Language(s) FROM table WHERE Film title used in nomination = FireDancer |
Translate the following into a SQL query | Who was the director of the film with an original title of "16 Days in Afghanistan"? | SELECT Director FROM table WHERE Original title = 16 Days in Afghanistan |
Translate the following into a SQL query | what is the model where the method is ha? | SELECT Model FROM table WHERE Method = HA |
Translate the following into a SQL query | what is the total number of model wehre the status is named geneva? | SELECT COUNT Model FROM table WHERE Status = Status AND Name = GenEva |
Translate the following into a SQL query | what is the max fs where the status is status and the method is method? | SELECT Max FS FROM table WHERE Status = Status AND Method = Method |
Translate the following into a SQL query | what ist he output where the short description is massive? | SELECT Output FROM table WHERE Short description = massive |
Translate the following into a SQL query | What was the nominated film title of শ্যামল ছায়া (shyamol chhaya)? | SELECT Film title used in nomination FROM table WHERE Original title = শ্যামল ছায়া (Shyamol Chhaya) |
Translate the following into a SQL query | What year and ceremony was the original title বৃত্তের বাইরে (britter baire)? | SELECT Year (Ceremony) FROM table WHERE Original title = বৃত্তের বাইরে (Britter Baire) |
Translate the following into a SQL query | How many years was the original title was স্বপ্নডানায় (swopnodanay)? | SELECT COUNT Year (Ceremony) FROM table WHERE Original title = স্বপ্নডানায় (Swopnodanay) |
Translate the following into a SQL query | what is the nickname founded in 1902? | SELECT Nickname FROM table WHERE Founded = 1902 |
Translate the following into a SQL query | where is the enrollment 4259? | SELECT Location FROM table WHERE Enrollment = 4259 |
Translate the following into a SQL query | what is the year union university was founded? | SELECT Founded FROM table WHERE Institution = Union University |
Translate the following into a SQL query | What was the percentage in Manitoba in 2011? | SELECT % 2011 FROM table WHERE Province = Manitoba |
Translate the following into a SQL query | Which province had population of 210295 South Asians in 2001? | SELECT Province FROM table WHERE South Asians 2001 = 210295 |
Translate the following into a SQL query | What was the South Asian population in Nova Scotia in 2001? | SELECT South Asians 2001 FROM table WHERE Province = Nova Scotia |
Translate the following into a SQL query | What was the percentage in 2011 of the province that had 2.4% population in 2001? | SELECT % 2011 FROM table WHERE % 2001 = 2.4% |
Translate the following into a SQL query | How many figures are given for total number of South Asians in 2001 for the area where they were 4.4% of population in 2011? | SELECT COUNT South Asians 2001 FROM table WHERE % 2011 = 4.4% |
Translate the following into a SQL query | How many Indians were admitted in 2001? | SELECT Indians admitted FROM table WHERE Year = 2001 |
Translate the following into a SQL query | What is the greatest number of Pakistanis admitted to Canada during those times when the number of Nepalis admitted was 627? | SELECT MAX Pakistanis admitted FROM table WHERE Nepalis admitted = 627 |
Translate the following into a SQL query | What is the most number of Indians admitted to Canada when the number of Sri Lankans admitted was 3104? | SELECT MIN Indians admitted FROM table WHERE Sri Lankans admitted = 3104 |
Translate the following into a SQL query | Name the number of tv seasons for season finale being may 24, 1994 | SELECT COUNT TV season FROM table WHERE Season finale = May 24, 1994 |
Translate the following into a SQL query | Name the number of tv seasons for season finale of may 23, 1995 | SELECT COUNT TV season FROM table WHERE Season finale = May 23, 1995 |
Translate the following into a SQL query | Name the driver/passenger for 30 | SELECT COUNT Driver / Passenger FROM table WHERE Position = 30 |
Translate the following into a SQL query | Name the max bike number of position for 30 | SELECT MAX Bike No FROM table WHERE Position = 30 |
Translate the following into a SQL query | Who had the most points in game 4? | SELECT High points FROM table WHERE Game = 4 |
Translate the following into a SQL query | Name the number of going to for thurlby, braceborough spa at departure being 16.50 | SELECT COUNT Going to FROM table WHERE Calling at = Thurlby, Braceborough Spa AND Departure = 16.50 |
Translate the following into a SQL query | Name the departure for spalding | SELECT Departure FROM table WHERE Going to = Spalding |
Translate the following into a SQL query | who scored highest points on the game with record 27–5 | SELECT High points FROM table WHERE Record = 27–5 |
Translate the following into a SQL query | who did highest rebounds in the game with score w 105–88 (ot) | SELECT High rebounds FROM table WHERE Score = W 105–88 (OT) |
Translate the following into a SQL query | how many records were made on the game that ended with score w 121–119 (ot) | SELECT COUNT Record FROM table WHERE Score = W 121–119 (OT) |
Translate the following into a SQL query | What was the team's position when the new manager was Lucas Alcaraz? | SELECT Position in table FROM table WHERE Replaced by = Lucas Alcaraz |
Translate the following into a SQL query | Who replaced outgoing manager José Ángel Ziganda? | SELECT Replaced by FROM table WHERE Outgoing manager = José Ángel Ziganda |
Translate the following into a SQL query | What grid did the driver who earned 19 points start at? | SELECT Grid FROM table WHERE Points = 19 |
Translate the following into a SQL query | Scott Dixon had how many Grid positions? | SELECT COUNT Grid FROM table WHERE Driver = Scott Dixon |
Translate the following into a SQL query | Car number 15 earned what time? | SELECT Time/Retired FROM table WHERE Car No. = 15 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.