instruction
stringlengths 67
299
| input
stringlengths 88
550
| output
stringlengths 32
484
|
---|---|---|
Write a SQL query that answers the following question: How many stages were there where the winner and the points classification were Alberto Contador?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15294880_2 (stage VARCHAR, winner VARCHAR, points_classification VARCHAR)
|
SELECT COUNT(stage) FROM table_15294880_2 WHERE winner = "Alberto Contador" AND points_classification = "Alberto Contador"
|
Write a SQL query that answers the following question: When the winner was Alessandro Ballan, how many total team classifications were there?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15294880_2 (team_classification VARCHAR, winner VARCHAR)
|
SELECT COUNT(team_classification) FROM table_15294880_2 WHERE winner = "Alessandro Ballan"
|
Write a SQL query that answers the following question: When the team classification was quick step, what was the total number of general classifications?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15294880_2 (general_classification VARCHAR, team_classification VARCHAR)
|
SELECT COUNT(general_classification) FROM table_15294880_2 WHERE team_classification = "Quick Step"
|
Write a SQL query that answers the following question: Who won the spanish grand prix?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15299235_1 (grand_prix VARCHAR)
|
SELECT 250 AS cc_winner FROM table_15299235_1 WHERE grand_prix = "Spanish grand_prix"
|
Write a SQL query that answers the following question: What is the date for the Indianapolis circuit?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15299235_1 (date VARCHAR, circuit VARCHAR)
|
SELECT date FROM table_15299235_1 WHERE circuit = "Indianapolis"
|
Write a SQL query that answers the following question: in round 9 who was the 250cc winner?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15299235_1 (round VARCHAR)
|
SELECT 250 AS cc_winner FROM table_15299235_1 WHERE round = 9
|
Write a SQL query that answers the following question: If the velocity angle is ln[(1 + √5)/2] ≅ 0.481, what is the condition/parameter?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15314901_1 (condition_parameter VARCHAR, velocity_angle_η_in_i_radians VARCHAR)
|
SELECT condition_parameter FROM table_15314901_1 WHERE velocity_angle_η_in_i_radians = "ln[(1 + √5)/2] ≅ 0.481"
|
Write a SQL query that answers the following question: If the the condition/parameter is rapidity of 2 hyperbolic radians, what is the coordinate velocity v dx/dt in units of c?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15314901_1 (coordinate_velocity_v_dx_dt_in_units_of_c VARCHAR, condition_parameter VARCHAR)
|
SELECT coordinate_velocity_v_dx_dt_in_units_of_c FROM table_15314901_1 WHERE condition_parameter = "Rapidity of 2 hyperbolic radians"
|
Write a SQL query that answers the following question: If the coordinate velocity v dx/dt in units of c is (e 2 − 1)/(e 2 + 1) ≅ 0.761, what is the velocity angle η in i-radians?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15314901_1 (velocity_angle_η_in_i_radians VARCHAR, coordinate_velocity_v_dx_dt_in_units_of_c VARCHAR)
|
SELECT velocity_angle_η_in_i_radians FROM table_15314901_1 WHERE coordinate_velocity_v_dx_dt_in_units_of_c = "(e 2 − 1)/(e 2 + 1) ≅ 0.761"
|
Write a SQL query that answers the following question: What is the coordinate velocity v dx/dt in units of c total number if the velocity angle η in i-radians is ln[2 + √5] ≅ 1.444?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15314901_1 (coordinate_velocity_v_dx_dt_in_units_of_c VARCHAR, velocity_angle_η_in_i_radians VARCHAR)
|
SELECT COUNT(coordinate_velocity_v_dx_dt_in_units_of_c) FROM table_15314901_1 WHERE velocity_angle_η_in_i_radians = "ln[2 + √5] ≅ 1.444"
|
Write a SQL query that answers the following question: If the condition/parameter is rapidity of 1 hyperbolic radian, what is the proper velocity w dx/dτ in units of c?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15314901_1 (proper_velocity_w_dx_dτ_in_units_of_c VARCHAR, condition_parameter VARCHAR)
|
SELECT proper_velocity_w_dx_dτ_in_units_of_c FROM table_15314901_1 WHERE condition_parameter = "Rapidity of 1 hyperbolic radian"
|
Write a SQL query that answers the following question: What year is dayton in class AAAA?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15315103_1 (school_year VARCHAR, class_aAAA VARCHAR, Dayton VARCHAR)
|
SELECT school_year FROM table_15315103_1 WHERE class_aAAA = Dayton
|
Write a SQL query that answers the following question: Who is in class during 1995-96?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15315103_1 (class_aAAAA VARCHAR, school_year VARCHAR)
|
SELECT class_aAAAA FROM table_15315103_1 WHERE school_year = "1995-96"
|
Write a SQL query that answers the following question: When are all years that tournament location is Western Turnpike Golf Course?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15315816_1 (year VARCHAR, tournament_location VARCHAR)
|
SELECT year FROM table_15315816_1 WHERE tournament_location = "Western Turnpike Golf Course"
|
Write a SQL query that answers the following question: When are all years that the champion is Ji Min Jeong?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15315816_1 (year VARCHAR, champion VARCHAR)
|
SELECT year FROM table_15315816_1 WHERE champion = "Ji Min Jeong"
|
Write a SQL query that answers the following question: How much are all winners share ($) in the year 2004?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15315816_1 (winners_share__$_ VARCHAR, year VARCHAR)
|
SELECT winners_share__$_ FROM table_15315816_1 WHERE year = "2004"
|
Write a SQL query that answers the following question: When are all dates in the year 2006?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15315816_1 (dates VARCHAR, year VARCHAR)
|
SELECT COUNT(dates) FROM table_15315816_1 WHERE year = "2006"
|
Write a SQL query that answers the following question: When are all dates with a score of 205 (–8) in Australia?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15315816_1 (dates VARCHAR, score VARCHAR, country VARCHAR)
|
SELECT dates FROM table_15315816_1 WHERE score = "205 (–8)" AND country = "Australia"
|
Write a SQL query that answers the following question: What are all of the dates in the country of Canada?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15315816_1 (dates VARCHAR, country VARCHAR)
|
SELECT dates FROM table_15315816_1 WHERE country = "Canada"
|
Write a SQL query that answers the following question: When was Jenny Gleason the champion of the Northeast Delta Dental International?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15315276_1 (dates VARCHAR, champion VARCHAR)
|
SELECT dates FROM table_15315276_1 WHERE champion = "Jenny Gleason"
|
Write a SQL query that answers the following question: Where was the tournament located when Misun Cho won the championship?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15315276_1 (tournament_location VARCHAR, champion VARCHAR)
|
SELECT tournament_location FROM table_15315276_1 WHERE champion = "Misun Cho"
|
Write a SQL query that answers the following question: What is the maximum purse prize of the Northeast Delta Dental International Championship?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15315276_1 (purse__ INTEGER)
|
SELECT MAX(purse__) AS $_ FROM table_15315276_1
|
Write a SQL query that answers the following question: How many prizes were available when Jenny Shin became the champion?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15315276_1 (purse__ VARCHAR, champion VARCHAR)
|
SELECT COUNT(purse__) AS $_ FROM table_15315276_1 WHERE champion = "Jenny Shin"
|
Write a SQL query that answers the following question: Which team had 21 points?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15318779_1 (team VARCHAR, points VARCHAR)
|
SELECT team FROM table_15318779_1 WHERE points = 21
|
Write a SQL query that answers the following question: How many games did Palmeiras win?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15318779_1 (won INTEGER, team VARCHAR)
|
SELECT MAX(won) FROM table_15318779_1 WHERE team = "Palmeiras"
|
Write a SQL query that answers the following question: Name the number of lost for against being 46
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15319684_1 (lost VARCHAR, against VARCHAR)
|
SELECT COUNT(lost) FROM table_15319684_1 WHERE against = 46
|
Write a SQL query that answers the following question: Name the number of against for portuguesa santista
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15319684_1 (against VARCHAR, team VARCHAR)
|
SELECT COUNT(against) FROM table_15319684_1 WHERE team = "Portuguesa Santista"
|
Write a SQL query that answers the following question: Name the won for difference being 33
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15319684_1 (won VARCHAR, difference VARCHAR)
|
SELECT won FROM table_15319684_1 WHERE difference = "33"
|
Write a SQL query that answers the following question: Name the most losst for corinthians
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15319684_1 (lost INTEGER, team VARCHAR)
|
SELECT MIN(lost) FROM table_15319684_1 WHERE team = "Corinthians"
|
Write a SQL query that answers the following question: How many values of r z (arcsecond) correspond with a r y (arcsecond) value of −0.247?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15318324_1 (r_z___arcsecond__ VARCHAR, r_y___arcsecond__ VARCHAR)
|
SELECT r_z___arcsecond__ FROM table_15318324_1 WHERE r_y___arcsecond__ = "−0.247"
|
Write a SQL query that answers the following question: How many values of r z(arcsecond) are associated with a target datum of Ireland 1965?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15318324_1 (r_z___arcsecond__ VARCHAR, target_datum VARCHAR)
|
SELECT r_z___arcsecond__ FROM table_15318324_1 WHERE target_datum = "Ireland 1965"
|
Write a SQL query that answers the following question: What is the muslim percentage of the 49634 population of england and wales 000?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_1532779_1 (muslim___percentage_of_total_population_ VARCHAR, population_of_england_and_wales_000 VARCHAR)
|
SELECT muslim___percentage_of_total_population_ FROM table_1532779_1 WHERE population_of_england_and_wales_000 = 49634
|
Write a SQL query that answers the following question: What is the most recent census year?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_1532779_1 (census_year INTEGER)
|
SELECT MAX(census_year) FROM table_1532779_1
|
Write a SQL query that answers the following question: What was the percentage of muslims during a time where there were 614 registered mosques?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_1532779_1 (muslim___percentage_of_total_population_ VARCHAR, registered_mosques VARCHAR)
|
SELECT muslim___percentage_of_total_population_ FROM table_1532779_1 WHERE registered_mosques = 614
|
Write a SQL query that answers the following question: Name the most pa for ontario
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15333005_1 (pa INTEGER, locale VARCHAR, Ontario VARCHAR)
|
SELECT MAX(pa) FROM table_15333005_1 WHERE locale = Ontario
|
Write a SQL query that answers the following question: Name the ends lost for 67 pa
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15333005_1 (Ends VARCHAR, pa VARCHAR)
|
SELECT Ends AS lost FROM table_15333005_1 WHERE pa = 67
|
Write a SQL query that answers the following question: Name the number ends won when L is 4 and stolen ends is 17
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15333005_1 (Ends VARCHAR, l VARCHAR, stolen_ends VARCHAR)
|
SELECT COUNT(Ends) AS won FROM table_15333005_1 WHERE l = 4 AND stolen_ends = 17
|
Write a SQL query that answers the following question: What day was Jeld-Wen Tradition held?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15346009_1 (date VARCHAR, tournament VARCHAR)
|
SELECT date FROM table_15346009_1 WHERE tournament = "JELD-WEN Tradition"
|
Write a SQL query that answers the following question: What day did Bernhard Langer (2) win?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15346009_1 (date VARCHAR, winner VARCHAR)
|
SELECT date FROM table_15346009_1 WHERE winner = "Bernhard Langer (2)"
|
Write a SQL query that answers the following question: On what day was the tournament in Alabama?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15346009_1 (date VARCHAR, location VARCHAR)
|
SELECT date FROM table_15346009_1 WHERE location = "Alabama"
|
Write a SQL query that answers the following question: What was the value of 1st prize when the score was 271 (-9)?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15346009_1 (score VARCHAR)
|
SELECT 1 AS st_prize__$__ FROM table_15346009_1 WHERE score = "271 (-9)"
|
Write a SQL query that answers the following question: What day was the score 200 (-16)?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15346009_1 (date VARCHAR, score VARCHAR)
|
SELECT date FROM table_15346009_1 WHERE score = "200 (-16)"
|
Write a SQL query that answers the following question: Where was Outback Steakhouse Pro-AM held?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15346009_1 (location VARCHAR, tournament VARCHAR)
|
SELECT location FROM table_15346009_1 WHERE tournament = "Outback Steakhouse Pro-Am"
|
Write a SQL query that answers the following question: Which dates of polls occur in the Mizoram state?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15329030_1 (date_of_polls VARCHAR, state VARCHAR)
|
SELECT date_of_polls FROM table_15329030_1 WHERE state = "Mizoram"
|
Write a SQL query that answers the following question: How many dates of polls occur in the Madhya Pradesh state?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15329030_1 (date_of_polls VARCHAR, state VARCHAR)
|
SELECT COUNT(date_of_polls) FROM table_15329030_1 WHERE state = "Madhya Pradesh"
|
Write a SQL query that answers the following question: How many under the category of Against have a Difference of 11
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15352382_1 (against VARCHAR, difference VARCHAR)
|
SELECT COUNT(against) FROM table_15352382_1 WHERE difference = 11
|
Write a SQL query that answers the following question: if Against is 20 how much is Won?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15352382_1 (won VARCHAR, against VARCHAR)
|
SELECT won FROM table_15352382_1 WHERE against = 20
|
Write a SQL query that answers the following question: How many Drawn does the team Portuguesa Santista have?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15352382_1 (drawn VARCHAR, team VARCHAR)
|
SELECT drawn FROM table_15352382_1 WHERE team = "Portuguesa Santista"
|
Write a SQL query that answers the following question: How many drawn does the team Corinthians have?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15352382_1 (drawn VARCHAR, team VARCHAR)
|
SELECT drawn FROM table_15352382_1 WHERE team = "Corinthians"
|
Write a SQL query that answers the following question: What is the highest number won with a difference of 1?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15331868_1 (won INTEGER, difference VARCHAR)
|
SELECT MAX(won) FROM table_15331868_1 WHERE difference = "1"
|
Write a SQL query that answers the following question: What the highest position when there is 28 against?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15331868_1 (position INTEGER, against VARCHAR)
|
SELECT MAX(position) FROM table_15331868_1 WHERE against = 28
|
Write a SQL query that answers the following question: What is the highest number won when the number of points is 31?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15331868_1 (won INTEGER, points VARCHAR)
|
SELECT MAX(won) FROM table_15331868_1 WHERE points = 31
|
Write a SQL query that answers the following question: What is the smalledt position when the difference was 6?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15331868_1 (position INTEGER, difference VARCHAR)
|
SELECT MIN(position) FROM table_15331868_1 WHERE difference = "6"
|
Write a SQL query that answers the following question: How many were the show's average weekly ranking when it reached No. 2 in average nightly ranking?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15358729_6 (average_weekly_rank VARCHAR, average_nightly_rank VARCHAR)
|
SELECT COUNT(average_weekly_rank) FROM table_15358729_6 WHERE average_nightly_rank = "No. 2"
|
Write a SQL query that answers the following question: What is the show's time slot during season 3?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15358729_6 (timeslot VARCHAR, season VARCHAR)
|
SELECT timeslot FROM table_15358729_6 WHERE season = 3
|
Write a SQL query that answers the following question: Name all of the february
|
The relevant table was constructed using the following SQL : CREATE TABLE table_1539201_1 (february VARCHAR)
|
SELECT february FROM table_1539201_1
|
Write a SQL query that answers the following question: Name the junes
|
The relevant table was constructed using the following SQL : CREATE TABLE table_1539201_1 (june VARCHAR)
|
SELECT june FROM table_1539201_1
|
Write a SQL query that answers the following question: Name the julys
|
The relevant table was constructed using the following SQL : CREATE TABLE table_1539201_1 (july VARCHAR)
|
SELECT july FROM table_1539201_1
|
Write a SQL query that answers the following question: Name the number of februaries
|
The relevant table was constructed using the following SQL : CREATE TABLE table_1539201_1 (february VARCHAR)
|
SELECT COUNT(february) FROM table_1539201_1
|
Write a SQL query that answers the following question: How many points are listed when the position is 2?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15405904_1 (points INTEGER, position VARCHAR)
|
SELECT MAX(points) FROM table_15405904_1 WHERE position = 2
|
Write a SQL query that answers the following question: When there is a lost of 2 what is the mumber drawn?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15405904_1 (drawn INTEGER, lost VARCHAR)
|
SELECT MAX(drawn) FROM table_15405904_1 WHERE lost = 2
|
Write a SQL query that answers the following question: How many games are played?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15405904_1 (played INTEGER)
|
SELECT MIN(played) FROM table_15405904_1
|
Write a SQL query that answers the following question: When the position is 2 what is the number lost?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15405904_1 (lost INTEGER, position VARCHAR)
|
SELECT MIN(lost) FROM table_15405904_1 WHERE position = 2
|
Write a SQL query that answers the following question: When the team is ypiranga-sp what is the number of won games?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15405904_1 (won INTEGER, team VARCHAR)
|
SELECT MIN(won) FROM table_15405904_1 WHERE team = "Ypiranga-SP"
|
Write a SQL query that answers the following question: Name the difference for when drawn is larger than 2.0
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15400878_1 (difference VARCHAR, drawn INTEGER)
|
SELECT difference FROM table_15400878_1 WHERE drawn > 2.0
|
Write a SQL query that answers the following question: Name the most against for minas gerais
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15400878_1 (against INTEGER, team VARCHAR)
|
SELECT MAX(against) FROM table_15400878_1 WHERE team = "Minas Gerais"
|
Write a SQL query that answers the following question: What is the LMS class of trains with numbers 14510-5?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15412381_5 (LMS VARCHAR, lms_nos VARCHAR)
|
SELECT LMS AS class FROM table_15412381_5 WHERE lms_nos = "14510-5"
|
Write a SQL query that answers the following question: What is the date of the 279 wheels?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15412381_5 (date VARCHAR, wheels VARCHAR)
|
SELECT date FROM table_15412381_5 WHERE wheels = 279
|
Write a SQL query that answers the following question: What is the LMS number of the trains built by G&SWR Kilmarnock?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15412381_5 (lms_nos VARCHAR, builder VARCHAR)
|
SELECT lms_nos FROM table_15412381_5 WHERE builder = "G&SWR Kilmarnock"
|
Write a SQL query that answers the following question: How many figures are there for wheels for LMS numbers 16377-9?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15412381_5 (wheels VARCHAR, lms_nos VARCHAR)
|
SELECT COUNT(wheels) FROM table_15412381_5 WHERE lms_nos = "16377-9"
|
Write a SQL query that answers the following question: What is the maximum number for the Saffir-Simpson category in the Carvill Hurricane Index?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15416002_1 (saffir_simpson_category INTEGER)
|
SELECT MAX(saffir_simpson_category) FROM table_15416002_1
|
Write a SQL query that answers the following question: What is the maximum miles per hour recorded when the CHI (Carvill Hurricane Index) is equal to 13.5
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15416002_1 (v_mph_ INTEGER, chi VARCHAR)
|
SELECT MAX(v_mph_) FROM table_15416002_1 WHERE chi = "13.5"
|
Write a SQL query that answers the following question: What is the CHI (Carvill Hurricane Index) when the NHC advisory number is equal to 49b?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15416002_1 (chi VARCHAR, nhc_advisory_number VARCHAR)
|
SELECT chi FROM table_15416002_1 WHERE nhc_advisory_number = "49B"
|
Write a SQL query that answers the following question: What is the maximum number of miles reached in a Texas landfall when the Saffir-Simpson category is smaller than 3.0?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15416002_1 (r_miles_ INTEGER, landfall VARCHAR, saffir_simpson_category VARCHAR)
|
SELECT MAX(r_miles_) FROM table_15416002_1 WHERE landfall = "Texas" AND saffir_simpson_category < 3.0
|
Write a SQL query that answers the following question: What are the miles when the Carvill Hurricane Index (CHI) is equal to 9.9?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15416002_1 (r_miles_ VARCHAR, chi VARCHAR)
|
SELECT r_miles_ FROM table_15416002_1 WHERE chi = "9.9"
|
Write a SQL query that answers the following question: What is the Saffir-Simpson category for the hurricane named Bonnie?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15416002_1 (saffir_simpson_category VARCHAR, name VARCHAR)
|
SELECT saffir_simpson_category FROM table_15416002_1 WHERE name = "Bonnie"
|
Write a SQL query that answers the following question: What kind of animal corresponds to the accession number xp_852505.1?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15417439_1 (common_name VARCHAR, accession_number VARCHAR)
|
SELECT common_name FROM table_15417439_1 WHERE accession_number = "XP_852505.1"
|
Write a SQL query that answers the following question: How similar is the genus/species sus scrofa?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15417439_1 (similarity VARCHAR, genus_species VARCHAR)
|
SELECT similarity FROM table_15417439_1 WHERE genus_species = "Sus scrofa"
|
Write a SQL query that answers the following question: What identities do the genus/species arabidopsis thaliana have?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15417439_1 (identity VARCHAR, genus_species VARCHAR)
|
SELECT identity FROM table_15417439_1 WHERE genus_species = "Arabidopsis thaliana"
|
Write a SQL query that answers the following question: What's the animals name when the genus/species is rattus norvegicus?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15417439_1 (common_name VARCHAR, genus_species VARCHAR)
|
SELECT common_name FROM table_15417439_1 WHERE genus_species = "Rattus norvegicus"
|
Write a SQL query that answers the following question: For the genus/species arabidopsis thaliana, what are the lengths?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15417439_1 (length VARCHAR, genus_species VARCHAR)
|
SELECT length FROM table_15417439_1 WHERE genus_species = "Arabidopsis thaliana"
|
Write a SQL query that answers the following question: How many original air dates were there for episode 17?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15430813_1 (original_air_date VARCHAR, no_in_season VARCHAR)
|
SELECT COUNT(original_air_date) FROM table_15430813_1 WHERE no_in_season = 17
|
Write a SQL query that answers the following question: Which company was based in London, United Kingdom?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15438337_1 (institution VARCHAR, country VARCHAR)
|
SELECT institution FROM table_15438337_1 WHERE country = "London, United Kingdom"
|
Write a SQL query that answers the following question: What was the original air date of Stargate SG-1 written by Peter Deluise?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15431959_1 (original_air_date VARCHAR, written_by VARCHAR)
|
SELECT original_air_date FROM table_15431959_1 WHERE written_by = "Peter DeLuise"
|
Write a SQL query that answers the following question: How many seasons did Peter Deluise direct Stargate SG-1?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15431959_1 (no_in_season INTEGER, directed_by VARCHAR)
|
SELECT MAX(no_in_season) FROM table_15431959_1 WHERE directed_by = "Peter DeLuise"
|
Write a SQL query that answers the following question: Name the fifth district for william womer
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15442974_1 (fifth_district VARCHAR, third_district VARCHAR)
|
SELECT fifth_district FROM table_15442974_1 WHERE third_district = "William Womer"
|
Write a SQL query that answers the following question: Name the third district for christine young
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15442974_1 (third_district VARCHAR, fifth_district VARCHAR)
|
SELECT third_district FROM table_15442974_1 WHERE fifth_district = "Christine Young"
|
Write a SQL query that answers the following question: Name the fourth district for joan runnels
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15442974_1 (fourth_district VARCHAR, second_district VARCHAR)
|
SELECT fourth_district FROM table_15442974_1 WHERE second_district = "Joan Runnels"
|
Write a SQL query that answers the following question: Name the fourth district for beverly bodem
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15442974_1 (fourth_district VARCHAR, first_district VARCHAR)
|
SELECT fourth_district FROM table_15442974_1 WHERE first_district = "Beverly Bodem"
|
Write a SQL query that answers the following question: Name the number for fifth district for richard houskamp
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15442974_1 (fifth_district VARCHAR, third_district VARCHAR)
|
SELECT COUNT(fifth_district) FROM table_15442974_1 WHERE third_district = "Richard Houskamp"
|
Write a SQL query that answers the following question: Name the fifth district for steve rudoni
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15442974_1 (fifth_district VARCHAR, fourth_district VARCHAR)
|
SELECT fifth_district FROM table_15442974_1 WHERE fourth_district = "Steve Rudoni"
|
Write a SQL query that answers the following question: What was the location when the stolen ends is 12 and shot pct is 77%?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_1543845_63 (locale VARCHAR, stolen_ends VARCHAR, shot_pct VARCHAR)
|
SELECT locale FROM table_1543845_63 WHERE stolen_ends = 12 AND shot_pct = "77%"
|
Write a SQL query that answers the following question: How many stolen ends were there when the locale was Sweden?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_1543845_63 (stolen_ends VARCHAR, locale VARCHAR, Sweden VARCHAR)
|
SELECT stolen_ends FROM table_1543845_63 WHERE locale = Sweden
|
Write a SQL query that answers the following question: What was the school/club team whose season was in 2012 and were acquired via trade?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15463188_17 (school_club_team VARCHAR, season VARCHAR, acquisition_via VARCHAR)
|
SELECT school_club_team FROM table_15463188_17 WHERE season = "2012" AND acquisition_via = "Trade"
|
Write a SQL query that answers the following question: Which school/club team has a player named Mark Sanford?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15463188_17 (school_club_team VARCHAR, name VARCHAR)
|
SELECT school_club_team FROM table_15463188_17 WHERE name = "Mark Sanford"
|
Write a SQL query that answers the following question: How many school/club teams have a player named Manuel Luis Quezon?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15463188_17 (number VARCHAR, school_club_team VARCHAR)
|
SELECT COUNT(number) FROM table_15463188_17 WHERE school_club_team = "Manuel Luis Quezon"
|
Write a SQL query that answers the following question: How many players are listed for the school/club team Washington?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15463188_17 (name VARCHAR, school_club_team VARCHAR)
|
SELECT COUNT(name) FROM table_15463188_17 WHERE school_club_team = "Washington"
|
Write a SQL query that answers the following question: How many players with a position are listed for the 2009 season?
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15463188_17 (position VARCHAR, season VARCHAR)
|
SELECT COUNT(position) FROM table_15463188_17 WHERE season = "2009"
|
Write a SQL query that answers the following question: Name the school/club for guard
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15463188_1 (school_club_team VARCHAR, position VARCHAR)
|
SELECT school_club_team FROM table_15463188_1 WHERE position = "Guard"
|
Write a SQL query that answers the following question: Name the position for judy-ann ramirez
|
The relevant table was constructed using the following SQL : CREATE TABLE table_15463188_1 (position VARCHAR, name VARCHAR)
|
SELECT position FROM table_15463188_1 WHERE name = "judy-ann ramirez"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.