question
stringlengths
12
244
sql
stringlengths
22
468
Name the 1st prize for senior pga championship
SELECT 1st Prize ( $ ) FROM table WHERE Tournament = Senior PGA Championship
What was the place for the celebrity whose aggregate was 35?
SELECT Place FROM table WHERE Aggregate = 35
How many dances did John Barnes have?
SELECT MIN Dances FROM table WHERE Celebrity = John Barnes
What is the age of the celebrity who had a 402 aggregate?
SELECT MAX Age FROM table WHERE Aggregate = 402
What was the aggregate for Ricky Groves?
SELECT MAX Aggregate FROM table WHERE Celebrity = Ricky Groves
What was the aggregate for the celebrity who was known for being a singer and had 7 dances?
SELECT Aggregate FROM table WHERE Dances = 7 AND Known for = Singer
What are the conditions of access where access using a Croatian identity card is yes and the length of stay permitted is freedom of movement?
SELECT Conditions of access FROM table WHERE Access using a Croatian identity card = Yes AND Length of stay permitted = Freedom of movement
Can one access the Jersey territory using a Croatian identity card?
SELECT Access using a Croatian identity card FROM table WHERE Countries and Territories = Jersey
What is the fee (if applicable) for Norway?
SELECT Fee (if applicable) FROM table WHERE Countries and Territories = Norway
What is the permitted length of stay in the Jersey territory?
SELECT Length of stay permitted FROM table WHERE Countries and Territories = Jersey
Can one access the Faroe Islands using a Croatian identity card?
SELECT Access using a Croatian identity card FROM table WHERE Countries and Territories = Faroe Islands
What length of stay is permitted in the European Union?
SELECT Length of stay permitted FROM table WHERE Countries and Territories = European Union
What was the complement for the unit that had 3 off 37 men killed?
SELECT Complement FROM table WHERE Killed = 3 off 37 men
What is the number of wounded figures associated with a complement of 22 off 637 men?
SELECT COUNT Wounded FROM table WHERE Complement = 22 off 637 men
What is the number of commanders that had 0 off 63 men killed?
SELECT COUNT Commander FROM table WHERE Killed = 0 off 63 men
What was the complement associated with 0 off 3 men killed and 0 off 2 men wounded?
SELECT Complement FROM table WHERE Killed = 0 off 3 men AND Wounded = 0 off 2 men
How many regions had rainfall infiltration (km 3/year) of 9.3?
SELECT COUNT Rainfall by depth (mm/year) FROM table WHERE Infiltration (km 3 /year) = 9.3
What was the rainfall by volume in Huetar Atlantico where the rainfall depth (mm/year) was 3527?
SELECT Rainfall by volume (km 3 /year) FROM table WHERE Rainfall by depth (mm/year) = 3527
In Pacifico Central where the rainfall by depth (mm/year) was 2801 what was the rainfall by volume?
SELECT Rainfall by volume (km 3 /year) FROM table WHERE Rainfall by depth (mm/year) = 2801
In the region where the rainfall by volume (km 3 /year) was 13.2, what was the evapotranspiration (km 3 /year)?
SELECT Evapotranspiration (km 3 /year) FROM table WHERE Rainfall by volume (km 3 /year) = 13.2
In the Central region, what was the infiltration (km 3 /year)?
SELECT Infiltration (km 3 /year) FROM table WHERE Region = Central
In the Central region, where the land area (km 2) is 8,543.2, what was the rainfall by depth (mm/year)?
SELECT Rainfall by depth (mm/year) FROM table WHERE Land area (km 2 ) = 8,543.2
How many wins did Parsons have in the year where his winnings were $90,700?
SELECT MAX Wins FROM table WHERE Winnings = $90,700
What position was Parsons in for 1992?
SELECT Position FROM table WHERE Year = 1992
Who is every young rider classification when Jelle Vanendert is the winner?
SELECT Young rider classification FROM table WHERE Winner = Jelle Vanendert
Who is every young rider classification if combativity award is Yannick Talabardon?
SELECT Young rider classification FROM table WHERE Combativity award = Yannick Talabardon
How many mountains classifications when Rui Costa is the winner?
SELECT COUNT Mountains classification FROM table WHERE Winner = Rui Costa
What is every team classification when points classification is Philippe Gilbert if mountains classification is Johnny Hoogerland and stage is less than 9.0?
SELECT Team classification FROM table WHERE Points classification = Philippe Gilbert AND Mountains classification = Johnny Hoogerland AND Stage < 9.0
how many million u.s. viewers watched the episode directed by dan lerner?
SELECT U.S. viewers (million) FROM table WHERE Directed by = Dan Lerner
what is the latest episode in the series that had 16.17 million u.s. viewers?
SELECT MAX No. in series FROM table WHERE U.S. viewers (million) = 16.17
What is the title of the episode with the production code 3x5362?
SELECT Title FROM table WHERE Production code = 3X5362
What Nature reserve number was established on 19961220 20.12.1996
SELECT MIN NSG Nr. FROM table WHERE Date established = 19961220 20.12.1996
How many reserves were established on 19740329 29.03.1974?
SELECT COUNT NSG Nr. FROM table WHERE Date established = 19740329 29.03.1974
When was Stellbrookmoor established?
SELECT Date established FROM table WHERE Name of the nature reserve = Stellbrookmoor
What town has the reserve with an area of 163,62?
SELECT District / Town FROM table WHERE Area (ha) = 163,62
How many reserves are in Herzogtum Lauenburg with an area of 123,14?
SELECT COUNT NSG Nr. FROM table WHERE District / Town = Herzogtum Lauenburg AND Area (ha) = 123,14
How many names does nature reserve 54 have?
SELECT COUNT Name of the nature reserve FROM table WHERE NSG Nr. = 54
Which episode did 18.74 million people tune in?
SELECT Title FROM table WHERE U.S. viewers (million) = 18.74
Which prod code was series 11?
SELECT Production code FROM table WHERE No. in series = 11
What is the highest localities?
SELECT MAX Localities FROM table
What is the least arabs when the metropolitan ring is inner ring 3?
SELECT MIN Arabs FROM table WHERE Metropolitan ring = Inner Ring 3
How many time is the population density (per km²) is 2.5?
SELECT COUNT Localities FROM table WHERE Population density (per km²) = 2.5
What is the metropolitan ring when thereof: jews is 30600?
SELECT Metropolitan ring FROM table WHERE Thereof: Jews = 30600
What is the number of stages where the teams classification leader is Cervélo Testteam?
SELECT COUNT Stage FROM table WHERE Teams Classification = Cervélo TestTeam
How many stages did Team Sky lead the teams classification?
SELECT MAX Stage FROM table WHERE Teams Classification = Team Sky
Who leads the general classification in stage 3?
SELECT General Classification FROM table WHERE Stage = 3
How many production codes are there for episode number 45?
SELECT COUNT Prod. code FROM table WHERE No. = 45
Who wrote episode 6 in season 3?
SELECT Writer(s) FROM table WHERE # = 6
Which episodein season 3 had 175020 for a production code?
SELECT # FROM table WHERE Prod. code = 175020
How many production codes does the episode "keg! max!" have?
SELECT COUNT Prod. code FROM table WHERE Title = "Keg! Max!"
What was the original air date of "they shoot gilmores, don't they?"
SELECT Original air date FROM table WHERE Title = "They Shoot Gilmores, Don't They?"
Who wrote episode number 45?
SELECT Writer(s) FROM table WHERE No. = 45
Who directed the episode "hammers and veils"?
SELECT Director FROM table WHERE Title = "Hammers and Veils"
How many viewers in millions for episode number 38?
SELECT U.S. viewers (million) FROM table WHERE No. = 38
Who directed the episode with production code 227451?
SELECT Director FROM table WHERE Prod. code = 227451
What is the original air date for the episode directed by kevin dowling?
SELECT Original air date FROM table WHERE Director = Kevin Dowling
How many episodes are titled "like mother, like daughter"?
SELECT COUNT Original air date FROM table WHERE Title = "Like Mother, Like Daughter"
what is ba - running bear where b - bishop is rn - running stag?
SELECT BA - Running Bear FROM table WHERE B - Bishop = RN - Running Stag
what is b - bishop where ab - angry boar is vw - vertical wolf?
SELECT B - Bishop FROM table WHERE AB - Angry boar = VW - Vertical Wolf
what is ba - running bear where ab - angry boar is os - ox soldier?
SELECT BA - Running Bear FROM table WHERE AB - Angry boar = OS - Ox Soldier
what is b - bishop where bc - beast cadet is gr - great dove?
SELECT B - Bishop FROM table WHERE BC - Beast Cadet = GR - Great Dove
what is bb - blind bear where ba - running bear is mf - mountain falcon?
SELECT BB - Blind Bear FROM table WHERE BA - Running Bear = MF - Mountain Falcon
what is bb - blind bear where ba - running bear is tc - tile chariot?
SELECT BB - Blind Bear FROM table WHERE BA - Running Bear = TC - Tile Chariot
What is the minimum die size for an SM count of exactly 2?
SELECT MIN Die size (mm 2 ) FROM table WHERE SM count = 2
How many die sizes have a texture of exactly 34?
SELECT COUNT Die size (mm 2 ) FROM table WHERE Texture ( GT /s) = 34
What model has a launch of September 3, 2010?
SELECT Model FROM table WHERE Launch = September 3, 2010
What was the DRAM type of an SM Count of 6?
SELECT DRAM type FROM table WHERE SM count = 6
Who wrote the movie positioned at 8 on the list?
SELECT Writer(s) FROM table WHERE # = 8
What district does the road with a MDR number of 47 pass through?
SELECT Passes Through - District(s FROM table WHERE MDR No. = 47
What is the MDR number of Rait Charhi Dharamshala?
SELECT MIN MDR No. FROM table WHERE Name of Road = Rait Charhi Dharamshala
What is the Sr. number of Banikhet Dalhouse Khajiar?
SELECT MAX Sr. No. FROM table WHERE Name of Road = Banikhet Dalhouse Khajiar
What is the smallest number of runs?
SELECT MIN Runs FROM table
How many innings are there when the average is 32.3?
SELECT MIN Innings FROM table WHERE Average = 32.3
What was the average when the strike rate is 75.78?
SELECT Average FROM table WHERE Strike rate = 75.78
What is the catches maximum number?
SELECT MAX Catches FROM table
If the player is Hashan Tillakaratne, what is the catches minimum?
SELECT MIN Catches FROM table WHERE Player = Hashan Tillakaratne
what is the period if the player is Hashan Tillakaratne?
SELECT Period FROM table WHERE Player = Hashan Tillakaratne
What is the ranktotal number if the Hashan Tillakaratne?
SELECT COUNT Rank FROM table WHERE Player = Hashan Tillakaratne
If the catches is 131, what is the rank total number?
SELECT COUNT Rank FROM table WHERE Catches = 131
What was the maximum burglary statistics if the property crimes is 168630?
SELECT MAX Burglary FROM table WHERE Property Crimes = 168630
How many burglary crimes were committed if the forcible rapes were 1233?
SELECT Burglary FROM table WHERE Forcible rape = 1233
How many vehicle thefts data were recorded if forcible rape is 1232?
SELECT COUNT Vehicle Theft FROM table WHERE Forcible rape = 1232
How many vehicle theft data were recorded for a year with a population of 4465430?
SELECT COUNT Vehicle Theft FROM table WHERE Population = 4465430
What was the minimum property crimes stats if the burglary committed was 45350?
SELECT MIN Property Crimes FROM table WHERE Burglary = 45350
What was kumar sangakkara's average?
SELECT Average FROM table WHERE Player = Kumar Sangakkara
Who was the player with a 36.74 average?
SELECT Player FROM table WHERE Average = 36.74
What is the rank of the player with the 39.69 average?
SELECT Rank FROM table WHERE Average = 39.69
What is the lowest number of matches for a record holder?
SELECT MIN Matches FROM table
When theora is 2.3, how much is the h.264?
SELECT H.264 FROM table WHERE Theora = 2.3
When vp8 ( webm ) is 6.0, how much is the vp9 ( webm )?
SELECT VP9 ( WebM ) FROM table WHERE VP8 ( WebM ) = 6.0
When vp8 ( webm ) is 4.4, how much is vp9 ( webm )
SELECT VP9 ( WebM ) FROM table WHERE VP8 ( WebM ) = 4.4
What is the last stable version where the h.264 is 3.0 and vp9 (webm) is no.
SELECT Latest stable release FROM table WHERE VP9 ( WebM ) = No AND H.264 = 3.0
When h.264 is 9.0, how much is vp9 ( webm )
SELECT VP9 ( WebM ) FROM table WHERE H.264 = 9.0
Name the peletier for systematics being million 1
SELECT Peletier FROM table WHERE Systematics = Million 1
Name the si prefix for thousand chuquet
SELECT SI Prefix FROM table WHERE Chuquet = thousand
Name the base 10 for peletier for bi llion
SELECT Base 10 FROM table WHERE Peletier = Bi llion
Name the total number of peletier for shortscale comparison billion
SELECT COUNT Peletier FROM table WHERE Shortscale comparison = Billion
Name the base 10 for shortscale comparison for billion
SELECT Base 10 FROM table WHERE Shortscale comparison = Billion
What is the branding of the callsign DWBA-TV?
SELECT Branding FROM table WHERE Callsign = DWBA-TV
What is the station type of DWMC-TV?
SELECT Station Type FROM table WHERE Callsign = DWMC-TV