question
stringlengths 12
244
| sql
stringlengths 22
468
|
---|---|
On July 8, what was the score?
|
SELECT Score FROM table WHERE Date = July 8
|
Who was the oppenent what the score was L 68-60?
|
SELECT Opponent FROM table WHERE Score = L 68-60
|
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
|
If high assists are under Canty (6) how much would the record be?
|
SELECT Record FROM table WHERE High assists = Canty (6)
|
If the score is 62-70, what are the high points?
|
SELECT High points FROM table WHERE Score = 62-70
|
On which date was the location/attendance UIC Pavilion 3,829 respectively?
|
SELECT Date FROM table WHERE Location/Attendance = UIC Pavilion 3,829
|
On which date is high assists Dupree (6)?
|
SELECT Date FROM table WHERE High assists = Dupree (6)
|
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
|
How many farmers were included by the department with 32 projects?
|
SELECT MAX Farmers FROM table WHERE Projects = 32
|
What department irrigated 2170 Ha?
|
SELECT Department FROM table WHERE Irrigated Ha = 2170
|
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
|
What was the department that got $626,798 in local investments?
|
SELECT Department FROM table WHERE Local Investment (US$) = 626,798
|
What number was the game resulting in a 5-11 record?
|
SELECT MIN Game FROM table WHERE Record = 5-11
|
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
|
In the game resulting in a 5-11 record, who scored the high rebounds?
|
SELECT High rebounds FROM table WHERE Record = 5-11
|
Who was the opponent of the game with final score won 4-1?
|
SELECT Opponent FROM table WHERE Result = Won 4-1
|
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
|
What was the venue of the game that was lost 3-4?
|
SELECT Venue FROM table WHERE Result = Lost 3-4
|
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
|
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
|
Name the opponent for 4th
|
SELECT Opponent FROM table WHERE Date = 4th
|
Name the venue for 19th date
|
SELECT Venue FROM table WHERE Date = 19th
|
Name the result for lukas smital and home
|
SELECT Result FROM table WHERE Man of the Match = Lukas Smital AND Venue = Home
|
Name the man of the match for 24th
|
SELECT Man of the Match FROM table WHERE Date = 24th
|
Name the man of the maatch for sheffield scimitars
|
SELECT Man of the Match FROM table WHERE Opponent = Sheffield Scimitars
|
On the 19th, where was the venue?
|
SELECT Venue FROM table WHERE Date = 19th
|
What was the total attendance during the home game against the Swindon Wildcats?
|
SELECT Attendance FROM table WHERE Opponent = Swindon Wildcats AND Venue = Home
|
On what day was Stuart Potts the Man of the Match?
|
SELECT Date FROM table WHERE Man of the Match = Stuart Potts
|
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
|
How many dates did David Savage get man of the match?
|
SELECT COUNT Date FROM table WHERE Man of the Match = David Savage
|
When the attendance was 1568, who was man of the match?
|
SELECT Man of the Match FROM table WHERE Attendance = 1568
|
Who was the man of the match when they lost 2-4?
|
SELECT Man of the Match FROM table WHERE Result = Lost 2-4
|
what was the competitoin where the opponent is sheffield scimitars?
|
SELECT Competition FROM table WHERE Opponent = Sheffield Scimitars
|
where was the venue where the attendance was 702?
|
SELECT Venue FROM table WHERE Attendance = 702
|
what was the venue where the date was the 22nd?
|
SELECT Venue FROM table WHERE Date = 22nd
|
who was the opponent where the date was the 21st?
|
SELECT Opponent FROM table WHERE Date = 21st
|
What is the score for Milwaukee?
|
SELECT Score FROM table WHERE Team = Milwaukee
|
What was the record against Washington?
|
SELECT COUNT Record FROM table WHERE Team = Washington
|
If the census ranking is 231 of 5,008, what was the population?
|
SELECT Population FROM table WHERE Census Ranking = 231 of 5,008
|
If the area is 59.73, what is the official name?
|
SELECT Official Name FROM table WHERE Area km 2 = 59.73
|
If the census ranking is 693 of 5,008, what is the status?
|
SELECT Status FROM table WHERE Census Ranking = 693 of 5,008
|
With the official name Quispamsis, what is the census ranking?
|
SELECT Census Ranking FROM table WHERE Official Name = Quispamsis
|
What was the population for census ranking 782 of 5,008?
|
SELECT Population FROM table WHERE Census Ranking = 782 of 5,008
|
If the area is 34.73, what is the census ranking?
|
SELECT Census Ranking FROM table WHERE Area km 2 = 34.73
|
What are the census ranking(s) for a population of 284?
|
SELECT Census Ranking FROM table WHERE Population = 284
|
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
|
What is the population that has an area of 715.58?
|
SELECT Population FROM table WHERE Area km 2 = 715.58
|
What are that status(es) of saint-jacques?
|
SELECT Status FROM table WHERE Official Name = Saint-Jacques
|
What are the area(s) (km2) for saint-joseph?
|
SELECT Area km 2 FROM table WHERE Official Name = Saint-Joseph
|
What rank is the parish with 482.81 km^2?
|
SELECT Census Ranking FROM table WHERE Area km 2 = 482.81
|
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
|
How many statuses are listed for the parish officially named Gagetown?
|
SELECT COUNT Status FROM table WHERE Official Name = Gagetown
|
What is Petersville's census ranking?
|
SELECT Census Ranking FROM table WHERE Official Name = Petersville
|
What is the population of each community with city status?
|
SELECT Population FROM table WHERE Status = City
|
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
|
What is the area of the community with a population of 1209?
|
SELECT Area km 2 FROM table WHERE Population = 1209
|
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
|
Name the region 1 where region 4 for april 2, 2009
|
SELECT Region 1 FROM table WHERE Region 4 = April 2, 2009
|
Name the region 1 for episode number 13
|
SELECT Region 1 FROM table WHERE Ep # = 13
|
Who directed the episode titled "Episode 19"?
|
SELECT Directed by FROM table WHERE Title = "Episode 19"
|
How many episodes have the season number of 1?
|
SELECT COUNT Series # FROM table WHERE Season # = 1
|
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
|
For what ceremony was "Fire Dancer" not nominated?
|
SELECT Year (Ceremony) FROM table WHERE Original title = Fire Dancer
|
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
|
What languages were spoken in the film "FireDancer"?
|
SELECT Language(s) FROM table WHERE Film title used in nomination = FireDancer
|
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
|
what is the model where the method is ha?
|
SELECT Model FROM table WHERE Method = HA
|
what is the total number of model wehre the status is named geneva?
|
SELECT COUNT Model FROM table WHERE Status = Status AND Name = GenEva
|
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
|
what ist he output where the short description is massive?
|
SELECT Output FROM table WHERE Short description = massive
|
What was the nominated film title of শ্যামল ছায়া (shyamol chhaya)?
|
SELECT Film title used in nomination FROM table WHERE Original title = শ্যামল ছায়া (Shyamol Chhaya)
|
What year and ceremony was the original title বৃত্তের বাইরে (britter baire)?
|
SELECT Year (Ceremony) FROM table WHERE Original title = বৃত্তের বাইরে (Britter Baire)
|
How many years was the original title was স্বপ্নডানায় (swopnodanay)?
|
SELECT COUNT Year (Ceremony) FROM table WHERE Original title = স্বপ্নডানায় (Swopnodanay)
|
what is the nickname founded in 1902?
|
SELECT Nickname FROM table WHERE Founded = 1902
|
where is the enrollment 4259?
|
SELECT Location FROM table WHERE Enrollment = 4259
|
what is the year union university was founded?
|
SELECT Founded FROM table WHERE Institution = Union University
|
What was the percentage in Manitoba in 2011?
|
SELECT % 2011 FROM table WHERE Province = Manitoba
|
Which province had population of 210295 South Asians in 2001?
|
SELECT Province FROM table WHERE South Asians 2001 = 210295
|
What was the South Asian population in Nova Scotia in 2001?
|
SELECT South Asians 2001 FROM table WHERE Province = Nova Scotia
|
What was the percentage in 2011 of the province that had 2.4% population in 2001?
|
SELECT % 2011 FROM table WHERE % 2001 = 2.4%
|
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%
|
How many Indians were admitted in 2001?
|
SELECT Indians admitted FROM table WHERE Year = 2001
|
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
|
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
|
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
|
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
|
Name the driver/passenger for 30
|
SELECT COUNT Driver / Passenger FROM table WHERE Position = 30
|
Name the max bike number of position for 30
|
SELECT MAX Bike No FROM table WHERE Position = 30
|
Who had the most points in game 4?
|
SELECT High points FROM table WHERE Game = 4
|
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
|
Name the departure for spalding
|
SELECT Departure FROM table WHERE Going to = Spalding
|
who scored highest points on the game with record 27–5
|
SELECT High points FROM table WHERE Record = 27–5
|
who did highest rebounds in the game with score w 105–88 (ot)
|
SELECT High rebounds FROM table WHERE Score = W 105–88 (OT)
|
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)
|
What was the team's position when the new manager was Lucas Alcaraz?
|
SELECT Position in table FROM table WHERE Replaced by = Lucas Alcaraz
|
Who replaced outgoing manager José Ángel Ziganda?
|
SELECT Replaced by FROM table WHERE Outgoing manager = José Ángel Ziganda
|
What grid did the driver who earned 19 points start at?
|
SELECT Grid FROM table WHERE Points = 19
|
Scott Dixon had how many Grid positions?
|
SELECT COUNT Grid FROM table WHERE Driver = Scott Dixon
|
Car number 15 earned what time?
|
SELECT Time/Retired FROM table WHERE Car No. = 15
|
How many positions did the car with a final time of +10.8098 finish in?
|
SELECT COUNT Fin. Pos FROM table WHERE Time/Retired = +10.8098
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.