question
stringlengths 12
244
| sql
stringlengths 22
468
|
---|---|
What is the total of all Shot PCT occurrences when the value of Blank Ends is 8?
|
SELECT COUNT Shot Pct. FROM table WHERE Blank Ends = 8
|
Where is the Locale when L is 2.
|
SELECT Locale FROM table WHERE L = 2
|
What is the lowest value of Blank Ends when Stolen Ends is 7.
|
SELECT MIN Blank Ends FROM table WHERE Stolen Ends = 7
|
What is the value of Ends Lost when Blank Ends is 9.
|
SELECT Ends Lost FROM table WHERE Blank Ends = 9
|
How many combination classifications have the winner as Erik Zabel and a points classification as Alessandro Petacchi
|
SELECT COUNT Combination classification FROM table WHERE Points classification = Alessandro Petacchi AND Winner = Erik Zabel
|
If winner is alejandro Valverde and the points Classification is by Erik Zabel, who is the mountain classification?
|
SELECT Mountains classification FROM table WHERE Winner = Alejandro Valverde AND Points classification = Erik Zabel
|
How many teams have a combination classification of Alejandro Valverde and a Points classification of Alessandro Petacchi?
|
SELECT COUNT Team classification FROM table WHERE Combination classification = Alejandro Valverde AND Points classification = Alessandro Petacchi
|
How many times were the winnings $3,816,362?
|
SELECT COUNT Avg. Finish FROM table WHERE Winnings = $3,816,362
|
How many wins were there when the position was 26th?
|
SELECT COUNT Wins FROM table WHERE Position = 26th
|
What was the average finish when the average start was 18.4?
|
SELECT Avg. Finish FROM table WHERE Avg. Start = 18.4
|
How many teams had a 76th position finish?
|
SELECT COUNT Team(s) FROM table WHERE Position = 76th
|
What is the maximumum number of wins?
|
SELECT MIN Wins FROM table
|
What teams won in 2007?
|
SELECT Team(s) FROM table WHERE Year = 2007
|
How many entries arr there for the top 10 for the 78th position?
|
SELECT COUNT Top 10 FROM table WHERE Position = 78th
|
Where does team #55/#83 robby gordon motorsports rank in the top 10?
|
SELECT MAX Top 10 FROM table WHERE Team(s) = #55/#83 Robby Gordon Motorsports
|
How many entries are shown for winnings for team #07 robby gordon motorsports?
|
SELECT COUNT Winnings FROM table WHERE Team(s) = #07 Robby Gordon Motorsports
|
What are all values for 'to par' for the winning score of 67-67-69-69=272?
|
SELECT To par FROM table WHERE Winning score = 67-67-69-69=272
|
The tournament Buick Classic occured on what dates?
|
SELECT Date FROM table WHERE Tournament = Buick Classic
|
Who are all runner-ups for No. 2?
|
SELECT Runner-up FROM table WHERE No. = 2
|
when the nickname halley is used, what are the date completed
|
SELECT DATE COMPLETED FROM table WHERE NICKNAME = Halley
|
the date complted is 02/91, what framed size was used
|
SELECT FRAMED SIZE FROM table WHERE DATE COMPLETED = 02/91
|
for the robot black nickname, what framed size is used
|
SELECT FRAMED SIZE FROM table WHERE NICKNAME = Robot Black
|
What are the attributes when the type is "DOMNodeRemoved"?
|
SELECT Attribute FROM table WHERE Type = DOMNodeRemoved
|
How many categories are there when the attribute is "onreset"?
|
SELECT COUNT Category FROM table WHERE Attribute = onreset
|
How many descriptions are there when the attribute is "ondragstart"?
|
SELECT COUNT Description FROM table WHERE Attribute = ondragstart
|
When the type is "reset" what is the description?
|
SELECT Description FROM table WHERE Type = reset
|
Name all the team clasification where the combination classification is mederic clain
|
SELECT Team classification FROM table WHERE Combination classification = Mederic Clain
|
In how many stages did Jose Vicente Garcia Acosta won?
|
SELECT COUNT Stage FROM table WHERE Winner = Jose Vicente Garcia Acosta
|
What is the minimum stage where Sergei Smetanine won?
|
SELECT MIN Stage FROM table WHERE Winner = Sergei Smetanine
|
what is the minimum stage where mountains classification is aitor osa and aitor gonzález won?
|
SELECT MIN Stage FROM table WHERE Mountains classification = Aitor Osa AND Winner = Aitor González
|
How many seasons in the top division for the team that finished 005 5th in 2012-2013
|
SELECT COUNT Number of seasons in top division FROM table WHERE Position in 2012–13 = 005 5th
|
How many countries does honoree Roberto de Vicenzo represent?
|
SELECT COUNT Country FROM table WHERE Honoree(s) = Roberto De Vicenzo
|
For which country does Keith Fergus play?
|
SELECT Country FROM table WHERE Player = Keith Fergus
|
Who won the tournament for Australia in the year when Byron Nelson was Honoree?
|
SELECT Player FROM table WHERE Country = Australia AND Honoree(s) = Byron Nelson
|
What was the margin of victory in the year when the honoree was Tommy Armour?
|
SELECT Margin of victory FROM table WHERE Honoree(s) = Tommy Armour
|
What year was the most recent US Open championship?
|
SELECT MAX Year FROM table WHERE Championship = US Open
|
When li fuyu is the stage winner what is points classification?
|
SELECT Points classification FROM table WHERE Stage winner = Li Fuyu
|
When anuar manan is the stage winner and the team classification is japan and suhardi hassan is the malaysian rider classification who is the points classification?
|
SELECT Points classification FROM table WHERE Malaysian rider classification = Suhardi Hassan AND Team classification = Japan AND Stage winner = Anuar Manan
|
When li fuyu is the stage winner who is the general classification?
|
SELECT General classification FROM table WHERE Stage winner = Li Fuyu
|
When hossein askari is the stage winner who is the malaysian rider classification ?
|
SELECT Malaysian rider classification FROM table WHERE Stage winner = Hossein Askari
|
How many nominees had a net voice of 15.17%
|
SELECT COUNT Nominee FROM table WHERE Net vote = 15.17%
|
What nominees had a net vote of 34.46%?
|
SELECT Nominee FROM table WHERE Net vote = 34.46%
|
How many nominee's had a vote to evict percentage of 3.92%
|
SELECT COUNT Nominee FROM table WHERE Vote to Evict = 3.92%
|
How many eviction results occurred with a eviction no. 12 and a vote to save of 2.76%?
|
SELECT COUNT Eviction result FROM table WHERE Eviction No. = 12 AND Vote to Save = 2.76%
|
What was the final result when the viewers selected ejay?
|
SELECT Result FROM table WHERE Viewers selection = Ejay
|
What was the description when the viewers selected Nan?
|
SELECT Description FROM table WHERE Viewers selection = Nan
|
What is the name of series episode 11-02's segment c?
|
SELECT Segment C FROM table WHERE Series Ep. = 11-02
|
What is the title of series episode 11-05's segment d?
|
SELECT Segment D FROM table WHERE Series Ep. = 11-05
|
In seris episode 11-04, what is the B segment titled?
|
SELECT Segment B FROM table WHERE Series Ep. = 11-04
|
In the episode where segment a is microphones, what is segment d?
|
SELECT Segment D FROM table WHERE Segment A = Microphones
|
What is Segment B for series episode 12-08?
|
SELECT Segment B FROM table WHERE Series Ep. = 12-08
|
What is the series episode where Segment B is popcorn ?
|
SELECT Series Ep. FROM table WHERE Segment B = Popcorn
|
What is the Netflix where Segment C is car washes?
|
SELECT Netflix FROM table WHERE Segment C = Car Washes
|
What is Segment B for series episode 12-02?
|
SELECT Segment B FROM table WHERE Series Ep. = 12-02
|
What is Segment A where Segment B is Kevlar S Canoe?
|
SELECT Segment A FROM table WHERE Segment B = Kevlar s Canoe
|
What is the Netflix where Segment D is pressure gauges ?
|
SELECT Netflix FROM table WHERE Segment D = Pressure Gauges
|
Name the segment d for bowling balls
|
SELECT Segment D FROM table WHERE Segment A = Bowling Balls
|
Name the segment b for pressure cookers
|
SELECT Segment B FROM table WHERE Segment A = Pressure Cookers
|
Name the segment b for 167
|
SELECT Segment B FROM table WHERE Episode = 167
|
Name the segment a for 162
|
SELECT Segment A FROM table WHERE Episode = 162
|
Name the total number of segment c for pressure cookers
|
SELECT COUNT Segment C FROM table WHERE Segment A = Pressure Cookers
|
What was segment C when segment D was fluorescent tubes?
|
SELECT Segment C FROM table WHERE Segment D = Fluorescent Tubes
|
What was segment C when segment B was package printing?
|
SELECT Segment C FROM table WHERE Segment B = Package printing
|
What was segment A when segment B was snowboards?
|
SELECT Segment A FROM table WHERE Segment B = Snowboards
|
What was segment D when segment B was jeans?
|
SELECT Segment D FROM table WHERE Segment B = Jeans
|
In what episode was segment D ned Can Corn?
|
SELECT MAX Episode FROM table WHERE Segment D = ned Can Corn
|
Name the segment c for crash test dummies
|
SELECT COUNT Segment C FROM table WHERE Segment D = Crash Test Dummies
|
Name the segment b for s dress form
|
SELECT Segment B FROM table WHERE Segment A = s Dress Form
|
Name the segment a for s duvet
|
SELECT Segment A FROM table WHERE Segment C = s Duvet
|
Name the total number of episodes for s fire extinguisher
|
SELECT COUNT Episode FROM table WHERE Segment A = s Fire Extinguisher
|
Name the total number of segment b for s banjo
|
SELECT COUNT Segment B FROM table WHERE Segment D = s Banjo
|
Name the total number of segment d for wooden s barrel
|
SELECT COUNT Segment D FROM table WHERE Segment A = Wooden s Barrel
|
How many segment A were in series episode 14-05
|
SELECT COUNT Segment A FROM table WHERE Series Ep. = 14-05
|
What is segment C in s07e05
|
SELECT Segment C FROM table WHERE Netflix = S07E05
|
What is the netflix episode number where Segment D is high-performance engines?
|
SELECT Netflix FROM table WHERE Segment D = High-Performance Engines
|
What was segment D for episode 183?
|
SELECT Segment D FROM table WHERE Episode = 183
|
What is Segment A where Segment C is Sushi (part 1)?
|
SELECT Segment A FROM table WHERE Segment C = Sushi (Part 1)
|
How many episodes have the Netflix episode number S08E04?
|
SELECT COUNT Episode FROM table WHERE Netflix = S08E04
|
What is Segment A where Segment D is luxury sports cars?
|
SELECT Segment A FROM table WHERE Segment D = Luxury Sports Cars
|
What episode number is the episode with a segment on thinning shears?
|
SELECT MIN Episode FROM table WHERE Segment A = Thinning Shears
|
Which episode has segment D on custom motorcycle tanks?
|
SELECT MIN Episode FROM table WHERE Segment D = Custom Motorcycle Tanks
|
How many segment C are there in the episode where segment D is bicycle tires?
|
SELECT COUNT Segment C FROM table WHERE Segment D = Bicycle Tires
|
What is the first episode number?
|
SELECT MIN Episode FROM table
|
How many segment b's when segment a is filigree glass
|
SELECT COUNT Segment B FROM table WHERE Segment A = Filigree Glass
|
Whats the name of segment in s08e21
|
SELECT Segment A FROM table WHERE Netflix = S08E21
|
Whats the season/episode of segment a digital dentistry
|
SELECT Netflix FROM table WHERE Segment A = Digital Dentistry
|
Whats the name of segment D in the episode where segment A is tequila
|
SELECT Segment D FROM table WHERE Segment A = Tequila
|
Name the segment D of the episode where segment A is tequila
|
SELECT Segment D FROM table WHERE Segment A = Tequila
|
Name the number of episods for segment c being s oyster
|
SELECT COUNT Episode FROM table WHERE Segment C = s Oyster
|
Name the least episode for fibre cement siding
|
SELECT MIN Episode FROM table WHERE Segment D = Fibre Cement Siding
|
Name the segment b for 226 episode
|
SELECT Segment B FROM table WHERE Episode = 226
|
Name the number of sement d for solar water heaters
|
SELECT COUNT Segment D FROM table WHERE Segment B = Solar Water Heaters
|
Name the segment d for s cufflink
|
SELECT Segment D FROM table WHERE Segment A = s Cufflink
|
What is the segment B of episode 242?
|
SELECT Segment B FROM table WHERE Episode = 242
|
What is the segment C of the episode where segment B is Film Digitization?
|
SELECT Segment C FROM table WHERE Segment B = Film Digitization
|
What is the segment A on episode 237?
|
SELECT Segment A FROM table WHERE Episode = 237
|
What is the last episode which has segment d as blown glass?
|
SELECT MAX Episode FROM table WHERE Segment D = Blown Glass
|
What is the first episode with a netflix episode code of s02e20?
|
SELECT MIN Episode FROM table WHERE Netflix = S02E20
|
What is the netflix code for episode 46?
|
SELECT Netflix FROM table WHERE Episode = 46
|
What is the netflix code where the series and episode are 4-11?
|
SELECT Netflix FROM table WHERE Series Ep. = 4-11
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.