question
stringlengths 12
244
| sql
stringlengths 22
468
|
---|---|
What day was the score 200 (-16)?
|
SELECT Date FROM table WHERE Score = 200 (-16)
|
Where was Outback Steakhouse Pro-AM held?
|
SELECT Location FROM table WHERE Tournament = Outback Steakhouse Pro-Am
|
Which dates of polls occur in the Mizoram state?
|
SELECT Date of Polls FROM table WHERE State = Mizoram
|
How many dates of polls occur in the Madhya Pradesh state?
|
SELECT COUNT Date of Polls FROM table WHERE State = Madhya Pradesh
|
How many under the category of Against have a Difference of 11
|
SELECT COUNT Against FROM table WHERE Difference = 11
|
if Against is 20 how much is Won?
|
SELECT Won FROM table WHERE Against = 20
|
How many Drawn does the team Portuguesa Santista have?
|
SELECT Drawn FROM table WHERE Team = Portuguesa Santista
|
If the difference is 11 how much is for?
|
SELECT MAX For FROM table WHERE Difference = 11
|
How many drawn does the team Corinthians have?
|
SELECT Drawn FROM table WHERE Team = Corinthians
|
What is the highest number won with a difference of 1?
|
SELECT MAX Won FROM table WHERE Difference = 1
|
What the highest position when there is 28 against?
|
SELECT MAX Position FROM table WHERE Against = 28
|
What is the highest number won when the number of points is 31?
|
SELECT MAX Won FROM table WHERE Points = 31
|
What is the smalledt position when the difference was 6?
|
SELECT MIN Position FROM table WHERE Difference = 6
|
How many were the show's average weekly ranking when it reached No. 2 in average nightly ranking?
|
SELECT COUNT Average Weekly Rank FROM table WHERE Average Nightly Rank = No. 2
|
What is the show's time slot during season 3?
|
SELECT Timeslot FROM table WHERE Season = 3
|
What are all the round 3's after 1982?
|
SELECT Round 3 FROM table WHERE From = 1982
|
What are all the round 5's where round 6 and up is double?
|
SELECT Round 5 FROM table WHERE Round 6+ = Double
|
What is the maximum goal after 1979?
|
SELECT MAX Goal FROM table WHERE From = 1979
|
Name all of the february
|
SELECT February FROM table
|
Name the junes
|
SELECT June FROM table
|
Name the julys
|
SELECT July FROM table
|
Name the number of februaries
|
SELECT COUNT February FROM table
|
Name the february
|
SELECT February FROM table
|
How many points are listed when the position is 2?
|
SELECT MAX Points FROM table WHERE Position = 2
|
When there is a lost of 2 what is the mumber drawn?
|
SELECT MAX Drawn FROM table WHERE Lost = 2
|
How many games are played?
|
SELECT MIN Played FROM table
|
When the position is 2 what is the number lost?
|
SELECT MIN Lost FROM table WHERE Position = 2
|
When the team is ypiranga-sp what is the number of won games?
|
SELECT MIN Won FROM table WHERE Team = Ypiranga-SP
|
Name the lease for when points is 19
|
SELECT MIN For FROM table WHERE Points = 19
|
Name the difference for when drawn is larger than 2.0
|
SELECT Difference FROM table WHERE Drawn > 2.0
|
Name the most against for minas gerais
|
SELECT MAX Against FROM table WHERE Team = Minas Gerais
|
What is the LMS class of trains with numbers 14510-5?
|
SELECT LMS Class FROM table WHERE LMS nos. = 14510-5
|
What is the date of the 279 wheels?
|
SELECT Date FROM table WHERE Wheels = 279
|
What is the class when the LMS class is 3F?
|
SELECT Class FROM table WHERE LMS Class = 3F
|
What is the LMS number of the trains built by G&SWR Kilmarnock?
|
SELECT LMS nos. FROM table WHERE Builder = G&SWR Kilmarnock
|
How many figures are there for wheels for LMS numbers 16377-9?
|
SELECT COUNT Wheels FROM table WHERE LMS nos. = 16377-9
|
What is the builder of the train with LMS Class 3f?
|
SELECT Builder FROM table WHERE LMS Class = 3F
|
What is the maximum number for the Saffir-Simpson category in the Carvill Hurricane Index?
|
SELECT MAX Saffir-Simpson Category FROM table
|
What is the maximum miles per hour recorded when the CHI (Carvill Hurricane Index) is equal to 13.5
|
SELECT MAX V(mph) FROM table WHERE CHI = 13.5
|
What is the CHI (Carvill Hurricane Index) when the NHC advisory number is equal to 49b?
|
SELECT CHI FROM table WHERE NHC Advisory Number = 49B
|
What is the maximum number of miles reached in a Texas landfall when the Saffir-Simpson category is smaller than 3.0?
|
SELECT MAX R(miles) FROM table WHERE Landfall = Texas AND Saffir-Simpson Category < 3.0
|
What are the miles when the Carvill Hurricane Index (CHI) is equal to 9.9?
|
SELECT R(miles) FROM table WHERE CHI = 9.9
|
What is the Saffir-Simpson category for the hurricane named Bonnie?
|
SELECT Saffir-Simpson Category FROM table WHERE Name = Bonnie
|
What kind of animal corresponds to the accession number xp_852505.1?
|
SELECT Common Name FROM table WHERE Accession Number = XP_852505.1
|
How similar is the genus/species sus scrofa?
|
SELECT Similarity FROM table WHERE Genus/Species = Sus scrofa
|
What identities do the genus/species arabidopsis thaliana have?
|
SELECT Identity FROM table WHERE Genus/Species = Arabidopsis thaliana
|
What's the animals name when the genus/species is rattus norvegicus?
|
SELECT Common Name FROM table WHERE Genus/Species = Rattus norvegicus
|
For the genus/species arabidopsis thaliana, what are the lengths?
|
SELECT Length FROM table WHERE Genus/Species = Arabidopsis thaliana
|
How many original air dates were there for episode 17?
|
SELECT COUNT Original air date FROM table WHERE No. in season = 17
|
When did the episode titled "Prisoners" first air?
|
SELECT Original air date FROM table WHERE Title = "Prisoners"
|
Which company was based in London, United Kingdom?
|
SELECT Institution FROM table WHERE Country = London, United Kingdom
|
What was the original air date of Stargate SG-1 written by Peter Deluise?
|
SELECT Original air date FROM table WHERE Written by = Peter DeLuise
|
How many seasons did Peter Deluise direct Stargate SG-1?
|
SELECT MAX No. in season FROM table WHERE Directed by = Peter DeLuise
|
Which number episode of season 6 was the title "Sight Unseen"?
|
SELECT MIN No. in season FROM table WHERE Title = "Sight Unseen"
|
Name the fifth district for william womer
|
SELECT Fifth District FROM table WHERE Third District = William Womer
|
Name the third district for christine young
|
SELECT Third District FROM table WHERE Fifth District = Christine Young
|
Name the fourth district for joan runnels
|
SELECT Fourth District FROM table WHERE Second District = Joan Runnels
|
Name the fourth district for beverly bodem
|
SELECT Fourth District FROM table WHERE First District = Beverly Bodem
|
Name the number for fifth district for richard houskamp
|
SELECT COUNT Fifth District FROM table WHERE Third District = Richard Houskamp
|
Name the fifth district for steve rudoni
|
SELECT Fifth District FROM table WHERE Fourth District = Steve Rudoni
|
What was the top ends lost where the ends won 47?
|
SELECT MAX Ends Lost FROM table WHERE Ends Won = 47
|
What was the location when the stolen ends is 12 and shot pct is 77%?
|
SELECT Locale FROM table WHERE Stolen Ends = 12 AND Shot Pct. = 77%
|
How many stolen ends were there when the locale was Sweden?
|
SELECT Stolen Ends FROM table WHERE Locale = Sweden
|
What was the school/club team whose season was in 2012 and were acquired via trade?
|
SELECT School/Club Team FROM table WHERE Season = 2012 AND Acquisition via = Trade
|
Which school/club team has a player named Mark Sanford?
|
SELECT School/Club Team FROM table WHERE Name = Mark Sanford
|
How many school/club teams have a player named Manuel Luis Quezon?
|
SELECT COUNT Number FROM table WHERE School/Club Team = Manuel Luis Quezon
|
How many players are listed for the school/club team Washington?
|
SELECT COUNT Name FROM table WHERE School/Club Team = Washington
|
How many players with a position are listed for the 2009 season?
|
SELECT COUNT Position FROM table WHERE Season = 2009
|
Name the school/club for guard
|
SELECT School/Club Team FROM table WHERE Position = Guard
|
Name the position for judy-ann ramirez
|
SELECT Position FROM table WHERE Name = judy-ann ramirez
|
What is the losing bonus for the team with a point difference of -99?
|
SELECT Losing Bonus FROM table WHERE Points difference = -99
|
How many games played for teams with 277 points?
|
SELECT Played FROM table WHERE Points for = 277
|
How many games won for teams with 49 tries against?
|
SELECT Won FROM table WHERE Tries Against = 49
|
How many teams have 62 tries against?
|
SELECT COUNT Points difference FROM table WHERE Tries Against = 62
|
How many tries for, for club cambrian welfare rfc?
|
SELECT Tries For FROM table WHERE Club = Cambrian Welfare RFC
|
How many teams have 21 tries for?
|
SELECT COUNT Points difference FROM table WHERE Tries For = 21
|
How many chassis used number 34?
|
SELECT COUNT Chassis FROM table WHERE No = 34
|
Who was the constructor of car 22?
|
SELECT Constructor FROM table WHERE No = 22
|
How many cars used number 48?
|
SELECT COUNT Engine FROM table WHERE No = 48
|
Who drove car 44?
|
SELECT Driver FROM table WHERE No = 44
|
Name the total number of years where runner-up and championship is us open
|
SELECT COUNT Year FROM table WHERE Outcome = Runner-up AND Championship = US Open
|
Name the surfaace where outcome is runner-up and championship is us open
|
SELECT Surface FROM table WHERE Outcome = Runner-up AND Championship = US Open
|
Name the partner for mark woodforde martina navratilova
|
SELECT Partner FROM table WHERE Opponents = Mark Woodforde Martina Navratilova
|
Name the score for rick leach zina garrison
|
SELECT Score FROM table WHERE Opponents = Rick Leach Zina Garrison
|
Name the swimsuit for arizona
|
SELECT Swimsuit FROM table WHERE State = Arizona
|
Name the driver for race 2 7
|
SELECT Driver FROM table WHERE Race 2 = 7
|
Name the total number of qualifiying for race 3 being 3
|
SELECT COUNT Qualifying FROM table WHERE Race 3 = 3
|
Name the driver for race 2 2
|
SELECT Driver FROM table WHERE Race 2 = 2
|
Name the race 1 when race 3 is 8
|
SELECT Race 1 FROM table WHERE Race 3 = 8
|
Name the race 2 for james winslow
|
SELECT Race 2 FROM table WHERE Driver = James Winslow
|
Name the total number of positions for race 1 being 2
|
SELECT COUNT Pos. FROM table WHERE Race 1 = 2
|
Did the race get reported where the winning team was Newman Wachs racing and the pole belonged to Carl Skerlong
|
SELECT Report FROM table WHERE Pole Position = Carl Skerlong AND Winning team = Newman Wachs Racing
|
Did the round 8 race get reported
|
SELECT Report FROM table WHERE Rd = 8
|
Which race was the winning team mathiasen motorsports and the pole belonged to jonathan bomarito
|
SELECT Race FROM table WHERE Winning team = Mathiasen Motorsports AND Pole Position = Jonathan Bomarito
|
how many winners were in round 8
|
SELECT COUNT Winning driver FROM table WHERE Rd = 8
|
How many episodes air on Wednesday at 12:00pm?
|
SELECT COUNT 12:00 PM FROM table WHERE Time = Wednesday
|
What are the names of the episodes that airs at 2:00pm?
|
SELECT 02:00 PM FROM table
|
What is the name of the show that airs Friday at 5:55pm?
|
SELECT 05:55 PM FROM table WHERE Time = Friday
|
Name the 10 pm for thursday
|
SELECT 10:00 PM FROM table WHERE Time = Thursday
|
Name the 8 pm when time is thursday
|
SELECT 08:00 PM FROM table WHERE Time = Thursday
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.