instruction
stringlengths
67
299
input
stringlengths
88
550
output
stringlengths
32
484
Write a SQL query that answers the following question: What is the lowest Pick #, when College is "Jackson State"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_98 (pick__number INTEGER, college VARCHAR)
SELECT MIN(pick__number) FROM table_name_98 WHERE college = "jackson state"
Write a SQL query that answers the following question: What is Pick #, when Round is "10"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_49 (pick__number VARCHAR, round VARCHAR)
SELECT pick__number FROM table_name_49 WHERE round = 10
Write a SQL query that answers the following question: What is Player, when Round is greater than 8, when Pick # is greater than 234, and when College is "Louisville"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_22 (player VARCHAR, college VARCHAR, round VARCHAR, pick__number VARCHAR)
SELECT player FROM table_name_22 WHERE round > 8 AND pick__number > 234 AND college = "louisville"
Write a SQL query that answers the following question: What is the average Round, when Player is "Gurnest Brown", and when Pick # is greater than 180?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_84 (round INTEGER, player VARCHAR, pick__number VARCHAR)
SELECT AVG(round) FROM table_name_84 WHERE player = "gurnest brown" AND pick__number > 180
Write a SQL query that answers the following question: What is the lowest Pick #, when College is "Louisville", and when Round is less than 10?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_6 (pick__number INTEGER, college VARCHAR, round VARCHAR)
SELECT MIN(pick__number) FROM table_name_6 WHERE college = "louisville" AND round < 10
Write a SQL query that answers the following question: Which Class has a Frequency MHz larger than 91.7, and a Call sign of k272ec?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_21 (class VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR)
SELECT class FROM table_name_21 WHERE frequency_mhz > 91.7 AND call_sign = "k272ec"
Write a SQL query that answers the following question: Which Frequency MHz has a Call sign of k210dv?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_35 (frequency_mhz INTEGER, call_sign VARCHAR)
SELECT MAX(frequency_mhz) FROM table_name_35 WHERE call_sign = "k210dv"
Write a SQL query that answers the following question: Which City of license has a Frequency MHz larger than 89.5, and a Call sign of k213el?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_22 (city_of_license VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR)
SELECT city_of_license FROM table_name_22 WHERE frequency_mhz > 89.5 AND call_sign = "k213el"
Write a SQL query that answers the following question: Which ERP W has a Frequency MHz larger than 89.1, and a City of license of de queen, arkansas?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_54 (erp_w VARCHAR, frequency_mhz VARCHAR, city_of_license VARCHAR)
SELECT erp_w FROM table_name_54 WHERE frequency_mhz > 89.1 AND city_of_license = "de queen, arkansas"
Write a SQL query that answers the following question: Which FCC info has a City of license of burley, idaho, and a Frequency MHz of 89.5?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_65 (fcc_info VARCHAR, city_of_license VARCHAR, frequency_mhz VARCHAR)
SELECT fcc_info FROM table_name_65 WHERE city_of_license = "burley, idaho" AND frequency_mhz = 89.5
Write a SQL query that answers the following question: For the game played on 31 July 2007 on clay what was the score?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_42 (score VARCHAR, surface VARCHAR, date VARCHAR)
SELECT score FROM table_name_42 WHERE surface = "clay" AND date = "31 july 2007"
Write a SQL query that answers the following question: When was Pablo Andújar the opponent?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_38 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_38 WHERE opponent = "pablo andújar"
Write a SQL query that answers the following question: What is the decision when Buffalo was the visitor?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_20 (decision VARCHAR, visitor VARCHAR)
SELECT decision FROM table_name_20 WHERE visitor = "buffalo"
Write a SQL query that answers the following question: Who is the visiting team when Minnesota is the home team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_67 (visitor VARCHAR, home VARCHAR)
SELECT visitor FROM table_name_67 WHERE home = "minnesota"
Write a SQL query that answers the following question: What is the date of the match when Phoenix is the home team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_75 (date VARCHAR, home VARCHAR)
SELECT date FROM table_name_75 WHERE home = "phoenix"
Write a SQL query that answers the following question: Who is the quarterback for Arkansas State?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_38 (player VARCHAR, position VARCHAR, college VARCHAR)
SELECT player FROM table_name_38 WHERE position = "quarterback" AND college = "arkansas state"
Write a SQL query that answers the following question: What is the total round of the 129 pick?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_49 (round VARCHAR, pick__number VARCHAR)
SELECT COUNT(round) FROM table_name_49 WHERE pick__number = 129
Write a SQL query that answers the following question: What is the record for January 19?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_37 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_37 WHERE date = "january 19"
Write a SQL query that answers the following question: What record has the score 111-89?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_75 (record VARCHAR, score VARCHAR)
SELECT record FROM table_name_75 WHERE score = "111-89"
Write a SQL query that answers the following question: What is the record for January 7?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_21 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_21 WHERE date = "january 7"
Write a SQL query that answers the following question: Who was the opponent on January 7?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_36 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_36 WHERE date = "january 7"
Write a SQL query that answers the following question: What home team scored 102-87?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_60 (home_team VARCHAR, score VARCHAR)
SELECT home_team FROM table_name_60 WHERE score = "102-87"
Write a SQL query that answers the following question: What venue had a Score of 120-108?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_1 (venue VARCHAR, score VARCHAR)
SELECT venue FROM table_name_1 WHERE score = "120-108"
Write a SQL query that answers the following question: What was the score when Sydney Spirit was the home team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_41 (score VARCHAR, home_team VARCHAR)
SELECT score FROM table_name_41 WHERE home_team = "sydney spirit"
Write a SQL query that answers the following question: What was the score at North Shore Events Centre?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_9 (score VARCHAR, venue VARCHAR)
SELECT score FROM table_name_9 WHERE venue = "north shore events centre"
Write a SQL query that answers the following question: What is the home team venue for the New Zealand Breakers?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_30 (venue VARCHAR, home_team VARCHAR)
SELECT venue FROM table_name_30 WHERE home_team = "new zealand breakers"
Write a SQL query that answers the following question: Who had the decision when the visitor was Detroit and the home team was Ottawa?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_71 (decision VARCHAR, visitor VARCHAR, home VARCHAR)
SELECT decision FROM table_name_71 WHERE visitor = "detroit" AND home = "ottawa"
Write a SQL query that answers the following question: What is the score on March 18?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_97 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_97 WHERE date = "march 18"
Write a SQL query that answers the following question: Who had the highest points on March 27?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_61 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_name_61 WHERE date = "march 27"
Write a SQL query that answers the following question: Name the average Lead Margin on november 13-november 19, 2007?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_86 (lead_margin INTEGER, dates_administered VARCHAR)
SELECT AVG(lead_margin) FROM table_name_86 WHERE dates_administered = "november 13-november 19, 2007"
Write a SQL query that answers the following question: For week 15, what was the total number of attendance recorded?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_66 (attendance VARCHAR, week VARCHAR)
SELECT COUNT(attendance) FROM table_name_66 WHERE week = 15
Write a SQL query that answers the following question: what is the score when the home team is king's lynn?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_66 (score VARCHAR, home_team VARCHAR)
SELECT score FROM table_name_66 WHERE home_team = "king's lynn"
Write a SQL query that answers the following question: what is the home team when the away team is frickley colliery?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_17 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_17 WHERE away_team = "frickley colliery"
Write a SQL query that answers the following question: what is the tie no, on 24 november 1971 and the away team is king's lynn?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_65 (tie_no VARCHAR, date VARCHAR, away_team VARCHAR)
SELECT tie_no FROM table_name_65 WHERE date = "24 november 1971" AND away_team = "king's lynn"
Write a SQL query that answers the following question: What is the Longitude of the 61.0s Latitude?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_27 (longitude VARCHAR, latitude VARCHAR)
SELECT longitude FROM table_name_27 WHERE latitude = "61.0s"
Write a SQL query that answers the following question: What name has a longitude of 213.0e?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_6 (name VARCHAR, longitude VARCHAR)
SELECT name FROM table_name_6 WHERE longitude = "213.0e"
Write a SQL query that answers the following question: Which type had an unknown manufacturer?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_57 (type VARCHAR, manufacturer VARCHAR)
SELECT type FROM table_name_57 WHERE manufacturer = "unknown"
Write a SQL query that answers the following question: What is the name of the dreamworks experience from Ferrari?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_30 (name VARCHAR, themed_area VARCHAR, manufacturer VARCHAR)
SELECT name FROM table_name_30 WHERE themed_area = "dreamworks experience" AND manufacturer = "ferrari"
Write a SQL query that answers the following question: Which type opened in 1982?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_12 (type VARCHAR, opened VARCHAR)
SELECT type FROM table_name_12 WHERE opened = "1982"
Write a SQL query that answers the following question: What themed area opened in 2010 as an animal show?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_35 (themed_area VARCHAR, type VARCHAR, opened VARCHAR)
SELECT themed_area FROM table_name_35 WHERE type = "animal show" AND opened = "2010"
Write a SQL query that answers the following question: Which visitor lives in Minnesota?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_23 (visitor VARCHAR, home VARCHAR)
SELECT visitor FROM table_name_23 WHERE home = "minnesota"
Write a SQL query that answers the following question: What was the score on november 21?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_2 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_2 WHERE date = "november 21"
Write a SQL query that answers the following question: Who has the lead in the season where Cathrine Norberg is second and Anna Rindeskog is third?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_70 (lead VARCHAR, second VARCHAR, third VARCHAR)
SELECT lead FROM table_name_70 WHERE second = "cathrine norberg" AND third = "anna rindeskog"
Write a SQL query that answers the following question: What is the score of game 21?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_96 (score VARCHAR, game VARCHAR)
SELECT score FROM table_name_96 WHERE game = 21
Write a SQL query that answers the following question: What is the score of the game on December 22?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_81 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_81 WHERE date = "december 22"
Write a SQL query that answers the following question: What is the record when the game is greater than 24?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_65 (record VARCHAR, game INTEGER)
SELECT record FROM table_name_65 WHERE game > 24
Write a SQL query that answers the following question: What is the highest Market Value (billion $), when Rank is 02 2, and when Sales (billion $) is greater than 113.1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_99 (market_value__billion_ INTEGER, rank VARCHAR, sales__billion_$_ VARCHAR)
SELECT MAX(market_value__billion_) AS $_ FROM table_name_99 WHERE rank = "02 2" AND sales__billion_$_ > 113.1
Write a SQL query that answers the following question: What is Rank, when Headquarters is United Kingdom, and when Sales (billion $) is 370.9?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_14 (rank VARCHAR, headquarters VARCHAR, sales__billion_$_ VARCHAR)
SELECT rank FROM table_name_14 WHERE headquarters = "united kingdom" AND sales__billion_$_ = 370.9
Write a SQL query that answers the following question: What is the lowest Profits (billion $), when Market Value (billion $) is less than 201.3, when Headquarters is United States, and when Company is JPMorgan Chase?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_83 (profits__billion_ INTEGER, company VARCHAR, market_value__billion_$_ VARCHAR, headquarters VARCHAR)
SELECT MIN(profits__billion_) AS $_ FROM table_name_83 WHERE market_value__billion_$_ < 201.3 AND headquarters = "united states" AND company = "jpmorgan chase"
Write a SQL query that answers the following question: What is the status of the community that has an area larger than 5.2 sq km, and a Census Ranking of 2,531 of 5,008?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_60 (status VARCHAR, area_km_2 VARCHAR, census_ranking VARCHAR)
SELECT status FROM table_name_60 WHERE area_km_2 > 5.2 AND census_ranking = "2,531 of 5,008"
Write a SQL query that answers the following question: What is saint-andré's population?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_62 (population VARCHAR, official_name VARCHAR)
SELECT population FROM table_name_62 WHERE official_name = "saint-andré"
Write a SQL query that answers the following question: what's the results of week 12?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_57 (result VARCHAR, week VARCHAR)
SELECT result FROM table_name_57 WHERE week = 12
Write a SQL query that answers the following question: What opponent has 76,202 attendance ?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_5 (opponent VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_5 WHERE attendance = "76,202"
Write a SQL query that answers the following question: What is the FIS Nordic World Ski Championship years when the winter Olympics took place in 1968?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_93 (fis_nordic_world_ski_championships VARCHAR, winter_olympics VARCHAR)
SELECT fis_nordic_world_ski_championships FROM table_name_93 WHERE winter_olympics = 1968
Write a SQL query that answers the following question: Which country has a FIS Nordic World Ski Championship before 1989, was in the winter Olympics before 1980, and has a Holmenkollen of 1956?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_26 (country VARCHAR, holmenkollen VARCHAR, fis_nordic_world_ski_championships VARCHAR, winter_olympics VARCHAR)
SELECT country FROM table_name_26 WHERE fis_nordic_world_ski_championships < 1989 AND winter_olympics < 1980 AND holmenkollen = "1956"
Write a SQL query that answers the following question: When the Grids is less than 2 what are the total laps?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_87 (laps VARCHAR, grid INTEGER)
SELECT COUNT(laps) FROM table_name_87 WHERE grid < 2
Write a SQL query that answers the following question: Which Player has a To par of –4?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_93 (player VARCHAR, to_par VARCHAR)
SELECT player FROM table_name_93 WHERE to_par = "–4"
Write a SQL query that answers the following question: Which Place has a Score larger than 68, and a Player of david ogrin?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_63 (place VARCHAR, score VARCHAR, player VARCHAR)
SELECT place FROM table_name_63 WHERE score > 68 AND player = "david ogrin"
Write a SQL query that answers the following question: Which Player has a Place of t2?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_31 (player VARCHAR, place VARCHAR)
SELECT player FROM table_name_31 WHERE place = "t2"
Write a SQL query that answers the following question: What event did Mikhail Avetisyan win by method of DQ (eye gouging)?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_98 (event VARCHAR, method VARCHAR)
SELECT event FROM table_name_98 WHERE method = "dq (eye gouging)"
Write a SQL query that answers the following question: For the item that has a Gecko of 'font', what is the KHTML value?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_11 (khtml VARCHAR, gecko VARCHAR)
SELECT khtml FROM table_name_11 WHERE gecko = "font"
Write a SQL query that answers the following question: What is the Prince XML value for the engine that has a Gecko value of 'no' and webkit value of 'nightly build'?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_63 (prince_xml VARCHAR, gecko VARCHAR, webkit VARCHAR)
SELECT prince_xml FROM table_name_63 WHERE gecko = "no" AND webkit = "nightly build"
Write a SQL query that answers the following question: What is the Gecko value for the item that has a Trident value of 'font'?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_34 (gecko VARCHAR, trident VARCHAR)
SELECT gecko FROM table_name_34 WHERE trident = "font"
Write a SQL query that answers the following question: What is the Gecko value for the item that has a Prince XML value of 'no' and a KHTML value of 'yes'?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_6 (gecko VARCHAR, prince_xml VARCHAR, khtml VARCHAR)
SELECT gecko FROM table_name_6 WHERE prince_xml = "yes" AND khtml = "yes"
Write a SQL query that answers the following question: Which Trident version has a Gecko value of 19.0?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_57 (trident VARCHAR, gecko VARCHAR)
SELECT trident FROM table_name_57 WHERE gecko = "19.0"
Write a SQL query that answers the following question: For the item with a Prince XML value of 'font', what is the WebKit value?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_71 (webkit VARCHAR, prince_xml VARCHAR)
SELECT webkit FROM table_name_71 WHERE prince_xml = "font"
Write a SQL query that answers the following question: Which Played has a Team of cerro corá, and Losses larger than 4?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_55 (played INTEGER, team VARCHAR, losses VARCHAR)
SELECT AVG(played) FROM table_name_55 WHERE team = "cerro corá" AND losses > 4
Write a SQL query that answers the following question: Which Losses has Scored of 9, and Points larger than 8?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_87 (losses INTEGER, scored VARCHAR, points VARCHAR)
SELECT AVG(losses) FROM table_name_87 WHERE scored = 9 AND points > 8
Write a SQL query that answers the following question: On Race 14 when the FLap is larger than 1, what is the podium number?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_42 (podium VARCHAR, race VARCHAR, flap VARCHAR)
SELECT COUNT(podium) FROM table_name_42 WHERE race = 14 AND flap > 1
Write a SQL query that answers the following question: When the Flap is less than 15 and the podium is larger than 11, what is the pole?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_95 (pole VARCHAR, flap VARCHAR, podium VARCHAR)
SELECT pole FROM table_name_95 WHERE flap < 15 AND podium > 11
Write a SQL query that answers the following question: When the pole is larger than 0 and the podium is less than 44, with a race number less than 16, what is the FLap?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_79 (flap VARCHAR, race VARCHAR, pole VARCHAR, podium VARCHAR)
SELECT flap FROM table_name_79 WHERE pole > 0 AND podium < 44 AND race < 16
Write a SQL query that answers the following question: What is the average Week, when Opponent is Minnesota Vikings?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_16 (week INTEGER, opponent VARCHAR)
SELECT AVG(week) FROM table_name_16 WHERE opponent = "minnesota vikings"
Write a SQL query that answers the following question: What is Opponent, when Attendance is 58,836?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_19 (opponent VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_19 WHERE attendance = "58,836"
Write a SQL query that answers the following question: Which engine of Rob Walker Racing Team has 47 points and F tyres?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_27 (engine VARCHAR, entrant VARCHAR, points VARCHAR, tyres VARCHAR)
SELECT engine FROM table_name_27 WHERE points = "47" AND tyres = "f" AND entrant = "rob walker racing team"
Write a SQL query that answers the following question: Which entrant has 49 points and a Mclaren M7A chassis?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_66 (entrant VARCHAR, points VARCHAR, chassis VARCHAR)
SELECT entrant FROM table_name_66 WHERE points = "49" AND chassis = "mclaren m7a"
Write a SQL query that answers the following question: How many points did Bob Gerard Racing have in 1965?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_37 (points VARCHAR, entrant VARCHAR, year VARCHAR)
SELECT points FROM table_name_37 WHERE entrant = "bob gerard racing" AND year = 1965
Write a SQL query that answers the following question: Which entrant had a Brabham BT10 chassis before 1965?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_12 (entrant VARCHAR, year VARCHAR, chassis VARCHAR)
SELECT entrant FROM table_name_12 WHERE year < 1965 AND chassis = "brabham bt10"
Write a SQL query that answers the following question: What is the Attendance on September 28, 1997?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_53 (attendance VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_53 WHERE date = "september 28, 1997"
Write a SQL query that answers the following question: What was the Opponent on August 31, 1997?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_15 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_15 WHERE date = "august 31, 1997"
Write a SQL query that answers the following question: What was the Attendance on Week 10?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_34 (attendance VARCHAR, week VARCHAR)
SELECT attendance FROM table_name_34 WHERE week = 10
Write a SQL query that answers the following question: How many Points have a Home of pittsburgh, and a Score of 1–7?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_11 (points INTEGER, home VARCHAR, score VARCHAR)
SELECT SUM(points) FROM table_name_11 WHERE home = "pittsburgh" AND score = "1–7"
Write a SQL query that answers the following question: Which Date has a Record of 7–7–1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_49 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_49 WHERE record = "7–7–1"
Write a SQL query that answers the following question: Which Date has a Record of 11–10–2?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_92 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_92 WHERE record = "11–10–2"
Write a SQL query that answers the following question: Which position had 3 podiums and F/laps of 4?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_14 (position VARCHAR, podiums VARCHAR, f_laps VARCHAR)
SELECT position FROM table_name_14 WHERE podiums = "3" AND f_laps = "4"
Write a SQL query that answers the following question: What is the number of races associated with Team ASM and 0 poles?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_19 (races VARCHAR, poles VARCHAR, team VARCHAR)
SELECT races FROM table_name_19 WHERE poles = "0" AND team = "asm"
Write a SQL query that answers the following question: Which team had 1 race, 1 F/lap and in the series 24 hours of Nurburgring?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_44 (team VARCHAR, series VARCHAR, races VARCHAR, f_laps VARCHAR)
SELECT team FROM table_name_44 WHERE races = "1" AND f_laps = "1" AND series = "24 hours of nurburgring"
Write a SQL query that answers the following question: What is the number of podiums associated with 4 wins?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_89 (podiums VARCHAR, wins VARCHAR)
SELECT podiums FROM table_name_89 WHERE wins = "4"
Write a SQL query that answers the following question: What is the number of races associated with 7 podiums and a position of 4th?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_93 (races VARCHAR, position VARCHAR, podiums VARCHAR)
SELECT races FROM table_name_93 WHERE position = "4th" AND podiums = "7"
Write a SQL query that answers the following question: What is the F/Laps value associated with a position of 3rd?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_97 (f_laps VARCHAR, position VARCHAR)
SELECT f_laps FROM table_name_97 WHERE position = "3rd"
Write a SQL query that answers the following question: Can you tell me the Opponent that has the Time of 0:20?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_72 (opponent VARCHAR, time VARCHAR)
SELECT opponent FROM table_name_72 WHERE time = "0:20"
Write a SQL query that answers the following question: Can you tell me the Time that has the Opponent of phil baroni?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_75 (time VARCHAR, opponent VARCHAR)
SELECT time FROM table_name_75 WHERE opponent = "phil baroni"
Write a SQL query that answers the following question: Can you tell me the lowest Round that has the Location of indiana, united states, and the Method of submission (guillotine choke)?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_6 (round INTEGER, location VARCHAR, method VARCHAR)
SELECT MIN(round) FROM table_name_6 WHERE location = "indiana, united states" AND method = "submission (guillotine choke)"
Write a SQL query that answers the following question: When was la vista built?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_9 (built VARCHAR, location VARCHAR)
SELECT built FROM table_name_9 WHERE location = "la vista"
Write a SQL query that answers the following question: When was the sargent bridge built?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_61 (built VARCHAR, name VARCHAR)
SELECT built FROM table_name_61 WHERE name = "sargent bridge"
Write a SQL query that answers the following question: What's the location for the country of platte?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_64 (location VARCHAR, county VARCHAR)
SELECT location FROM table_name_64 WHERE county = "platte"
Write a SQL query that answers the following question: what is the listing date for nuckolls county?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_79 (listed VARCHAR, county VARCHAR)
SELECT listed FROM table_name_79 WHERE county = "nuckolls"
Write a SQL query that answers the following question: what's the listing date for the verdigris creek bridge in royal of antelope county?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_83 (listed VARCHAR, name VARCHAR, county VARCHAR, location VARCHAR)
SELECT listed FROM table_name_83 WHERE county = "antelope" AND location = "royal" AND name = "verdigris creek bridge"
Write a SQL query that answers the following question: what's the county name for the republican river bridge listed on 1992-06-29?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_36 (county VARCHAR, listed VARCHAR, name VARCHAR)
SELECT county FROM table_name_36 WHERE listed = "1992-06-29" AND name = "republican river bridge"
Write a SQL query that answers the following question: what is the to par when the place is t10 and the score is 72-74-71-69=286?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_26 (to_par VARCHAR, place VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_26 WHERE place = "t10" AND score = 72 - 74 - 71 - 69 = 286
Write a SQL query that answers the following question: what is the to par when the player is hale irwin?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_80 (to_par VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_80 WHERE player = "hale irwin"