instruction
stringlengths
67
299
input
stringlengths
88
550
output
stringlengths
32
484
Write a SQL query that answers the following question: Elevation of 12,183 feet 3713 m is what average route?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_12 (route INTEGER, elevation VARCHAR)
SELECT AVG(route) FROM table_name_12 WHERE elevation = "12,183 feet 3713 m"
Write a SQL query that answers the following question: What Opponent has a Results¹ of 1:3?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_28 (opponent VARCHAR, results¹ VARCHAR)
SELECT opponent FROM table_name_28 WHERE results¹ = "1:3"
Write a SQL query that answers the following question: On what Date was the Results¹ 1:2?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_76 (date VARCHAR, results¹ VARCHAR)
SELECT date FROM table_name_76 WHERE results¹ = "1:2"
Write a SQL query that answers the following question: What City had Results¹ of 1:2?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_39 (city VARCHAR, results¹ VARCHAR)
SELECT city FROM table_name_39 WHERE results¹ = "1:2"
Write a SQL query that answers the following question: On what Date was Wales the Opponent?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_76 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_76 WHERE opponent = "wales"
Write a SQL query that answers the following question: In what City was Bulgaria the Opponent with Results¹ of 1:0?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_6 (city VARCHAR, results¹ VARCHAR, opponent VARCHAR)
SELECT city FROM table_name_6 WHERE results¹ = "1:0" AND opponent = "bulgaria"
Write a SQL query that answers the following question: What Vancouver canucks game was on a date closest to November 4?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_60 (game INTEGER, opponent VARCHAR, november VARCHAR)
SELECT MAX(game) FROM table_name_60 WHERE opponent = "vancouver canucks" AND november < 4
Write a SQL query that answers the following question: Name the year for jerry sichting
The relevant table was constructed using the following SQL : CREATE TABLE table_name_26 (year VARCHAR, color_commentator_s_ VARCHAR)
SELECT year FROM table_name_26 WHERE color_commentator_s_ = "jerry sichting"
Write a SQL query that answers the following question: Name the studio host for glenn ordway and jerry sichting with year of 1993-94
The relevant table was constructed using the following SQL : CREATE TABLE table_name_91 (studio_host VARCHAR, year VARCHAR, play_by_play VARCHAR, color_commentator_s_ VARCHAR)
SELECT studio_host FROM table_name_91 WHERE play_by_play = "glenn ordway" AND color_commentator_s_ = "jerry sichting" AND year = "1993-94"
Write a SQL query that answers the following question: Name the flagship station for cedric maxwell and year of 1995-96
The relevant table was constructed using the following SQL : CREATE TABLE table_name_74 (flagship_station VARCHAR, color_commentator_s_ VARCHAR, year VARCHAR)
SELECT flagship_station FROM table_name_74 WHERE color_commentator_s_ = "cedric maxwell" AND year = "1995-96"
Write a SQL query that answers the following question: Who was the architect of the 10 floor building with a height of 42 M?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_68 (architect VARCHAR, floors VARCHAR, height_ VARCHAR, m VARCHAR)
SELECT architect FROM table_name_68 WHERE height_[m] = 42 AND floors = 10
Write a SQL query that answers the following question: What is the height of the building built by architects Ross and Macfarlane?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_27 (height_ VARCHAR, m VARCHAR, architect VARCHAR)
SELECT height_[m] FROM table_name_27 WHERE architect = "ross and macfarlane"
Write a SQL query that answers the following question: Who was the architect that built the Electric Railway Chambers before 1915?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_43 (architect VARCHAR, built VARCHAR, building VARCHAR)
SELECT architect FROM table_name_43 WHERE built < 1915 AND building = "electric railway chambers"
Write a SQL query that answers the following question: What is the Time on july 18 that has a Loss of lilly (3-3)?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_34 (time VARCHAR, date VARCHAR, loss VARCHAR)
SELECT time FROM table_name_34 WHERE date = "july 18" AND loss = "lilly (3-3)"
Write a SQL query that answers the following question: Which Opponent has a Record of 43-56?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_75 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_name_75 WHERE record = "43-56"
Write a SQL query that answers the following question: What is the Score on July 18 that has Record of 41-51?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_71 (score VARCHAR, date VARCHAR, record VARCHAR)
SELECT score FROM table_name_71 WHERE date = "july 18" AND record = "41-51"
Write a SQL query that answers the following question: Which Record is on july 31?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_23 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_23 WHERE date = "july 31"
Write a SQL query that answers the following question: Which Opponent has a Loss of weaver (9-9)?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_18 (opponent VARCHAR, loss VARCHAR)
SELECT opponent FROM table_name_18 WHERE loss = "weaver (9-9)"
Write a SQL query that answers the following question: Which Season was the Poles greater than 14?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_27 (season VARCHAR, poles INTEGER)
SELECT season FROM table_name_27 WHERE poles > 14
Write a SQL query that answers the following question: Which is the highest Season with a Percentage of 67% and Alberto Ascari as a Driver?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_7 (season INTEGER, percentage VARCHAR, driver VARCHAR)
SELECT MAX(season) FROM table_name_7 WHERE percentage = "67%" AND driver = "alberto ascari"
Write a SQL query that answers the following question: Name the Driver that has Races greater than 16?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_16 (driver VARCHAR, races INTEGER)
SELECT driver FROM table_name_16 WHERE races > 16
Write a SQL query that answers the following question: What is the average Long that has a GP-GS less than 14, a AVg/G less than 0.8 and a Gain less than 3 and a Loss greater than 8?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_34 (long INTEGER, loss VARCHAR, gain VARCHAR, gp_gs VARCHAR, avg_g VARCHAR)
SELECT AVG(long) FROM table_name_34 WHERE gp_gs < 14 AND avg_g < 0.8 AND gain < 3 AND loss > 8
Write a SQL query that answers the following question: What is the lowest Avg/G with a Long less than 0?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_99 (avg_g INTEGER, long INTEGER)
SELECT MIN(avg_g) FROM table_name_99 WHERE long < 0
Write a SQL query that answers the following question: What is the amount of Avg/G with a Name of blaine gabbert and a Long greater than 30?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_79 (avg_g INTEGER, name VARCHAR, long VARCHAR)
SELECT SUM(avg_g) FROM table_name_79 WHERE name = "blaine gabbert" AND long > 30
Write a SQL query that answers the following question: What is the total number of Long with a Av/g of 124.9 but Loss greater than 0?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_3 (long VARCHAR, loss VARCHAR, avg_g VARCHAR)
SELECT COUNT(long) FROM table_name_3 WHERE loss > 0 AND avg_g = 124.9
Write a SQL query that answers the following question: What date has parlophone as the label, and lp as a format?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_17 (date VARCHAR, label VARCHAR, format VARCHAR)
SELECT date FROM table_name_17 WHERE label = "parlophone" AND format = "lp"
Write a SQL query that answers the following question: What school has oregon as the state, and ashland as the city?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_37 (school VARCHAR, state VARCHAR, city VARCHAR)
SELECT school FROM table_name_37 WHERE state = "oregon" AND city = "ashland"
Write a SQL query that answers the following question: What conference has mayville state as the school?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_71 (conference VARCHAR, school VARCHAR)
SELECT conference FROM table_name_71 WHERE school = "mayville state"
Write a SQL query that answers the following question: What school has belleville as the city?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_37 (school VARCHAR, city VARCHAR)
SELECT school FROM table_name_37 WHERE city = "belleville"
Write a SQL query that answers the following question: What city has trojans as the team, and taylor as the school?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_43 (city VARCHAR, team VARCHAR, school VARCHAR)
SELECT city FROM table_name_43 WHERE team = "trojans" AND school = "taylor"
Write a SQL query that answers the following question: What team has great plains as the conference, and concordia (ne) as the school?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_58 (team VARCHAR, conference VARCHAR, school VARCHAR)
SELECT team FROM table_name_58 WHERE conference = "great plains" AND school = "concordia (ne)"
Write a SQL query that answers the following question: What school is in hillsboro city?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_53 (school VARCHAR, city VARCHAR)
SELECT school FROM table_name_53 WHERE city = "hillsboro"
Write a SQL query that answers the following question: How many games have a February larger than 11, and a Record of 23-7-8?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_92 (game VARCHAR, february VARCHAR, record VARCHAR)
SELECT COUNT(game) FROM table_name_92 WHERE february > 11 AND record = "23-7-8"
Write a SQL query that answers the following question: How much February has a Game larger than 37, and an Opponent of chicago black hawks?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_95 (february VARCHAR, game VARCHAR, opponent VARCHAR)
SELECT COUNT(february) FROM table_name_95 WHERE game > 37 AND opponent = "chicago black hawks"
Write a SQL query that answers the following question: Which February has a Game of 40?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_91 (february VARCHAR, game VARCHAR)
SELECT february FROM table_name_91 WHERE game = 40
Write a SQL query that answers the following question: Which Record has a February smaller than 8, and an Opponent of montreal canadiens?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_51 (record VARCHAR, february VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_51 WHERE february < 8 AND opponent = "montreal canadiens"
Write a SQL query that answers the following question: Which Score has a Game larger than 40, and a Record of 25-10-8?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_81 (score VARCHAR, game VARCHAR, record VARCHAR)
SELECT score FROM table_name_81 WHERE game > 40 AND record = "25-10-8"
Write a SQL query that answers the following question: What was the team performance in 1977?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_28 (team_performance VARCHAR, year VARCHAR)
SELECT team_performance FROM table_name_28 WHERE year = 1977
Write a SQL query that answers the following question: What was the position of the player whose team lost super bowl xxv before 1992, with a team defense rank larger than 3?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_47 (position VARCHAR, team_performance VARCHAR, team_defense_rank VARCHAR, year VARCHAR)
SELECT position FROM table_name_47 WHERE team_defense_rank > 3 AND year < 1992 AND team_performance = "lost super bowl xxv"
Write a SQL query that answers the following question: What round was Joe Patton selected with a pick over 68?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_94 (round VARCHAR, pick VARCHAR, player VARCHAR)
SELECT round FROM table_name_94 WHERE pick > 68 AND player = "joe patton"
Write a SQL query that answers the following question: Which Sail number has a Position smaller than 2?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_47 (sail_number VARCHAR, position INTEGER)
SELECT sail_number FROM table_name_47 WHERE position < 2
Write a SQL query that answers the following question: WHICH State/country that has ray roberts?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_43 (state_country VARCHAR, skipper VARCHAR)
SELECT state_country FROM table_name_43 WHERE skipper = "ray roberts"
Write a SQL query that answers the following question: What surface did Smeets play on during the Kuwait tournament?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_30 (surface VARCHAR, tournament VARCHAR)
SELECT surface FROM table_name_30 WHERE tournament = "kuwait"
Write a SQL query that answers the following question: What tournament did Smeets play against Mark nielsen?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_11 (tournament VARCHAR, opponent_in_the_final VARCHAR)
SELECT tournament FROM table_name_11 WHERE opponent_in_the_final = "mark nielsen"
Write a SQL query that answers the following question: Who was the opponent during the tournament in Kuwait?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_91 (opponent_in_the_final VARCHAR, tournament VARCHAR)
SELECT opponent_in_the_final FROM table_name_91 WHERE tournament = "kuwait"
Write a SQL query that answers the following question: What is the weight of the player from the vk primorac kotor club?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_42 (weight VARCHAR, club VARCHAR)
SELECT weight FROM table_name_42 WHERE club = "vk primorac kotor"
Write a SQL query that answers the following question: What is the weight of the player from pvk jadran club?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_96 (weight VARCHAR, club VARCHAR)
SELECT weight FROM table_name_96 WHERE club = "pvk jadran"
Write a SQL query that answers the following question: What is the name of the player from club pro recco?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_87 (name_v_t_e VARCHAR, club VARCHAR)
SELECT name_v_t_e FROM table_name_87 WHERE club = "pro recco"
Write a SQL query that answers the following question: What is the height of the player from club vk primorac kotor who plays gk?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_96 (height VARCHAR, pos VARCHAR, club VARCHAR)
SELECT height FROM table_name_96 WHERE pos = "gk" AND club = "vk primorac kotor"
Write a SQL query that answers the following question: What is Team 1 where Team 2 is gombe united f.c.?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_23 (team_1 VARCHAR, team_2 VARCHAR)
SELECT team_1 FROM table_name_23 WHERE team_2 = "gombe united f.c."
Write a SQL query that answers the following question: What is Team 1 where Team 2 is al tahrir?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_13 (team_1 VARCHAR, team_2 VARCHAR)
SELECT team_1 FROM table_name_13 WHERE team_2 = "al tahrir"
Write a SQL query that answers the following question: What is the 2nd leg where Team 2 is fc 105 libreville?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_9 (team_2 VARCHAR)
SELECT 2 AS nd_leg FROM table_name_9 WHERE team_2 = "fc 105 libreville"
Write a SQL query that answers the following question: What was the course called that had an Edition of 117th?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_68 (course VARCHAR, edition VARCHAR)
SELECT course FROM table_name_68 WHERE edition = "117th"
Write a SQL query that answers the following question: What was the earliest year that had a location of Brookline, Massachusetts?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_78 (year INTEGER, location VARCHAR)
SELECT MIN(year) FROM table_name_78 WHERE location = "brookline, massachusetts"
Write a SQL query that answers the following question: What year had an edition of 115th?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_21 (year INTEGER, edition VARCHAR)
SELECT AVG(year) FROM table_name_21 WHERE edition = "115th"
Write a SQL query that answers the following question: How many points did ginger have when she was ranked 5th on a 350cc class bike?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_73 (points VARCHAR, class VARCHAR, rank VARCHAR)
SELECT COUNT(points) FROM table_name_73 WHERE class = "350cc" AND rank = "5th"
Write a SQL query that answers the following question: What year was she ranked 16th with over 12 points?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_29 (year VARCHAR, rank VARCHAR, points VARCHAR)
SELECT COUNT(year) FROM table_name_29 WHERE rank = "16th" AND points > 12
Write a SQL query that answers the following question: What year was she on a 350cc class bike, ranked 16th, with over 0 wins?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_85 (year INTEGER, wins VARCHAR, class VARCHAR, rank VARCHAR)
SELECT SUM(year) FROM table_name_85 WHERE class = "350cc" AND rank = "16th" AND wins > 0
Write a SQL query that answers the following question: How many points did she have with team bultaco, ranked 6th?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_40 (points INTEGER, team VARCHAR, rank VARCHAR)
SELECT SUM(points) FROM table_name_40 WHERE team = "bultaco" AND rank = "6th"
Write a SQL query that answers the following question: What is the Kashmiri word for the Indonesian word senin?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_90 (kashmiri VARCHAR, indonesian VARCHAR)
SELECT kashmiri FROM table_name_90 WHERE indonesian = "senin"
Write a SQL query that answers the following question: What is the Turkish word for the Bangla word shombar সোমবার?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_51 (turkish VARCHAR, bangla VARCHAR)
SELECT turkish FROM table_name_51 WHERE bangla = "shombar সোমবার"
Write a SQL query that answers the following question: What is the Pashto word for the Somali word talaado?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_24 (pashto VARCHAR, somali VARCHAR)
SELECT pashto FROM table_name_24 WHERE somali = "talaado"
Write a SQL query that answers the following question: What is the Punjabi (Pakistan) word for the Kurdish word یـــەک شـەمـمـە yak sham?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_58 (punjabi__pakistan_ VARCHAR, kurdish VARCHAR)
SELECT punjabi__pakistan_ FROM table_name_58 WHERE kurdish = "یـــەک شـەمـمـە yak sham"
Write a SQL query that answers the following question: What is the Maltese word for the Malay word rabu?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_6 (maltese VARCHAR, malay VARCHAR)
SELECT maltese FROM table_name_6 WHERE malay = "rabu"
Write a SQL query that answers the following question: What is the Pashto word for the Malayalam word വ്യാഴം vyazham?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_76 (pashto VARCHAR, malayalam VARCHAR)
SELECT pashto FROM table_name_76 WHERE malayalam = "വ്യാഴം vyazham"
Write a SQL query that answers the following question: Which Score has a Date of june 22?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_80 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_80 WHERE date = "june 22"
Write a SQL query that answers the following question: How much Attendance has an Opponent of rockies, and a Record of 32-30?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_34 (attendance INTEGER, opponent VARCHAR, record VARCHAR)
SELECT SUM(attendance) FROM table_name_34 WHERE opponent = "rockies" AND record = "32-30"
Write a SQL query that answers the following question: Who was the opponent in which the bout ended in round 2?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_71 (opponent VARCHAR, round VARCHAR)
SELECT opponent FROM table_name_71 WHERE round = 2
Write a SQL query that answers the following question: What was the method of the bout lasting 4:15?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_82 (method VARCHAR, time VARCHAR)
SELECT method FROM table_name_82 WHERE time = "4:15"
Write a SQL query that answers the following question: What was the record after the bout lasting 4:15?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_57 (record VARCHAR, time VARCHAR)
SELECT record FROM table_name_57 WHERE time = "4:15"
Write a SQL query that answers the following question: How many Pick has a Round smaller than 13, and a Position of fullback?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_64 (pick VARCHAR, round VARCHAR, position VARCHAR)
SELECT COUNT(pick) FROM table_name_64 WHERE round < 13 AND position = "fullback"
Write a SQL query that answers the following question: WHo has a Position of end and a School/Club Team of oregon state?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_22 (player VARCHAR, position VARCHAR, school_club_team VARCHAR)
SELECT player FROM table_name_22 WHERE position = "end" AND school_club_team = "oregon state"
Write a SQL query that answers the following question: Which Round has a Player of brunel christensen and a Pick smaller than 293?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_38 (round INTEGER, player VARCHAR, pick VARCHAR)
SELECT MIN(round) FROM table_name_38 WHERE player = "brunel christensen" AND pick < 293
Write a SQL query that answers the following question: What score was on July 25?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_26 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_26 WHERE date = "july 25"
Write a SQL query that answers the following question: Which rule has The Event of n/a, The Result of loss, and The Location of winsford england?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_2 (rules VARCHAR, location VARCHAR, event VARCHAR, result VARCHAR)
SELECT rules FROM table_name_2 WHERE event = "n/a" AND result = "loss" AND location = "winsford england"
Write a SQL query that answers the following question: Which Opponent has a Round of 4, and a Rules of thai boxing?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_16 (opponent VARCHAR, round VARCHAR, rules VARCHAR)
SELECT opponent FROM table_name_16 WHERE round = "4" AND rules = "thai boxing"
Write a SQL query that answers the following question: Which Opponent has a Round of 3, a Time of n/a, and a Rules of n/a?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_38 (opponent VARCHAR, rules VARCHAR, round VARCHAR, time VARCHAR)
SELECT opponent FROM table_name_38 WHERE round = "3" AND time = "n/a" AND rules = "n/a"
Write a SQL query that answers the following question: Where has a Rules of thai boxing, and a Round of n/a, and an Opponent of everton crawford?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_99 (location VARCHAR, opponent VARCHAR, rules VARCHAR, round VARCHAR)
SELECT location FROM table_name_99 WHERE rules = "thai boxing" AND round = "n/a" AND opponent = "everton crawford"
Write a SQL query that answers the following question: WHich Rules has a Method of ko (punch)?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_26 (rules VARCHAR, method VARCHAR)
SELECT rules FROM table_name_26 WHERE method = "ko (punch)"
Write a SQL query that answers the following question: What torque does a 1905 cc capacity have?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_63 (torque VARCHAR, capacity VARCHAR)
SELECT torque FROM table_name_63 WHERE capacity = "1905 cc"
Write a SQL query that answers the following question: What torque does 1.9 diesel with 1905 cc have?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_30 (torque VARCHAR, name VARCHAR, capacity VARCHAR)
SELECT torque FROM table_name_30 WHERE name = "1.9 diesel" AND capacity = "1905 cc"
Write a SQL query that answers the following question: What torque does daewoo have?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_18 (torque VARCHAR, type VARCHAR)
SELECT torque FROM table_name_18 WHERE type = "daewoo"
Write a SQL query that answers the following question: Score of 3–4, and a Attendance larger than 34,609 happened on what date?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_39 (date VARCHAR, score VARCHAR, attendance VARCHAR)
SELECT date FROM table_name_39 WHERE score = "3–4" AND attendance > 34 OFFSET 609
Write a SQL query that answers the following question: Record of 12–15 happened on what date?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_85 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_85 WHERE record = "12–15"
Write a SQL query that answers the following question: Date of april 9 had what score?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_11 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_11 WHERE date = "april 9"
Write a SQL query that answers the following question: Record of 11–12 involved what average attendance figures?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_10 (attendance INTEGER, record VARCHAR)
SELECT AVG(attendance) FROM table_name_10 WHERE record = "11–12"
Write a SQL query that answers the following question: What predecessor has a district less than 11, 68th as the Congress, and may 1, 1923 as the date?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_54 (predecessor VARCHAR, date VARCHAR, district VARCHAR, congress VARCHAR)
SELECT predecessor FROM table_name_54 WHERE district < 11 AND congress = "68th" AND date = "may 1, 1923"
Write a SQL query that answers the following question: What Hyper Transport version has 22.4 gb/s of Max. Aggregate bandwidth?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_51 (hypertransport_version VARCHAR, max_aggregate_bandwidth__bi_directional_ VARCHAR)
SELECT hypertransport_version FROM table_name_51 WHERE max_aggregate_bandwidth__bi_directional_ = "22.4 gb/s"
Write a SQL query that answers the following question: What is the Max Aggregate bandwidth with a HyperTransport of 2?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_17 (max_aggregate_bandwidth__bi_directional_ VARCHAR, hypertransport_version VARCHAR)
SELECT max_aggregate_bandwidth__bi_directional_ FROM table_name_17 WHERE hypertransport_version = 2
Write a SQL query that answers the following question: Who was the opposing team during the game in Zagreb?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_80 (opponent VARCHAR, city VARCHAR)
SELECT opponent FROM table_name_80 WHERE city = "zagreb"
Write a SQL query that answers the following question: The record of 35-31 has what score?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_52 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_52 WHERE record = "35-31"
Write a SQL query that answers the following question: Which Manufacturer has 1 lap and had an accident?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_69 (manufacturer VARCHAR, laps VARCHAR, time_retired VARCHAR)
SELECT manufacturer FROM table_name_69 WHERE laps = 1 AND time_retired = "accident"
Write a SQL query that answers the following question: Which rider has a Manufacturer of honda with a time of +44.814?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_23 (rider VARCHAR, manufacturer VARCHAR, time_retired VARCHAR)
SELECT rider FROM table_name_23 WHERE manufacturer = "honda" AND time_retired = "+44.814"
Write a SQL query that answers the following question: How many grids have a time of +1:21.239 and more than 25 laps?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_39 (grid VARCHAR, time_retired VARCHAR, laps VARCHAR)
SELECT COUNT(grid) FROM table_name_39 WHERE time_retired = "+1:21.239" AND laps > 25
Write a SQL query that answers the following question: What is the average episode number on 19 March 1993 with Jim Sweeney as performer 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_29 (episode INTEGER, performer_1 VARCHAR, date VARCHAR)
SELECT AVG(episode) FROM table_name_29 WHERE performer_1 = "jim sweeney" AND date = "19 march 1993"
Write a SQL query that answers the following question: Who is performer 2 of the episode on 9 April 1993 with Josie Lawrence as performer 4?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_83 (performer_2 VARCHAR, performer_4 VARCHAR, date VARCHAR)
SELECT performer_2 FROM table_name_83 WHERE performer_4 = "josie lawrence" AND date = "9 april 1993"
Write a SQL query that answers the following question: What is the date of the episode with Ryan Stiles as performer 2, Colin Mochrie as performer 3, and Tony Slattery as performer 4?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_26 (date VARCHAR, performer_4 VARCHAR, performer_2 VARCHAR, performer_3 VARCHAR)
SELECT date FROM table_name_26 WHERE performer_2 = "ryan stiles" AND performer_3 = "colin mochrie" AND performer_4 = "tony slattery"
Write a SQL query that answers the following question: Who is performer 4 on episode 3, where Jim Sweeney was performer 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_86 (performer_4 VARCHAR, performer_1 VARCHAR, episode VARCHAR)
SELECT performer_4 FROM table_name_86 WHERE performer_1 = "jim sweeney" AND episode = 3
Write a SQL query that answers the following question: What is the episode number where Jim Sweeney was performer 1 and Mike Mcshane was performer 4?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_25 (episode INTEGER, performer_1 VARCHAR, performer_4 VARCHAR)
SELECT SUM(episode) FROM table_name_25 WHERE performer_1 = "jim sweeney" AND performer_4 = "mike mcshane"
Write a SQL query that answers the following question: Which Wrestler has an Entered of 5, and a Pinned of mvp?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_23 (wrestler VARCHAR, entered VARCHAR, pinned VARCHAR)
SELECT wrestler FROM table_name_23 WHERE entered = 5 AND pinned = "mvp"