instruction
stringlengths
67
299
input
stringlengths
88
550
output
stringlengths
32
484
Write a SQL query that answers the following question: Who was the general classification leader when the young rider classification leader was Salvatore Commesso and the winner was Erik Dekker?
The relevant table was constructed using the following SQL : CREATE TABLE table_2267345_2 (general_classification VARCHAR, young_rider_classification VARCHAR, winner VARCHAR)
SELECT general_classification FROM table_2267345_2 WHERE young_rider_classification = "Salvatore Commesso" AND winner = "Erik Dekker"
Write a SQL query that answers the following question: What is the total number of team classifications when the young rider classification leader was Salvatore Commesso and the combativity award winner was Jacky Durand?
The relevant table was constructed using the following SQL : CREATE TABLE table_2267345_2 (team_classification VARCHAR, young_rider_classification VARCHAR, combativity_award VARCHAR)
SELECT COUNT(team_classification) FROM table_2267345_2 WHERE young_rider_classification = "Salvatore Commesso" AND combativity_award = "Jacky Durand"
Write a SQL query that answers the following question: In what round did Al Unser win at Wisconsin State Fair Park Speedway?
The relevant table was constructed using the following SQL : CREATE TABLE table_22673872_1 (rnd INTEGER, winning_driver VARCHAR, track VARCHAR)
SELECT MIN(rnd) FROM table_22673872_1 WHERE winning_driver = "Al Unser" AND track = "Wisconsin State Fair Park Speedway"
Write a SQL query that answers the following question: How many races are in College Station, Texas and won by Johnny Rutherford?
The relevant table was constructed using the following SQL : CREATE TABLE table_22673872_1 (race_name VARCHAR, location VARCHAR, winning_driver VARCHAR)
SELECT COUNT(race_name) FROM table_22673872_1 WHERE location = "College Station, Texas" AND winning_driver = "Johnny Rutherford"
Write a SQL query that answers the following question: What was the name of the race that Al Unser had the pole position?
The relevant table was constructed using the following SQL : CREATE TABLE table_22673872_1 (race_name VARCHAR, pole_position VARCHAR)
SELECT race_name FROM table_22673872_1 WHERE pole_position = "Al Unser"
Write a SQL query that answers the following question: What is the name of the track for the International 500 mile Sweepstakes race?
The relevant table was constructed using the following SQL : CREATE TABLE table_22673872_1 (track VARCHAR, race_name VARCHAR)
SELECT track FROM table_22673872_1 WHERE race_name = "International 500 Mile Sweepstakes"
Write a SQL query that answers the following question: Which locations did Gordon Johncock hold the pole position?
The relevant table was constructed using the following SQL : CREATE TABLE table_22673872_1 (location VARCHAR, pole_position VARCHAR)
SELECT location FROM table_22673872_1 WHERE pole_position = "Gordon Johncock"
Write a SQL query that answers the following question: What classifications does Fish Rap live! has?
The relevant table was constructed using the following SQL : CREATE TABLE table_2266990_2 (classification VARCHAR, title VARCHAR)
SELECT classification FROM table_2266990_2 WHERE title = "Fish Rap Live!"
Write a SQL query that answers the following question: How many races took place on October 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_22673956_1 (race_name VARCHAR, date VARCHAR)
SELECT COUNT(race_name) FROM table_22673956_1 WHERE date = "October 1"
Write a SQL query that answers the following question: How many types of tracks are there on the Phoenix International raceway?
The relevant table was constructed using the following SQL : CREATE TABLE table_22673956_1 (type VARCHAR, track VARCHAR)
SELECT COUNT(type) FROM table_22673956_1 WHERE track = "Phoenix International Raceway"
Write a SQL query that answers the following question: Daily Empress Indy Silverstone took place on which round?
The relevant table was constructed using the following SQL : CREATE TABLE table_22673956_1 (rnd INTEGER, race_name VARCHAR)
SELECT MAX(rnd) FROM table_22673956_1 WHERE race_name = "Daily Empress Indy Silverstone"
Write a SQL query that answers the following question: How many races took place on the Indianapolis Motor Speedway track?
The relevant table was constructed using the following SQL : CREATE TABLE table_22673956_1 (race_name VARCHAR, track VARCHAR)
SELECT COUNT(race_name) FROM table_22673956_1 WHERE track = "Indianapolis Motor Speedway"
Write a SQL query that answers the following question: What driver achieved a 3:50:12 race time?
The relevant table was constructed using the following SQL : CREATE TABLE table_2267465_1 (driver VARCHAR, race_time VARCHAR)
SELECT driver FROM table_2267465_1 WHERE race_time = "3:50:12"
Write a SQL query that answers the following question: Can you tell me the manufacturer behind Race Hill Farm Team?
The relevant table was constructed using the following SQL : CREATE TABLE table_2267465_1 (manufacturer VARCHAR, team VARCHAR)
SELECT manufacturer FROM table_2267465_1 WHERE team = "Race Hill Farm team"
Write a SQL query that answers the following question: How many laps have a 3:34:26 race time?
The relevant table was constructed using the following SQL : CREATE TABLE table_2267465_1 (laps VARCHAR, race_time VARCHAR)
SELECT COUNT(laps) FROM table_2267465_1 WHERE race_time = "3:34:26"
Write a SQL query that answers the following question: What's the average mph of 1964?
The relevant table was constructed using the following SQL : CREATE TABLE table_2267465_1 (average_speed__mph_ VARCHAR, year VARCHAR)
SELECT average_speed__mph_ FROM table_2267465_1 WHERE year = "1964"
Write a SQL query that answers the following question: Whose is the manufacturer for team Ranier-Lundy?
The relevant table was constructed using the following SQL : CREATE TABLE table_2268216_1 (manufacturer VARCHAR, team VARCHAR)
SELECT manufacturer FROM table_2268216_1 WHERE team = "Ranier-Lundy"
Write a SQL query that answers the following question: In what year was the average speed 92.68?
The relevant table was constructed using the following SQL : CREATE TABLE table_2268216_1 (year VARCHAR, average_speed__mph_ VARCHAR)
SELECT year FROM table_2268216_1 WHERE average_speed__mph_ = "92.68"
Write a SQL query that answers the following question: How many years was Pontiac the manufacturer for Joe Gibbs Racing?
The relevant table was constructed using the following SQL : CREATE TABLE table_2268216_1 (year VARCHAR, team VARCHAR, manufacturer VARCHAR)
SELECT COUNT(year) FROM table_2268216_1 WHERE team = "Joe Gibbs Racing" AND manufacturer = "Pontiac"
Write a SQL query that answers the following question: What is the date for the race that had the time of 2:43:19?
The relevant table was constructed using the following SQL : CREATE TABLE table_2268216_1 (date VARCHAR, race_time VARCHAR)
SELECT date FROM table_2268216_1 WHERE race_time = "2:43:19"
Write a SQL query that answers the following question: How many average speeds are listed in the year 2003?
The relevant table was constructed using the following SQL : CREATE TABLE table_2268216_1 (average_speed__mph_ VARCHAR, year VARCHAR)
SELECT COUNT(average_speed__mph_) FROM table_2268216_1 WHERE year = "2003"
Write a SQL query that answers the following question: What team had a race time of 2:53:57?
The relevant table was constructed using the following SQL : CREATE TABLE table_2268216_1 (team VARCHAR, race_time VARCHAR)
SELECT team FROM table_2268216_1 WHERE race_time = "2:53:57"
Write a SQL query that answers the following question: Name the sprint classification being alejandro valverde
The relevant table was constructed using the following SQL : CREATE TABLE table_22713796_14 (sprint_classification VARCHAR, winner VARCHAR)
SELECT sprint_classification FROM table_22713796_14 WHERE winner = "Alejandro Valverde"
Write a SQL query that answers the following question: Name the stage for no award
The relevant table was constructed using the following SQL : CREATE TABLE table_22713796_14 (stage VARCHAR, mountains_classification VARCHAR)
SELECT stage FROM table_22713796_14 WHERE mountains_classification = "no award"
Write a SQL query that answers the following question: Name the total number of stage for lloyd mondory
The relevant table was constructed using the following SQL : CREATE TABLE table_22713796_14 (stage VARCHAR, mountains_classification VARCHAR)
SELECT COUNT(stage) FROM table_22713796_14 WHERE mountains_classification = "Lloyd Mondory"
Write a SQL query that answers the following question: Name the most stage for alejandro valverde and astana greg henderson
The relevant table was constructed using the following SQL : CREATE TABLE table_22713796_14 (stage INTEGER, winner VARCHAR, general_classification VARCHAR, team_classification VARCHAR)
SELECT MAX(stage) FROM table_22713796_14 WHERE general_classification = "Alejandro Valverde" AND team_classification = "Astana" AND winner = "Greg Henderson"
Write a SQL query that answers the following question: When the Border Conference was held, who was the tournament winner?
The relevant table was constructed using the following SQL : CREATE TABLE table_22733636_1 (tournament_winner VARCHAR, conference VARCHAR)
SELECT tournament_winner FROM table_22733636_1 WHERE conference = "Border conference"
Write a SQL query that answers the following question: When Princeton was the regular season winner, who was the tournament winner?
The relevant table was constructed using the following SQL : CREATE TABLE table_22733636_1 (tournament_winner VARCHAR, regular_season_winner VARCHAR)
SELECT tournament_winner FROM table_22733636_1 WHERE regular_season_winner = "Princeton"
Write a SQL query that answers the following question: How long has Mel Daniels been playing?
The relevant table was constructed using the following SQL : CREATE TABLE table_22719663_3 (experience VARCHAR, name VARCHAR)
SELECT experience FROM table_22719663_3 WHERE name = "Mel Daniels"
Write a SQL query that answers the following question: What position did the player from San Jose State play?
The relevant table was constructed using the following SQL : CREATE TABLE table_22719663_3 (position VARCHAR, college VARCHAR)
SELECT position FROM table_22719663_3 WHERE college = "San Jose State"
Write a SQL query that answers the following question: What was the number of the player that was 6-6?
The relevant table was constructed using the following SQL : CREATE TABLE table_22719663_3 (number VARCHAR, height VARCHAR)
SELECT number FROM table_22719663_3 WHERE height = "6-6"
Write a SQL query that answers the following question: If the song choice is Coba and the order number is 10, what is the result?
The relevant table was constructed using the following SQL : CREATE TABLE table_22736523_1 (result VARCHAR, order__number VARCHAR, song_choice VARCHAR)
SELECT result FROM table_22736523_1 WHERE order__number = "10" AND song_choice = "Coba"
Write a SQL query that answers the following question: What is the result if Coba is the song choice?
The relevant table was constructed using the following SQL : CREATE TABLE table_22736523_1 (result VARCHAR, song_choice VARCHAR)
SELECT result FROM table_22736523_1 WHERE song_choice = "Coba"
Write a SQL query that answers the following question: If Coba is the song choice, what is the order number?
The relevant table was constructed using the following SQL : CREATE TABLE table_22736523_1 (order__number VARCHAR, song_choice VARCHAR)
SELECT order__number FROM table_22736523_1 WHERE song_choice = "Coba"
Write a SQL query that answers the following question: If Crazy In Love is the song choice, what is the theme?
The relevant table was constructed using the following SQL : CREATE TABLE table_22736523_1 (theme VARCHAR, song_choice VARCHAR)
SELECT theme FROM table_22736523_1 WHERE song_choice = "Crazy In Love"
Write a SQL query that answers the following question: For week number of the top 40, what was the results?
The relevant table was constructed using the following SQL : CREATE TABLE table_22736523_1 (result VARCHAR, week__number VARCHAR)
SELECT result FROM table_22736523_1 WHERE week__number = "Top 40"
Write a SQL query that answers the following question: For week of top 9, what were the results?
The relevant table was constructed using the following SQL : CREATE TABLE table_22736523_1 (result VARCHAR, week__number VARCHAR)
SELECT result FROM table_22736523_1 WHERE week__number = "Top 9"
Write a SQL query that answers the following question: The city of Birmingham is what type of location?
The relevant table was constructed using the following SQL : CREATE TABLE table_2273738_1 (type VARCHAR, city VARCHAR)
SELECT type FROM table_2273738_1 WHERE city = "Birmingham"
Write a SQL query that answers the following question: Leeds City Council is the local authority for what type of location?
The relevant table was constructed using the following SQL : CREATE TABLE table_2273738_1 (type VARCHAR, local_authority VARCHAR)
SELECT type FROM table_2273738_1 WHERE local_authority = "Leeds city Council"
Write a SQL query that answers the following question: Tyne and Wear County has what total membership for their metropolitan area?
The relevant table was constructed using the following SQL : CREATE TABLE table_2273738_1 (metropolitan_area VARCHAR, county VARCHAR)
SELECT metropolitan_area FROM table_2273738_1 WHERE county = "Tyne and Wear"
Write a SQL query that answers the following question: What is the total membership for the metropolitan area in the city of Manchester?
The relevant table was constructed using the following SQL : CREATE TABLE table_2273738_1 (metropolitan_area INTEGER, city VARCHAR)
SELECT MAX(metropolitan_area) FROM table_2273738_1 WHERE city = "Manchester"
Write a SQL query that answers the following question: Who was the runner-up (a) if K. P. Ramalingam won the election?
The relevant table was constructed using the following SQL : CREATE TABLE table_22752982_5 (runner_up_a VARCHAR, winner VARCHAR)
SELECT runner_up_a FROM table_22752982_5 WHERE winner = "K. P. Ramalingam"
Write a SQL query that answers the following question: When 1 (5) is the races what is the team name?
The relevant table was constructed using the following SQL : CREATE TABLE table_22737506_1 (team_name VARCHAR, races VARCHAR)
SELECT team_name FROM table_22737506_1 WHERE races = "1 (5)"
Write a SQL query that answers the following question: When 19th is the position what is the highest amount of poles?
The relevant table was constructed using the following SQL : CREATE TABLE table_22737506_1 (poles INTEGER, pos VARCHAR)
SELECT MAX(poles) FROM table_22737506_1 WHERE pos = "19th"
Write a SQL query that answers the following question: When 86 is the amount of points what is the position?
The relevant table was constructed using the following SQL : CREATE TABLE table_22737506_1 (pos VARCHAR, points VARCHAR)
SELECT pos FROM table_22737506_1 WHERE points = 86
Write a SQL query that answers the following question: Name the most margin for nco party and p. ramachandran won
The relevant table was constructed using the following SQL : CREATE TABLE table_22754310_1 (margin INTEGER, party VARCHAR, winner VARCHAR)
SELECT MAX(margin) FROM table_22754310_1 WHERE party = "NCO" AND winner = "P. Ramachandran"
Write a SQL query that answers the following question: Name the party a for m. s. k. sathiyendran runner up
The relevant table was constructed using the following SQL : CREATE TABLE table_22754310_1 (party VARCHAR, runner_up_a VARCHAR)
SELECT party AS a FROM table_22754310_1 WHERE runner_up_a = "M. S. K. Sathiyendran"
Write a SQL query that answers the following question: Name the party a for sriperumbudur
The relevant table was constructed using the following SQL : CREATE TABLE table_22754310_1 (party VARCHAR, constituency VARCHAR)
SELECT party AS a FROM table_22754310_1 WHERE constituency = "Sriperumbudur"
Write a SQL query that answers the following question: Name the total number of runner up a for perambalur
The relevant table was constructed using the following SQL : CREATE TABLE table_22754310_1 (runner_up_a VARCHAR, constituency VARCHAR)
SELECT COUNT(runner_up_a) FROM table_22754310_1 WHERE constituency = "Perambalur"
Write a SQL query that answers the following question: Name the constituency for 175130
The relevant table was constructed using the following SQL : CREATE TABLE table_22754310_1 (constituency VARCHAR, margin VARCHAR)
SELECT constituency FROM table_22754310_1 WHERE margin = 175130
Write a SQL query that answers the following question: How many margins have a winner of S. Singaravadivel?
The relevant table was constructed using the following SQL : CREATE TABLE table_22753439_1 (margin VARCHAR, winner VARCHAR)
SELECT COUNT(margin) FROM table_22753439_1 WHERE winner = "S. Singaravadivel"
Write a SQL query that answers the following question: How many winners have a runner-up of A. Karthikeyan?
The relevant table was constructed using the following SQL : CREATE TABLE table_22753439_1 (winner VARCHAR, runner_up_a VARCHAR)
SELECT COUNT(winner) FROM table_22753439_1 WHERE runner_up_a = "A. Karthikeyan"
Write a SQL query that answers the following question: What is every party with a winner of P. Chidambaram?
The relevant table was constructed using the following SQL : CREATE TABLE table_22753439_1 (party VARCHAR, winner VARCHAR)
SELECT party AS a FROM table_22753439_1 WHERE winner = "P. Chidambaram"
Write a SQL query that answers the following question: What is every party A with a constituency of Tiruchendur?
The relevant table was constructed using the following SQL : CREATE TABLE table_22753439_1 (party VARCHAR, constituency VARCHAR)
SELECT party AS a FROM table_22753439_1 WHERE constituency = "Tiruchendur"
Write a SQL query that answers the following question: Who is the constituency when the runner-up was d. Venugopal?
The relevant table was constructed using the following SQL : CREATE TABLE table_22753245_1 (constituency VARCHAR, runner_up_a VARCHAR)
SELECT constituency FROM table_22753245_1 WHERE runner_up_a = "D. Venugopal"
Write a SQL query that answers the following question: What is the party where the constituency is 10. Tindivanam?
The relevant table was constructed using the following SQL : CREATE TABLE table_22753245_1 (party VARCHAR, constituency VARCHAR)
SELECT party FROM table_22753245_1 WHERE constituency = "10. Tindivanam"
Write a SQL query that answers the following question: What is the party when the constituency is 1. Chennai North?
The relevant table was constructed using the following SQL : CREATE TABLE table_22753245_1 (party VARCHAR, constituency VARCHAR)
SELECT party FROM table_22753245_1 WHERE constituency = "1. Chennai North"
Write a SQL query that answers the following question: How many margin results are listed in the election that was won by L. Adaikalaraj C and the party was the Indian national congress?
The relevant table was constructed using the following SQL : CREATE TABLE table_22753245_1 (margin VARCHAR, party VARCHAR, winner VARCHAR)
SELECT COUNT(margin) FROM table_22753245_1 WHERE party = "Indian National Congress" AND winner = "L. Adaikalaraj c"
Write a SQL query that answers the following question: What is the margin when k. balathandayutham is the winner?
The relevant table was constructed using the following SQL : CREATE TABLE table_22754491_1 (margin INTEGER, winner VARCHAR)
SELECT MAX(margin) FROM table_22754491_1 WHERE winner = "K. Balathandayutham"
Write a SQL query that answers the following question: What is the margin when periyakulam is the constituency?
The relevant table was constructed using the following SQL : CREATE TABLE table_22754491_1 (margin VARCHAR, constituency VARCHAR)
SELECT margin FROM table_22754491_1 WHERE constituency = "Periyakulam"
Write a SQL query that answers the following question: Who had the pole position in the August 15, 1981 race?
The relevant table was constructed using the following SQL : CREATE TABLE table_22765887_1 (pole_position VARCHAR, date VARCHAR)
SELECT pole_position FROM table_22765887_1 WHERE date = "August 15, 1981"
Write a SQL query that answers the following question: Which track was used on September 12, 1981?
The relevant table was constructed using the following SQL : CREATE TABLE table_22765887_1 (track VARCHAR, date VARCHAR)
SELECT track FROM table_22765887_1 WHERE date = "September 12, 1981"
Write a SQL query that answers the following question: Name the extension for university of washington
The relevant table was constructed using the following SQL : CREATE TABLE table_22771048_3 (extension VARCHAR, city_neighborhood VARCHAR)
SELECT extension FROM table_22771048_3 WHERE city_neighborhood = "University of Washington"
Write a SQL query that answers the following question: Name the least projected opening
The relevant table was constructed using the following SQL : CREATE TABLE table_22771048_3 (projected_opening INTEGER)
SELECT MIN(projected_opening) FROM table_22771048_3
Write a SQL query that answers the following question: Name the transit connections for capitol hill u
The relevant table was constructed using the following SQL : CREATE TABLE table_22771048_3 (transit_connections VARCHAR, station VARCHAR)
SELECT transit_connections FROM table_22771048_3 WHERE station = "Capitol Hill U"
Write a SQL query that answers the following question: How many neighborhoods have a station proposed at a Hospital?
The relevant table was constructed using the following SQL : CREATE TABLE table_22771048_4 (city_neighborhood VARCHAR, station VARCHAR)
SELECT COUNT(city_neighborhood) FROM table_22771048_4 WHERE station = "Hospital"
Write a SQL query that answers the following question: What are the transit connections from Pioneer Square U?
The relevant table was constructed using the following SQL : CREATE TABLE table_22771048_2 (transit_connections VARCHAR, station VARCHAR)
SELECT transit_connections FROM table_22771048_2 WHERE station = "Pioneer Square U"
Write a SQL query that answers the following question: What's the transit connection in Columbia City, Seattle?
The relevant table was constructed using the following SQL : CREATE TABLE table_22771048_2 (transit_connections VARCHAR, city_neighborhood VARCHAR)
SELECT transit_connections FROM table_22771048_2 WHERE city_neighborhood = "Columbia City, Seattle"
Write a SQL query that answers the following question: For small patent type of protections, what type of PCT route is available?
The relevant table was constructed using the following SQL : CREATE TABLE table_2279413_1 (pct_route_available VARCHAR, type_of_protection VARCHAR)
SELECT pct_route_available FROM table_2279413_1 WHERE type_of_protection = "small patent"
Write a SQL query that answers the following question: In Tonga, what is the conversion from patent application?
The relevant table was constructed using the following SQL : CREATE TABLE table_2279413_1 (conversion_from_patent_application VARCHAR, country VARCHAR)
SELECT conversion_from_patent_application FROM table_2279413_1 WHERE country = "Tonga"
Write a SQL query that answers the following question: For short patent type of protections, what type of PCT route is available?
The relevant table was constructed using the following SQL : CREATE TABLE table_2279413_1 (pct_route_available VARCHAR, type_of_protection VARCHAR)
SELECT pct_route_available FROM table_2279413_1 WHERE type_of_protection = "short patent"
Write a SQL query that answers the following question: In Tangier Zone, what is the PCT route availibility?
The relevant table was constructed using the following SQL : CREATE TABLE table_2279413_1 (pct_route_available VARCHAR, country VARCHAR)
SELECT pct_route_available FROM table_2279413_1 WHERE country = "Tangier Zone"
Write a SQL query that answers the following question: When the PCT route available is yes and the maximum term is 10 years, what are the available conversions from patent applications?
The relevant table was constructed using the following SQL : CREATE TABLE table_2279413_1 (conversion_from_patent_application VARCHAR, maximum_term VARCHAR, pct_route_available VARCHAR)
SELECT conversion_from_patent_application FROM table_2279413_1 WHERE maximum_term = "10 years" AND pct_route_available = "Yes"
Write a SQL query that answers the following question: What was the result against the team which the Cowboys have a 6-2 record against?
The relevant table was constructed using the following SQL : CREATE TABLE table_22801331_1 (result VARCHAR, record VARCHAR)
SELECT result FROM table_22801331_1 WHERE record = "6-2"
Write a SQL query that answers the following question: What is the fewest points opponents have scored when the Cowboys score 36?
The relevant table was constructed using the following SQL : CREATE TABLE table_22801331_1 (opponents INTEGER, cowboys_points VARCHAR)
SELECT MIN(opponents) FROM table_22801331_1 WHERE cowboys_points = 36
Write a SQL query that answers the following question: How many opponents have a 1-0 record against the Cowboys?
The relevant table was constructed using the following SQL : CREATE TABLE table_22801331_1 (opponents VARCHAR, record VARCHAR)
SELECT opponents FROM table_22801331_1 WHERE record = "1-0"
Write a SQL query that answers the following question: What game was held against a team with a 6-3 record against the Cowboys?
The relevant table was constructed using the following SQL : CREATE TABLE table_22801331_1 (game VARCHAR, record VARCHAR)
SELECT game FROM table_22801331_1 WHERE record = "6-3"
Write a SQL query that answers the following question: How many names have a country of civ?
The relevant table was constructed using the following SQL : CREATE TABLE table_22810095_8 (COUnT VARCHAR, country VARCHAR)
SELECT COUnT AS name FROM table_22810095_8 WHERE country = "CIV"
Write a SQL query that answers the following question: Who moved from Northampton Town?
The relevant table was constructed using the following SQL : CREATE TABLE table_22810095_8 (name VARCHAR, moving_from VARCHAR)
SELECT name FROM table_22810095_8 WHERE moving_from = "northampton Town"
Write a SQL query that answers the following question: Where did Kisnorbo move from?
The relevant table was constructed using the following SQL : CREATE TABLE table_22810095_8 (moving_from VARCHAR, name VARCHAR)
SELECT moving_from FROM table_22810095_8 WHERE name = "Kisnorbo"
Write a SQL query that answers the following question: What is the name of the player when n is 28?
The relevant table was constructed using the following SQL : CREATE TABLE table_22810095_8 (name VARCHAR, n VARCHAR)
SELECT name FROM table_22810095_8 WHERE n = 28
Write a SQL query that answers the following question: How much was the transfer fee when n is 2?
The relevant table was constructed using the following SQL : CREATE TABLE table_22810095_8 (transfer_fee VARCHAR, n VARCHAR)
SELECT transfer_fee FROM table_22810095_8 WHERE n = 2
Write a SQL query that answers the following question: What player is 24 years old?
The relevant table was constructed using the following SQL : CREATE TABLE table_22810095_9 (name VARCHAR, age VARCHAR)
SELECT name FROM table_22810095_9 WHERE age = 24
Write a SQL query that answers the following question: Nam the total number for bruce coulter award for 9th game
The relevant table was constructed using the following SQL : CREATE TABLE table_228149_1 (bruce_coulter_award VARCHAR, game VARCHAR)
SELECT COUNT(bruce_coulter_award) FROM table_228149_1 WHERE game = "9th"
Write a SQL query that answers the following question: How many opponents were there when the opponent was Arizona State?
The relevant table was constructed using the following SQL : CREATE TABLE table_22815265_1 (opponents INTEGER, opponent VARCHAR)
SELECT MIN(opponents) FROM table_22815265_1 WHERE opponent = "Arizona State"
Write a SQL query that answers the following question: How many records show Utah as the opponent?
The relevant table was constructed using the following SQL : CREATE TABLE table_22815265_1 (record VARCHAR, opponent VARCHAR)
SELECT COUNT(record) FROM table_22815265_1 WHERE opponent = "Utah"
Write a SQL query that answers the following question: How many opponents are there when cowboy points were 10?
The relevant table was constructed using the following SQL : CREATE TABLE table_22815265_1 (opponents VARCHAR, cowboys_points VARCHAR)
SELECT opponents FROM table_22815265_1 WHERE cowboys_points = 10
Write a SQL query that answers the following question: How many records were there when opponents were 9?
The relevant table was constructed using the following SQL : CREATE TABLE table_22815265_1 (record VARCHAR, opponents VARCHAR)
SELECT COUNT(record) FROM table_22815265_1 WHERE opponents = 9
Write a SQL query that answers the following question: Name the number of record for 12 cowboys points
The relevant table was constructed using the following SQL : CREATE TABLE table_22815259_1 (record VARCHAR, cowboys_points VARCHAR)
SELECT COUNT(record) FROM table_22815259_1 WHERE cowboys_points = 12
Write a SQL query that answers the following question: Name the most game for record 4-0
The relevant table was constructed using the following SQL : CREATE TABLE table_22815259_1 (game INTEGER, record VARCHAR)
SELECT MAX(game) FROM table_22815259_1 WHERE record = "4-0"
Write a SQL query that answers the following question: Name the result for cowboys points being 23
The relevant table was constructed using the following SQL : CREATE TABLE table_22815259_1 (result VARCHAR, cowboys_points VARCHAR)
SELECT COUNT(result) FROM table_22815259_1 WHERE cowboys_points = 23
Write a SQL query that answers the following question: Name the record for arizona
The relevant table was constructed using the following SQL : CREATE TABLE table_22815259_1 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_22815259_1 WHERE opponent = "Arizona"
Write a SQL query that answers the following question: Name the unemployment rate for 34024
The relevant table was constructed using the following SQL : CREATE TABLE table_22815568_12 (unemployment_rate VARCHAR, population VARCHAR)
SELECT COUNT(unemployment_rate) FROM table_22815568_12 WHERE population = 34024
Write a SQL query that answers the following question: Name the total number of population for craig
The relevant table was constructed using the following SQL : CREATE TABLE table_22815568_12 (population VARCHAR, county VARCHAR)
SELECT COUNT(population) FROM table_22815568_12 WHERE county = "Craig"
Write a SQL query that answers the following question: Name the unemployment rate for botetourt
The relevant table was constructed using the following SQL : CREATE TABLE table_22815568_12 (unemployment_rate VARCHAR, county VARCHAR)
SELECT unemployment_rate FROM table_22815568_12 WHERE county = "Botetourt"
Write a SQL query that answers the following question: Name the status for unemployment rate being 6.7%
The relevant table was constructed using the following SQL : CREATE TABLE table_22815568_12 (status VARCHAR, unemployment_rate VARCHAR)
SELECT status FROM table_22815568_12 WHERE unemployment_rate = "6.7%"
Write a SQL query that answers the following question: What is the status of the county that has a 14.7% poverty rate?
The relevant table was constructed using the following SQL : CREATE TABLE table_22815568_1 (status VARCHAR, poverty_rate VARCHAR)
SELECT status FROM table_22815568_1 WHERE poverty_rate = "14.7%"
Write a SQL query that answers the following question: What is the poverty rate in the county that has a market income per capita of $16,420?
The relevant table was constructed using the following SQL : CREATE TABLE table_22815568_1 (poverty_rate VARCHAR, market_income_per_capita VARCHAR)
SELECT poverty_rate FROM table_22815568_1 WHERE market_income_per_capita = "$16,420"
Write a SQL query that answers the following question: What is the lowest population in a county with market income per capita of $24,383?
The relevant table was constructed using the following SQL : CREATE TABLE table_22815568_1 (population INTEGER, market_income_per_capita VARCHAR)
SELECT MIN(population) FROM table_22815568_1 WHERE market_income_per_capita = "$24,383"
Write a SQL query that answers the following question: What is the povery rate of the county with market income per capita of $20,518?
The relevant table was constructed using the following SQL : CREATE TABLE table_22815568_1 (poverty_rate VARCHAR, market_income_per_capita VARCHAR)
SELECT poverty_rate FROM table_22815568_1 WHERE market_income_per_capita = "$20,518"