instruction
stringlengths
67
299
input
stringlengths
88
550
output
stringlengths
32
484
Write a SQL query that answers the following question: What is every entry for Proto-Italo-Western 1 when door is English?
The relevant table was constructed using the following SQL : CREATE TABLE table_25401_15 (proto_italo_western_1 VARCHAR, english VARCHAR)
SELECT proto_italo_western_1 FROM table_25401_15 WHERE english = "door"
Write a SQL query that answers the following question: How many entries for Italian correspond to the Conservative Central Italian of Unu?
The relevant table was constructed using the following SQL : CREATE TABLE table_25401_15 (italian VARCHAR, conservative_central_italian_1 VARCHAR)
SELECT COUNT(italian) FROM table_25401_15 WHERE conservative_central_italian_1 = "unu"
Write a SQL query that answers the following question: What is every entry for Latin when Catalan is Mar?
The relevant table was constructed using the following SQL : CREATE TABLE table_25401_15 (latin VARCHAR, catalan VARCHAR)
SELECT latin FROM table_25401_15 WHERE catalan = "mar"
Write a SQL query that answers the following question: If the stadium name is the Thuwunna Stadium, what is the date?
The relevant table was constructed using the following SQL : CREATE TABLE table_25428629_1 (date VARCHAR, stadium VARCHAR)
SELECT date FROM table_25428629_1 WHERE stadium = "Thuwunna stadium"
Write a SQL query that answers the following question: If the location is Yangon, Myanmar, what is the opponent total number?
The relevant table was constructed using the following SQL : CREATE TABLE table_25428629_1 (opponent VARCHAR, location VARCHAR)
SELECT COUNT(opponent) FROM table_25428629_1 WHERE location = "Yangon, Myanmar"
Write a SQL query that answers the following question: How many provinces are named 青海省 qīnghǎi shěng?
The relevant table was constructed using the following SQL : CREATE TABLE table_254234_1 (iso_ VARCHAR, chinese_name VARCHAR)
SELECT COUNT(iso_) AS № FROM table_254234_1 WHERE chinese_name = "青海省 Qīnghǎi Shěng"
Write a SQL query that answers the following question: What is the area of the province with a density of 533.59?
The relevant table was constructed using the following SQL : CREATE TABLE table_254234_1 (area³ INTEGER, density² VARCHAR)
SELECT MAX(area³) FROM table_254234_1 WHERE density² = "533.59"
Write a SQL query that answers the following question: How many provinces have a density of 165.81?
The relevant table was constructed using the following SQL : CREATE TABLE table_254234_1 (iso_ VARCHAR, density² VARCHAR)
SELECT COUNT(iso_) AS № FROM table_254234_1 WHERE density² = "165.81"
Write a SQL query that answers the following question: What is the abbreviation/symbol of 辽宁省 liáoníng shěng?
The relevant table was constructed using the following SQL : CREATE TABLE table_254234_1 (abbreviation_symbol VARCHAR, chinese_name VARCHAR)
SELECT abbreviation_symbol FROM table_254234_1 WHERE chinese_name = "辽宁省 Liáoníng Shěng"
Write a SQL query that answers the following question: How many gb's have an iso number of cn-65?
The relevant table was constructed using the following SQL : CREATE TABLE table_254234_1 (gb VARCHAR, iso_№ VARCHAR)
SELECT COUNT(gb) FROM table_254234_1 WHERE iso_№ = "CN-65"
Write a SQL query that answers the following question: What is the chinese name of the province whose capital is hangzhou?
The relevant table was constructed using the following SQL : CREATE TABLE table_254234_1 (chinese_name VARCHAR, capital VARCHAR)
SELECT chinese_name FROM table_254234_1 WHERE capital = "Hangzhou"
Write a SQL query that answers the following question: What is the fewest amount of races in any season?
The relevant table was constructed using the following SQL : CREATE TABLE table_25421463_1 (races INTEGER)
SELECT MIN(races) FROM table_25421463_1
Write a SQL query that answers the following question: How many races were there when Sigachev had 38 points?
The relevant table was constructed using the following SQL : CREATE TABLE table_25421463_1 (races INTEGER, points VARCHAR)
SELECT MIN(races) FROM table_25421463_1 WHERE points = "38"
Write a SQL query that answers the following question: What team was Sigachev on when he had 38 points?
The relevant table was constructed using the following SQL : CREATE TABLE table_25421463_1 (team_name VARCHAR, points VARCHAR)
SELECT team_name FROM table_25421463_1 WHERE points = "38"
Write a SQL query that answers the following question: In what season was the final placing NC† and the team SL Formula Racing?
The relevant table was constructed using the following SQL : CREATE TABLE table_25421463_1 (season VARCHAR, final_placing VARCHAR, team_name VARCHAR)
SELECT season FROM table_25421463_1 WHERE final_placing = "NC†" AND team_name = "SL Formula Racing"
Write a SQL query that answers the following question: what is distance for the 7th position?
The relevant table was constructed using the following SQL : CREATE TABLE table_25429986_1 (distance VARCHAR, position VARCHAR)
SELECT COUNT(distance) FROM table_25429986_1 WHERE position = "7th"
Write a SQL query that answers the following question: who isthe jockey in 10th position?
The relevant table was constructed using the following SQL : CREATE TABLE table_25429986_1 (jockey VARCHAR, position VARCHAR)
SELECT jockey FROM table_25429986_1 WHERE position = "10th"
Write a SQL query that answers the following question: what position is number 22?
The relevant table was constructed using the following SQL : CREATE TABLE table_25429986_1 (position VARCHAR, number VARCHAR)
SELECT position FROM table_25429986_1 WHERE number = 22
Write a SQL query that answers the following question: what horse is in the 6th position?
The relevant table was constructed using the following SQL : CREATE TABLE table_25429986_1 (horse VARCHAR, position VARCHAR)
SELECT horse FROM table_25429986_1 WHERE position = "6th"
Write a SQL query that answers the following question: what position has a handicap of 10-2?
The relevant table was constructed using the following SQL : CREATE TABLE table_25429986_1 (position VARCHAR, handicap VARCHAR)
SELECT position FROM table_25429986_1 WHERE handicap = "10-2"
Write a SQL query that answers the following question: what is the handicap where the distance is 9 lengths?
The relevant table was constructed using the following SQL : CREATE TABLE table_25429986_1 (handicap VARCHAR, distance VARCHAR)
SELECT handicap FROM table_25429986_1 WHERE distance = "9 lengths"
Write a SQL query that answers the following question: Which series occurred when the 7800 was 5040.00?
The relevant table was constructed using the following SQL : CREATE TABLE table_2544694_3 (indonesia_super_series_2008 VARCHAR)
SELECT indonesia_super_series_2008 FROM table_2544694_3 WHERE 780000 = "5040.00"
Write a SQL query that answers the following question: Which series occurred in which the semi-finalist was runner-up and the 7800.00 was 6420.00?
The relevant table was constructed using the following SQL : CREATE TABLE table_2544694_3 (indonesia_super_series_2008 VARCHAR, runner_up VARCHAR)
SELECT indonesia_super_series_2008 FROM table_2544694_3 WHERE runner_up = "Semi-Finalist" AND 780000 = "6420.00"
Write a SQL query that answers the following question: What road is associated with Carson Valley county?
The relevant table was constructed using the following SQL : CREATE TABLE table_25438110_5 (road VARCHAR, county VARCHAR)
SELECT road FROM table_25438110_5 WHERE county = "Carson Valley"
Write a SQL query that answers the following question: What county has exactly 17 casinos?
The relevant table was constructed using the following SQL : CREATE TABLE table_25438110_5 (county VARCHAR, casinos VARCHAR)
SELECT county FROM table_25438110_5 WHERE casinos = 17
Write a SQL query that answers the following question: How many casinos are associated with a FY2009 $mil value of exactly $279?
The relevant table was constructed using the following SQL : CREATE TABLE table_25438110_5 (casinos VARCHAR, fy09_$millions VARCHAR)
SELECT COUNT(casinos) FROM table_25438110_5 WHERE fy09_$millions = "$279"
Write a SQL query that answers the following question: What is the FY2008 $mil value associated with a FY2007 $mil value of exactly $120?
The relevant table was constructed using the following SQL : CREATE TABLE table_25438110_5 (fy08_$millions VARCHAR, fy07_$millions VARCHAR)
SELECT fy08_$millions FROM table_25438110_5 WHERE fy07_$millions = "$120"
Write a SQL query that answers the following question: What country was Danissa Zurek from?
The relevant table was constructed using the following SQL : CREATE TABLE table_25461827_2 (country VARCHAR, contestant VARCHAR)
SELECT country FROM table_25461827_2 WHERE contestant = "Danissa Zurek"
Write a SQL query that answers the following question: What is the smallest height associated with Honduras?
The relevant table was constructed using the following SQL : CREATE TABLE table_25461827_2 (height__cm_ INTEGER, country VARCHAR)
SELECT MIN(height__cm_) FROM table_25461827_2 WHERE country = "Honduras"
Write a SQL query that answers the following question: What is the height associated with Paraguay?
The relevant table was constructed using the following SQL : CREATE TABLE table_25461827_2 (height__ft_ VARCHAR, country VARCHAR)
SELECT height__ft_ FROM table_25461827_2 WHERE country = "Paraguay"
Write a SQL query that answers the following question: What is the number of contestants who are aged exactly 18?
The relevant table was constructed using the following SQL : CREATE TABLE table_25461827_2 (contestant VARCHAR, age VARCHAR)
SELECT COUNT(contestant) FROM table_25461827_2 WHERE age = 18
Write a SQL query that answers the following question: Who scored the most points on November 17?
The relevant table was constructed using the following SQL : CREATE TABLE table_25461946_5 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_25461946_5 WHERE date = "November 17"
Write a SQL query that answers the following question: What was the final score when the Temple Owls beat Virginia Tech?
The relevant table was constructed using the following SQL : CREATE TABLE table_25461946_5 (score VARCHAR, team VARCHAR)
SELECT score FROM table_25461946_5 WHERE team = "Virginia Tech"
Write a SQL query that answers the following question: How many games were played on november 27?
The relevant table was constructed using the following SQL : CREATE TABLE table_25461946_5 (record VARCHAR, date VARCHAR)
SELECT COUNT(record) FROM table_25461946_5 WHERE date = "November 27"
Write a SQL query that answers the following question: Who got the pole position if the supporting is USAC National Midget Series?
The relevant table was constructed using the following SQL : CREATE TABLE table_25459168_2 (pole_position VARCHAR, supporting VARCHAR)
SELECT pole_position FROM table_25459168_2 WHERE supporting = "USAC National Midget Series"
Write a SQL query that answers the following question: Who won the fastest lap if Anders Krohn won the pole position?
The relevant table was constructed using the following SQL : CREATE TABLE table_25459168_2 (fastest_lap VARCHAR, pole_position VARCHAR)
SELECT fastest_lap FROM table_25459168_2 WHERE pole_position = "Anders Krohn"
Write a SQL query that answers the following question: How many rounds did João Victor Horto achieved the fastest lap?
The relevant table was constructed using the following SQL : CREATE TABLE table_25459168_2 (round VARCHAR, fastest_lap VARCHAR)
SELECT COUNT(round) FROM table_25459168_2 WHERE fastest_lap = "João Victor Horto"
Write a SQL query that answers the following question: What circuit was used on August 21?
The relevant table was constructed using the following SQL : CREATE TABLE table_25459168_2 (circuit VARCHAR, date VARCHAR)
SELECT circuit FROM table_25459168_2 WHERE date = "August 21"
Write a SQL query that answers the following question: How many rounds did Alex Ardoin achieved a fastest lap?
The relevant table was constructed using the following SQL : CREATE TABLE table_25459168_2 (round VARCHAR, fastest_lap VARCHAR)
SELECT COUNT(round) FROM table_25459168_2 WHERE fastest_lap = "Alex Ardoin"
Write a SQL query that answers the following question: What is the design when quantity is 5,000,000?
The relevant table was constructed using the following SQL : CREATE TABLE table_25468520_1 (design VARCHAR, quantity VARCHAR)
SELECT design FROM table_25468520_1 WHERE quantity = "5,000,000"
Write a SQL query that answers the following question: How many time is the theme rotary international : 100 years in canada?
The relevant table was constructed using the following SQL : CREATE TABLE table_25468520_1 (printing_process VARCHAR, theme VARCHAR)
SELECT COUNT(printing_process) FROM table_25468520_1 WHERE theme = "Rotary International : 100 Years in Canada"
Write a SQL query that answers the following question: What is the paper type for the date of issue July 8?
The relevant table was constructed using the following SQL : CREATE TABLE table_25468520_1 (paper_type VARCHAR, date_of_issue VARCHAR)
SELECT paper_type FROM table_25468520_1 WHERE date_of_issue = "July 8"
Write a SQL query that answers the following question: What is the theme when the printing process is litho in 3 cols and intaglio?
The relevant table was constructed using the following SQL : CREATE TABLE table_25468520_1 (theme VARCHAR, printing_process VARCHAR)
SELECT theme FROM table_25468520_1 WHERE printing_process = "Litho in 3 cols and intaglio"
Write a SQL query that answers the following question: How many times is the theme roadside attractions: wawa goose?
The relevant table was constructed using the following SQL : CREATE TABLE table_25468520_1 (quantity VARCHAR, theme VARCHAR)
SELECT COUNT(quantity) FROM table_25468520_1 WHERE theme = "Roadside Attractions: Wawa Goose"
Write a SQL query that answers the following question: What is the theme when the date of issue is 11 january 2010?
The relevant table was constructed using the following SQL : CREATE TABLE table_25468520_1 (theme VARCHAR, date_of_issue VARCHAR)
SELECT theme FROM table_25468520_1 WHERE date_of_issue = "11 January 2010"
Write a SQL query that answers the following question: When did they play Dayton?
The relevant table was constructed using the following SQL : CREATE TABLE table_25461946_8 (date VARCHAR, team VARCHAR)
SELECT date FROM table_25461946_8 WHERE team = "Dayton"
Write a SQL query that answers the following question: What is the platform of Geworkbench?
The relevant table was constructed using the following SQL : CREATE TABLE table_25474825_1 (platform VARCHAR, software VARCHAR)
SELECT platform FROM table_25474825_1 WHERE software = "GeWorkbench"
Write a SQL query that answers the following question: What is the description of the license for GNU GPL v2 or Ruby license?
The relevant table was constructed using the following SQL : CREATE TABLE table_25474825_1 (description VARCHAR, license VARCHAR)
SELECT description FROM table_25474825_1 WHERE license = "GNU GPL v2 or Ruby license"
Write a SQL query that answers the following question: What is the license that is described as a tool for designing and executing workflows?
The relevant table was constructed using the following SQL : CREATE TABLE table_25474825_1 (license VARCHAR, description VARCHAR)
SELECT license FROM table_25474825_1 WHERE description = "Tool for designing and executing workflows"
Write a SQL query that answers the following question: What is the description of the intact software?
The relevant table was constructed using the following SQL : CREATE TABLE table_25474825_1 (description VARCHAR, software VARCHAR)
SELECT description FROM table_25474825_1 WHERE software = "IntAct"
Write a SQL query that answers the following question: What user had a max demand charge of 1,100 and a unit/time range of h-2: off-peak (22:30-05:30)?
The relevant table was constructed using the following SQL : CREATE TABLE table_25479607_3 (user VARCHAR, max_demand_charge___rs__kva_ VARCHAR, unit__kwh__time_range VARCHAR)
SELECT user FROM table_25479607_3 WHERE max_demand_charge___rs__kva_ = "1,100" AND unit__kwh__time_range = "H-2: Off-peak (22:30-05:30)"
Write a SQL query that answers the following question: What is the fixed charge for the user who had a tariff of 11.30?
The relevant table was constructed using the following SQL : CREATE TABLE table_25479607_3 (fixed_charge___rs__kwh_ VARCHAR, tariff___rs__kwh_ VARCHAR)
SELECT fixed_charge___rs__kwh_ FROM table_25479607_3 WHERE tariff___rs__kwh_ = "11.30"
Write a SQL query that answers the following question: What is the fixed charge for the user with a unit/time range of i-2: peak (18:30-22:30)?
The relevant table was constructed using the following SQL : CREATE TABLE table_25479607_3 (fixed_charge___rs__kwh_ VARCHAR, unit__kwh__time_range VARCHAR)
SELECT fixed_charge___rs__kwh_ FROM table_25479607_3 WHERE unit__kwh__time_range = "I-2: Peak (18:30-22:30)"
Write a SQL query that answers the following question: What was the max demand charge for the user with a tariff of 8.85?
The relevant table was constructed using the following SQL : CREATE TABLE table_25479607_3 (max_demand_charge___rs__kva_ VARCHAR, tariff___rs__kwh_ VARCHAR)
SELECT max_demand_charge___rs__kva_ FROM table_25479607_3 WHERE tariff___rs__kwh_ = "8.85"
Write a SQL query that answers the following question: How many picks are there with an affiliation is the University of California Norcal Lamorinda United?
The relevant table was constructed using the following SQL : CREATE TABLE table_25518547_2 (pick__number VARCHAR, affiliation VARCHAR)
SELECT COUNT(pick__number) FROM table_25518547_2 WHERE affiliation = "University of California NorCal Lamorinda United"
Write a SQL query that answers the following question: What team does Seth Sinovic play for?
The relevant table was constructed using the following SQL : CREATE TABLE table_25518547_2 (mls_team VARCHAR, player VARCHAR)
SELECT mls_team FROM table_25518547_2 WHERE player = "Seth Sinovic"
Write a SQL query that answers the following question: How many players have an affiliation with University of Maryland?
The relevant table was constructed using the following SQL : CREATE TABLE table_25518547_2 (player VARCHAR, affiliation VARCHAR)
SELECT COUNT(player) FROM table_25518547_2 WHERE affiliation = "University of Maryland"
Write a SQL query that answers the following question: in what round types did the opponent come from south africa?
The relevant table was constructed using the following SQL : CREATE TABLE table_25505246_8 (round VARCHAR, against VARCHAR)
SELECT round FROM table_25505246_8 WHERE against = "South Africa"
Write a SQL query that answers the following question: How did the match end when she played with caroline wozniacki?
The relevant table was constructed using the following SQL : CREATE TABLE table_25505246_8 (outcome VARCHAR, partner VARCHAR)
SELECT outcome FROM table_25505246_8 WHERE partner = "Caroline Wozniacki"
Write a SQL query that answers the following question: When was the University founded that joined in 1978?
The relevant table was constructed using the following SQL : CREATE TABLE table_255188_1 (founded INTEGER, joined VARCHAR)
SELECT MAX(founded) FROM table_255188_1 WHERE joined = 1978
Write a SQL query that answers the following question: When was Piedmont College founded?
The relevant table was constructed using the following SQL : CREATE TABLE table_255188_1 (founded INTEGER, institution VARCHAR)
SELECT MAX(founded) FROM table_255188_1 WHERE institution = "Piedmont College"
Write a SQL query that answers the following question: When were the Avenging Angels founded?
The relevant table was constructed using the following SQL : CREATE TABLE table_255188_1 (founded INTEGER, nickname VARCHAR)
SELECT MAX(founded) FROM table_255188_1 WHERE nickname = "Avenging Angels"
Write a SQL query that answers the following question: What institution joined in 1988?
The relevant table was constructed using the following SQL : CREATE TABLE table_255188_1 (institution VARCHAR, joined VARCHAR)
SELECT institution FROM table_255188_1 WHERE joined = 1988
Write a SQL query that answers the following question: What location is nicknamed the 49ers?
The relevant table was constructed using the following SQL : CREATE TABLE table_255188_3 (location VARCHAR, nickname VARCHAR)
SELECT location FROM table_255188_3 WHERE nickname = "49ers"
Write a SQL query that answers the following question: Where is the University of North Carolina at Greensboro located?
The relevant table was constructed using the following SQL : CREATE TABLE table_255188_3 (location VARCHAR, institution VARCHAR)
SELECT location FROM table_255188_3 WHERE institution = "University of North Carolina at Greensboro"
Write a SQL query that answers the following question: Name the hypotenuse for vertices 月山泛 δymf
The relevant table was constructed using the following SQL : CREATE TABLE table_25519358_1 (hypotenuse_0_c VARCHAR, vertices VARCHAR)
SELECT hypotenuse_0_c FROM table_25519358_1 WHERE vertices = "月山泛 ΔYMF"
Write a SQL query that answers the following question: Name the vertical for 边 bian
The relevant table was constructed using the following SQL : CREATE TABLE table_25519358_1 (vertical_0_b VARCHAR, name VARCHAR)
SELECT vertical_0_b FROM table_25519358_1 WHERE name = "边 BIAN"
Write a SQL query that answers the following question: Name the horizontal 0 for 通 tong
The relevant table was constructed using the following SQL : CREATE TABLE table_25519358_1 (horizontal_0_a VARCHAR, name VARCHAR)
SELECT horizontal_0_a FROM table_25519358_1 WHERE name = "通 TONG"
Write a SQL query that answers the following question: Name the horizontal 0 for 明弦(ry日月)
The relevant table was constructed using the following SQL : CREATE TABLE table_25519358_1 (horizontal_0_a VARCHAR, hypotenuse_0_c VARCHAR)
SELECT horizontal_0_a FROM table_25519358_1 WHERE hypotenuse_0_c = "明弦(RY日月)"
Write a SQL query that answers the following question: Name the vertical for 明勾(ys月南)
The relevant table was constructed using the following SQL : CREATE TABLE table_25519358_1 (vertical_0_b VARCHAR, horizontal_0_a VARCHAR)
SELECT vertical_0_b FROM table_25519358_1 WHERE horizontal_0_a = "明勾(YS月南)"
Write a SQL query that answers the following question: Name the horizontal number for number 10
The relevant table was constructed using the following SQL : CREATE TABLE table_25519358_1 (horizontal_0_a VARCHAR, number VARCHAR)
SELECT COUNT(horizontal_0_a) FROM table_25519358_1 WHERE number = 10
Write a SQL query that answers the following question: How many teams drafted players from the University of Maryland?
The relevant table was constructed using the following SQL : CREATE TABLE table_25518547_3 (mls_team VARCHAR, affiliation VARCHAR)
SELECT COUNT(mls_team) FROM table_25518547_3 WHERE affiliation = "University of Maryland"
Write a SQL query that answers the following question: What MLS team drafted samuel appiah?
The relevant table was constructed using the following SQL : CREATE TABLE table_25518547_3 (mls_team VARCHAR, player VARCHAR)
SELECT mls_team FROM table_25518547_3 WHERE player = "Samuel Appiah"
Write a SQL query that answers the following question: What player was drafted by the philadelphia union?
The relevant table was constructed using the following SQL : CREATE TABLE table_25518547_3 (player VARCHAR, mls_team VARCHAR)
SELECT player FROM table_25518547_3 WHERE mls_team = "Philadelphia Union"
Write a SQL query that answers the following question: This institution nicknamed Fightin' engineers was founded on what year?
The relevant table was constructed using the following SQL : CREATE TABLE table_255205_1 (founded VARCHAR, nickname VARCHAR)
SELECT founded FROM table_255205_1 WHERE nickname = "Fightin' Engineers"
Write a SQL query that answers the following question: How many inputs joined this institution located in Franklin, Indiana?
The relevant table was constructed using the following SQL : CREATE TABLE table_255205_1 (joined VARCHAR, location VARCHAR)
SELECT COUNT(joined) FROM table_255205_1 WHERE location = "Franklin, Indiana"
Write a SQL query that answers the following question: How many times this institution was founded that was nicknamed Beavers?
The relevant table was constructed using the following SQL : CREATE TABLE table_255205_1 (founded VARCHAR, nickname VARCHAR)
SELECT COUNT(founded) FROM table_255205_1 WHERE nickname = "Beavers"
Write a SQL query that answers the following question: How many joined this Private/Church of God institution?
The relevant table was constructed using the following SQL : CREATE TABLE table_255205_1 (joined VARCHAR, type VARCHAR)
SELECT joined FROM table_255205_1 WHERE type = "Private/Church of God"
Write a SQL query that answers the following question: How many joined Manchester University?
The relevant table was constructed using the following SQL : CREATE TABLE table_255205_1 (joined VARCHAR, institution VARCHAR)
SELECT joined FROM table_255205_1 WHERE institution = "Manchester University"
Write a SQL query that answers the following question: What circuit was the Clipsal 500 on?
The relevant table was constructed using the following SQL : CREATE TABLE table_25531112_2 (circuit VARCHAR, event VARCHAR)
SELECT circuit FROM table_25531112_2 WHERE event = "Clipsal 500"
Write a SQL query that answers the following question: Who made the challenge on the Albert Park Grand Prix Circuit?
The relevant table was constructed using the following SQL : CREATE TABLE table_25531112_2 (challenge VARCHAR, circuit VARCHAR)
SELECT challenge FROM table_25531112_2 WHERE circuit = "Albert Park Grand Prix circuit"
Write a SQL query that answers the following question: In what round was the circuit Eastern Creek Raceway?
The relevant table was constructed using the following SQL : CREATE TABLE table_25531112_2 (rd VARCHAR, circuit VARCHAR)
SELECT rd FROM table_25531112_2 WHERE circuit = "Eastern Creek Raceway"
Write a SQL query that answers the following question: Who made the challenge in the Australian Grand Prix?
The relevant table was constructed using the following SQL : CREATE TABLE table_25531112_2 (challenge VARCHAR, event VARCHAR)
SELECT challenge FROM table_25531112_2 WHERE event = "Australian Grand Prix"
Write a SQL query that answers the following question: Who is the shirt sponsor of the team with an average squad age of 25.46?
The relevant table was constructed using the following SQL : CREATE TABLE table_25527255_2 (shirt_sponsor VARCHAR, average_squad_age VARCHAR)
SELECT shirt_sponsor FROM table_25527255_2 WHERE average_squad_age = "25.46"
Write a SQL query that answers the following question: Who is the shirt sponsor for FC Bunyodkor?
The relevant table was constructed using the following SQL : CREATE TABLE table_25527255_2 (shirt_sponsor VARCHAR, team VARCHAR)
SELECT shirt_sponsor FROM table_25527255_2 WHERE team = "FC Bunyodkor"
Write a SQL query that answers the following question: What is the average squad age of the team whose shirt sponsor is Sho'rtan Gaz Mahsulot and whose kit manufacturer is Adidas?
The relevant table was constructed using the following SQL : CREATE TABLE table_25527255_2 (average_squad_age VARCHAR, shirt_sponsor VARCHAR, kit_manufacturer VARCHAR)
SELECT average_squad_age FROM table_25527255_2 WHERE shirt_sponsor = "Sho'rtan Gaz Mahsulot" AND kit_manufacturer = "Adidas"
Write a SQL query that answers the following question: Who is the captain of the team whose kit manufacturer is Nike?
The relevant table was constructed using the following SQL : CREATE TABLE table_25527255_2 (captain VARCHAR, kit_manufacturer VARCHAR)
SELECT captain FROM table_25527255_2 WHERE kit_manufacturer = "Nike"
Write a SQL query that answers the following question: Who is the manager of FK Andijan?
The relevant table was constructed using the following SQL : CREATE TABLE table_25527255_2 (manager VARCHAR, team VARCHAR)
SELECT manager FROM table_25527255_2 WHERE team = "FK Andijan"
Write a SQL query that answers the following question: Name the year for open cup did not qualify and national final
The relevant table was constructed using the following SQL : CREATE TABLE table_2553861_1 (year VARCHAR, open_cup VARCHAR, playoffs VARCHAR)
SELECT COUNT(year) FROM table_2553861_1 WHERE open_cup = "Did not qualify" AND playoffs = "National Final"
Write a SQL query that answers the following question: Name the league for 2000
The relevant table was constructed using the following SQL : CREATE TABLE table_2553861_1 (league VARCHAR, year VARCHAR)
SELECT league FROM table_2553861_1 WHERE year = 2000
Write a SQL query that answers the following question: Name the league for conference finals
The relevant table was constructed using the following SQL : CREATE TABLE table_2553861_1 (league VARCHAR, playoffs VARCHAR)
SELECT league FROM table_2553861_1 WHERE playoffs = "Conference Finals"
Write a SQL query that answers the following question: Who directed the episode that was written by Bill Lawrence?
The relevant table was constructed using the following SQL : CREATE TABLE table_25547943_1 (directed_by VARCHAR, written_by VARCHAR)
SELECT directed_by FROM table_25547943_1 WHERE written_by = "Bill Lawrence"
Write a SQL query that answers the following question: Name the series result for season being 1998
The relevant table was constructed using the following SQL : CREATE TABLE table_2554479_2 (series VARCHAR, season VARCHAR)
SELECT series AS result FROM table_2554479_2 WHERE season = "1998"
Write a SQL query that answers the following question: Name the total number of tests won by australia for series 10
The relevant table was constructed using the following SQL : CREATE TABLE table_2554479_2 (tests_won_by_australia VARCHAR, series VARCHAR)
SELECT COUNT(tests_won_by_australia) FROM table_2554479_2 WHERE series = 10
Write a SQL query that answers the following question: How many winners were there when the mountains classification was not awarded?
The relevant table was constructed using the following SQL : CREATE TABLE table_25551880_2 (winner VARCHAR, mountains_classification VARCHAR)
SELECT COUNT(winner) FROM table_25551880_2 WHERE mountains_classification = "not awarded"
Write a SQL query that answers the following question: Who was awarded mountains classifications when Mikel Nieve was the winner?
The relevant table was constructed using the following SQL : CREATE TABLE table_25551880_2 (mountains_classification VARCHAR, winner VARCHAR)
SELECT mountains_classification FROM table_25551880_2 WHERE winner = "Mikel Nieve"
Write a SQL query that answers the following question: Who was awarded mountains classification when Alessandro petacchi won?
The relevant table was constructed using the following SQL : CREATE TABLE table_25551880_2 (mountains_classification VARCHAR, winner VARCHAR)
SELECT mountains_classification FROM table_25551880_2 WHERE winner = "Alessandro Petacchi"
Write a SQL query that answers the following question: List the number of episodes directed by linda mendoza.
The relevant table was constructed using the following SQL : CREATE TABLE table_25548213_1 (production_code VARCHAR, directed_by VARCHAR)
SELECT COUNT(production_code) FROM table_25548213_1 WHERE directed_by = "Linda Mendoza"
Write a SQL query that answers the following question: How many million viewers watch the episode that kevin biegel & aseem batra wrote?
The relevant table was constructed using the following SQL : CREATE TABLE table_25548213_1 (us_viewers__million_ VARCHAR, written_by VARCHAR)
SELECT us_viewers__million_ FROM table_25548213_1 WHERE written_by = "Kevin Biegel & Aseem Batra"
Write a SQL query that answers the following question: What is the series number that had 5.31 million viewers?
The relevant table was constructed using the following SQL : CREATE TABLE table_25548213_1 (series__number INTEGER, us_viewers__million_ VARCHAR)
SELECT MAX(series__number) FROM table_25548213_1 WHERE us_viewers__million_ = "5.31"