instruction
stringlengths
67
299
input
stringlengths
88
550
output
stringlengths
32
484
Write a SQL query that answers the following question: What place did bobby wadkins come in?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_13 (place VARCHAR, player VARCHAR)
SELECT place FROM table_name_13 WHERE player = "bobby wadkins"
Write a SQL query that answers the following question: What is the lowest Lane, when Mark is 7.66?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_21 (lane INTEGER, mark VARCHAR)
SELECT MIN(lane) FROM table_name_21 WHERE mark = "7.66"
Write a SQL query that answers the following question: What is Mark, when React is less than 0.148?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_59 (mark VARCHAR, react INTEGER)
SELECT mark FROM table_name_59 WHERE react < 0.148
Write a SQL query that answers the following question: What is the sum of Land, when React is greater than 0.217, and when Name is Yoel Hernández?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_75 (lane INTEGER, react VARCHAR, name VARCHAR)
SELECT SUM(lane) FROM table_name_75 WHERE react > 0.217 AND name = "yoel hernández"
Write a SQL query that answers the following question: What is Mark, when Lane is less than 5, and when React is 0.217?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_88 (mark VARCHAR, lane VARCHAR, react VARCHAR)
SELECT mark FROM table_name_88 WHERE lane < 5 AND react = 0.217
Write a SQL query that answers the following question: What was the record following game 67?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_37 (record VARCHAR, game VARCHAR)
SELECT record FROM table_name_37 WHERE game = 67
Write a SQL query that answers the following question: What day in February had an opponent of @ Colorado Rockies?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_57 (february INTEGER, opponent VARCHAR)
SELECT SUM(february) FROM table_name_57 WHERE opponent = "@ colorado rockies"
Write a SQL query that answers the following question: What was the score of the game with a record of 18-22-13?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_18 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_18 WHERE record = "18-22-13"
Write a SQL query that answers the following question: Which Opponent in the final has a Score of 6–3, 3–6, 6–8?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_29 (opponent_in_the_final VARCHAR, score VARCHAR)
SELECT opponent_in_the_final FROM table_name_29 WHERE score = "6–3, 3–6, 6–8"
Write a SQL query that answers the following question: Which Tournament has a Surface of carpet, and a Date smaller than 1995, and an Opponent in the final of ken flach robert seguso?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_56 (tournament VARCHAR, opponent_in_the_final VARCHAR, surface VARCHAR, date VARCHAR)
SELECT tournament FROM table_name_56 WHERE surface = "carpet" AND date < 1995 AND opponent_in_the_final = "ken flach robert seguso"
Write a SQL query that answers the following question: What time in office does the U.S. Navy have?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_59 (time_in_office VARCHAR, branch VARCHAR)
SELECT time_in_office FROM table_name_59 WHERE branch = "u.s. navy"
Write a SQL query that answers the following question: When did the term end for the U.S. Marine Corps?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_5 (term_ended VARCHAR, branch VARCHAR)
SELECT term_ended FROM table_name_5 WHERE branch = "u.s. marine corps"
Write a SQL query that answers the following question: What is the 2006 figure for Argentina when 2007 is less than 0,15?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_47 (country VARCHAR)
SELECT COUNT(2006) FROM table_name_47 WHERE country = "argentina" AND 2007 < 0 OFFSET 15
Write a SQL query that answers the following question: What is the 2009 average when the 2007 average is more than 0,18?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_4 (Id VARCHAR)
SELECT AVG(2009) FROM table_name_4 WHERE 2007 > 0 OFFSET 18
Write a SQL query that answers the following question: How many gains were there for the player who had a loss greater than 57 and a long less than 55?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_45 (gain VARCHAR, loss VARCHAR, long VARCHAR)
SELECT COUNT(gain) FROM table_name_45 WHERE loss > 57 AND long < 55
Write a SQL query that answers the following question: What is the lowest Loss for the player named total that has a long greater than 55?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_95 (loss INTEGER, name VARCHAR, long VARCHAR)
SELECT MIN(loss) FROM table_name_95 WHERE name = "total" AND long > 55
Write a SQL query that answers the following question: What nationality is Kentucky and the player Tayshaun Prince?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_58 (nationality VARCHAR, school_club_team VARCHAR, player VARCHAR)
SELECT nationality FROM table_name_58 WHERE school_club_team = "kentucky" AND player = "tayshaun prince"
Write a SQL query that answers the following question: What is the nationality of Duke?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_95 (nationality VARCHAR, school_club_team VARCHAR)
SELECT nationality FROM table_name_95 WHERE school_club_team = "duke"
Write a SQL query that answers the following question: What was the nationality of a point guard position in 1999-2001?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_89 (nationality VARCHAR, position VARCHAR, years_for_grizzlies VARCHAR)
SELECT nationality FROM table_name_89 WHERE position = "point guard" AND years_for_grizzlies = "1999-2001"
Write a SQL query that answers the following question: What is the position of Tayshaun Prince?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_69 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_69 WHERE player = "tayshaun prince"
Write a SQL query that answers the following question: Who was the parent on the order of 6?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_96 (parent VARCHAR, order VARCHAR)
SELECT parent FROM table_name_96 WHERE order = 6
Write a SQL query that answers the following question: Who was the husband date that was married in 1858?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_54 (husband_dates VARCHAR, date_married VARCHAR)
SELECT husband_dates FROM table_name_54 WHERE date_married = "1858"
Write a SQL query that answers the following question: Can you tell me the Record that has the Opponent of vs. hamilton tiger cats?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_55 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_55 WHERE opponent = "vs. hamilton tiger cats"
Write a SQL query that answers the following question: Can you tell me the Opponent that has the Date of sun, sept 9?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_89 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_89 WHERE date = "sun, sept 9"
Write a SQL query that answers the following question: Which country is Scott Hoch from?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_65 (country VARCHAR, player VARCHAR)
SELECT country FROM table_name_65 WHERE player = "scott hoch"
Write a SQL query that answers the following question: What is the place of the player from Spain?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_64 (place VARCHAR, country VARCHAR)
SELECT place FROM table_name_64 WHERE country = "spain"
Write a SQL query that answers the following question: What is Score, when Record is 12-57?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_53 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_53 WHERE record = "12-57"
Write a SQL query that answers the following question: What is Date, when Record is 12-58?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_31 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_31 WHERE record = "12-58"
Write a SQL query that answers the following question: What is Score, when Date is February 5?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_85 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_85 WHERE date = "february 5"
Write a SQL query that answers the following question: What is H/A/N, when Score is 104-109?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_10 (h_a_n VARCHAR, score VARCHAR)
SELECT h_a_n FROM table_name_10 WHERE score = "104-109"
Write a SQL query that answers the following question: What is Score, when Opponent is Portland Trail Blazers, and when Record is 12-58?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_35 (score VARCHAR, opponent VARCHAR, record VARCHAR)
SELECT score FROM table_name_35 WHERE opponent = "portland trail blazers" AND record = "12-58"
Write a SQL query that answers the following question: What is H/A/N when Date is February 24?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_55 (h_a_n VARCHAR, date VARCHAR)
SELECT h_a_n FROM table_name_55 WHERE date = "february 24"
Write a SQL query that answers the following question: What is the last game of the season that has the record 0-1-0?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_92 (game INTEGER, record VARCHAR)
SELECT MIN(game) FROM table_name_92 WHERE record = "0-1-0"
Write a SQL query that answers the following question: Who had the decision goal when the date was 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_73 (decision VARCHAR, date VARCHAR)
SELECT decision FROM table_name_73 WHERE date = 1
Write a SQL query that answers the following question: Who had the decision goal when the record was 7-7-2?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_83 (decision VARCHAR, record VARCHAR)
SELECT decision FROM table_name_83 WHERE record = "7-7-2"
Write a SQL query that answers the following question: What was the first game in which Weekes scored the decision goal and the record was 7-4-2?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_92 (game INTEGER, decision VARCHAR, record VARCHAR)
SELECT MIN(game) FROM table_name_92 WHERE decision = "weekes" AND record = "7-4-2"
Write a SQL query that answers the following question: What's the total number of points scored during the 1951 NSWRFL Grand Final?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_3 (points VARCHAR, details VARCHAR)
SELECT COUNT(points) FROM table_name_3 WHERE details = "1951 nswrfl grand final"
Write a SQL query that answers the following question: Which premier team played the 1951 NSWRFL Grand Final?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_17 (premiers VARCHAR, details VARCHAR)
SELECT premiers FROM table_name_17 WHERE details = "1951 nswrfl grand final"
Write a SQL query that answers the following question: During which competition were a total of 36 points scored?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_31 (details VARCHAR, points VARCHAR)
SELECT details FROM table_name_31 WHERE points = 36
Write a SQL query that answers the following question: What's the total sum of points scored by the Brisbane Broncos?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_80 (points INTEGER, premiers VARCHAR)
SELECT SUM(points) FROM table_name_80 WHERE premiers = "brisbane broncos"
Write a SQL query that answers the following question: What is the premier team that has 38 points and won with a score of 38-0?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_16 (premiers VARCHAR, points VARCHAR, score VARCHAR)
SELECT premiers FROM table_name_16 WHERE points = 38 AND score = "38-0"
Write a SQL query that answers the following question: What was the tie no when the away team was northwich victoria?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_21 (tie_no VARCHAR, away_team VARCHAR)
SELECT tie_no FROM table_name_21 WHERE away_team = "northwich victoria"
Write a SQL query that answers the following question: What was the attendance for the match where cambridge united was the home team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_55 (attendance VARCHAR, home_team VARCHAR)
SELECT attendance FROM table_name_55 WHERE home_team = "cambridge united"
Write a SQL query that answers the following question: How many times was the award inte awards?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_90 (year VARCHAR, award VARCHAR)
SELECT COUNT(year) FROM table_name_90 WHERE award = "inte awards"
Write a SQL query that answers the following question: what is the work when the result is won and the year is after 2002?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_91 (work VARCHAR, result VARCHAR, year VARCHAR)
SELECT work FROM table_name_91 WHERE result = "won" AND year > 2002
Write a SQL query that answers the following question: what is the work when the result is won and the year is before 2003?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_36 (work VARCHAR, result VARCHAR, year VARCHAR)
SELECT work FROM table_name_36 WHERE result = "won" AND year < 2003
Write a SQL query that answers the following question: Which venue had the opposing team Natal?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_16 (venue VARCHAR, opposing_team VARCHAR)
SELECT venue FROM table_name_16 WHERE opposing_team = "natal"
Write a SQL query that answers the following question: What day was the against 22 and the status tour match?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_51 (date VARCHAR, status VARCHAR, against VARCHAR)
SELECT date FROM table_name_51 WHERE status = "tour match" AND against = 22
Write a SQL query that answers the following question: Which Attendance has a Week of 8?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_25 (attendance INTEGER, week VARCHAR)
SELECT AVG(attendance) FROM table_name_25 WHERE week = 8
Write a SQL query that answers the following question: Which Opponent that has a Week smaller than 7 on september 12, 1988?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_41 (opponent VARCHAR, week VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_41 WHERE week < 7 AND date = "september 12, 1988"
Write a SQL query that answers the following question: When has a Result of w 41-27?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_23 (date VARCHAR, result VARCHAR)
SELECT date FROM table_name_23 WHERE result = "w 41-27"
Write a SQL query that answers the following question: Which Weight (kg) has a Manufacturer of fujitsu, and a Model of lifebook p1610?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_67 (weight__kg_ INTEGER, manufacturer VARCHAR, model VARCHAR)
SELECT AVG(weight__kg_) FROM table_name_67 WHERE manufacturer = "fujitsu" AND model = "lifebook p1610"
Write a SQL query that answers the following question: Which Display size (in) has a Model of versapro vy10f/bh-l?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_10 (display_size__in_ INTEGER, model VARCHAR)
SELECT MIN(display_size__in_) FROM table_name_10 WHERE model = "versapro vy10f/bh-l"
Write a SQL query that answers the following question: Which Display size (in) has a Model of vaio pcg-u3?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_29 (display_size__in_ VARCHAR, model VARCHAR)
SELECT COUNT(display_size__in_) FROM table_name_29 WHERE model = "vaio pcg-u3"
Write a SQL query that answers the following question: What method was used in the match that went to round 1, and had a 6-3-1 record?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_13 (method VARCHAR, round VARCHAR, record VARCHAR)
SELECT method FROM table_name_13 WHERE round = 1 AND record = "6-3-1"
Write a SQL query that answers the following question: In the match against Marcus Aurélio with a method of decision (unanimous), what was the results?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_6 (res VARCHAR, method VARCHAR, opponent VARCHAR)
SELECT res FROM table_name_6 WHERE method = "decision (unanimous)" AND opponent = "marcus aurélio"
Write a SQL query that answers the following question: Where was the Deep - 30 Impact event held?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_55 (location VARCHAR, event VARCHAR)
SELECT location FROM table_name_55 WHERE event = "deep - 30 impact"
Write a SQL query that answers the following question: COunt the sum of Diameter (km) which has a Latitude of 62.7n?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_25 (diameter__km_ INTEGER, latitude VARCHAR)
SELECT SUM(diameter__km_) FROM table_name_25 WHERE latitude = "62.7n"
Write a SQL query that answers the following question: WHich Name origin has a Longitude of 332.5e?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_94 (name VARCHAR, longitude VARCHAR)
SELECT name AS origin FROM table_name_94 WHERE longitude = "332.5e"
Write a SQL query that answers the following question: In which round was Dustin Hazelett the opponent?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_63 (round VARCHAR, opponent VARCHAR)
SELECT round FROM table_name_63 WHERE opponent = "dustin hazelett"
Write a SQL query that answers the following question: What is TV Time, when Opponent is At Cincinnati Bengals?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_89 (tv_time VARCHAR, opponent VARCHAR)
SELECT tv_time FROM table_name_89 WHERE opponent = "at cincinnati bengals"
Write a SQL query that answers the following question: What is TV Time, when Date is December 22, 1996?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_91 (tv_time VARCHAR, date VARCHAR)
SELECT tv_time FROM table_name_91 WHERE date = "december 22, 1996"
Write a SQL query that answers the following question: What is Result, when Opponent is Cincinnati Bengals?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_32 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_name_32 WHERE opponent = "cincinnati bengals"
Write a SQL query that answers the following question: What was their record bfore game 54?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_66 (record VARCHAR, game VARCHAR)
SELECT record FROM table_name_66 WHERE game = 54
Write a SQL query that answers the following question: Who had the most rebounds in the game against Chicago?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_52 (high_rebounds VARCHAR, team VARCHAR)
SELECT high_rebounds FROM table_name_52 WHERE team = "chicago"
Write a SQL query that answers the following question: What was the lowest attendance at the game against chicago when conklin made the decision?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_21 (attendance INTEGER, decision VARCHAR, visitor VARCHAR)
SELECT MIN(attendance) FROM table_name_21 WHERE decision = "conklin" AND visitor = "chicago"
Write a SQL query that answers the following question: For Tie #2, who was the home team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_33 (home_team VARCHAR, tie_no VARCHAR)
SELECT home_team FROM table_name_33 WHERE tie_no = "2"
Write a SQL query that answers the following question: What was the final score for the match where Hereford United was the home team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_57 (score VARCHAR, home_team VARCHAR)
SELECT score FROM table_name_57 WHERE home_team = "hereford united"
Write a SQL query that answers the following question: In Tie #18, who was the away team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_76 (away_team VARCHAR, tie_no VARCHAR)
SELECT away_team FROM table_name_76 WHERE tie_no = "18"
Write a SQL query that answers the following question: In Tie #19, what was the name of the away team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_27 (away_team VARCHAR, tie_no VARCHAR)
SELECT away_team FROM table_name_27 WHERE tie_no = "19"
Write a SQL query that answers the following question: What is the Tie number for the match where Dartford was the hone team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_31 (tie_no VARCHAR, home_team VARCHAR)
SELECT tie_no FROM table_name_31 WHERE home_team = "dartford"
Write a SQL query that answers the following question: In the match played against Telford United, who was the home team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_9 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_9 WHERE away_team = "telford united"
Write a SQL query that answers the following question: What is Position, when Class is Sophomore, and when Player is Shaquille O'Neal Category:Articles With hCards?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_93 (position VARCHAR, class VARCHAR, player VARCHAR)
SELECT position FROM table_name_93 WHERE class = "sophomore" AND player = "shaquille o'neal category:articles with hcards"
Write a SQL query that answers the following question: What is Player, when Class is "senior", when Position is "shooting guard", and when School is "Bradley"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_56 (player VARCHAR, school VARCHAR, class VARCHAR, position VARCHAR)
SELECT player FROM table_name_56 WHERE class = "senior" AND position = "shooting guard" AND school = "bradley"
Write a SQL query that answers the following question: What is Position, when Player is "Kevin Durant category:articles with hCards"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_71 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_71 WHERE player = "kevin durant category:articles with hcards"
Write a SQL query that answers the following question: What is the Score of the match on August 23, 2004?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_71 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_71 WHERE date = "august 23, 2004"
Write a SQL query that answers the following question: What was the Score of the Spain F32, Gran Canaria Tournament?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_70 (score VARCHAR, tournament VARCHAR)
SELECT score FROM table_name_70 WHERE tournament = "spain f32, gran canaria"
Write a SQL query that answers the following question: On what Surface was the match with a Score of 6–4, 6–3 and Runner-up Outcome played?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_30 (surface VARCHAR, outcome VARCHAR, score VARCHAR)
SELECT surface FROM table_name_30 WHERE outcome = "runner-up" AND score = "6–4, 6–3"
Write a SQL query that answers the following question: What is the Outcome of the match with Partner Andoni Vivanco?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_7 (outcome VARCHAR, partner VARCHAR)
SELECT outcome FROM table_name_7 WHERE partner = "andoni vivanco"
Write a SQL query that answers the following question: Who was the Leading Scorer in the Game with a Score of 96-87?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_90 (Leading VARCHAR, score VARCHAR)
SELECT Leading AS scorer FROM table_name_90 WHERE score = "96-87"
Write a SQL query that answers the following question: What Country with a MC Format has a ATCO Records Label?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_98 (country VARCHAR, label VARCHAR, format VARCHAR)
SELECT country FROM table_name_98 WHERE label = "atco records" AND format = "mc"
Write a SQL query that answers the following question: What team has a location and attendance at the Seattle Center Coliseum 12,591?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_22 (team VARCHAR, location_attendance VARCHAR)
SELECT team FROM table_name_22 WHERE location_attendance = "seattle center coliseum 12,591"
Write a SQL query that answers the following question: What is 1st Leg, when Team #2 is "Emelec"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_76 (team__number2 VARCHAR)
SELECT 1 AS st_leg FROM table_name_76 WHERE team__number2 = "emelec"
Write a SQL query that answers the following question: What is 1st Leg, when Team #1 is "San Lorenzo"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_58 (team__number1 VARCHAR)
SELECT 1 AS st_leg FROM table_name_58 WHERE team__number1 = "san lorenzo"
Write a SQL query that answers the following question: What is the muzzle energy with grains (g) bullet weight and a max pressure of 35,000 psi?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_67 (muzzle_energy VARCHAR, bullet_weight VARCHAR, max_pressure VARCHAR)
SELECT muzzle_energy FROM table_name_67 WHERE bullet_weight = "grains (g)" AND max_pressure = "35,000 psi"
Write a SQL query that answers the following question: What is the bullet weight with a 12,000 cup max pressure?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_98 (bullet_weight VARCHAR, max_pressure VARCHAR)
SELECT bullet_weight FROM table_name_98 WHERE max_pressure = "12,000 cup"
Write a SQL query that answers the following question: What is the max pressure for the 468ft•lbf (634 j) muzzle energy?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_99 (max_pressure VARCHAR, muzzle_energy VARCHAR)
SELECT max_pressure FROM table_name_99 WHERE muzzle_energy = "468ft•lbf (634 j)"
Write a SQL query that answers the following question: What is the muzzle velocity for the muzzle energy 351ft•lbf (476 j)?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_60 (muzzle_velocity VARCHAR, muzzle_energy VARCHAR)
SELECT muzzle_velocity FROM table_name_60 WHERE muzzle_energy = "351ft•lbf (476 j)"
Write a SQL query that answers the following question: What is the muzzle velocity for the .38 long colt cartridge?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_32 (muzzle_velocity VARCHAR, cartridge VARCHAR)
SELECT muzzle_velocity FROM table_name_32 WHERE cartridge = ".38 long colt"
Write a SQL query that answers the following question: What is the muzzle energy with 40,000 psi max pressure?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_40 (muzzle_energy VARCHAR, max_pressure VARCHAR)
SELECT muzzle_energy FROM table_name_40 WHERE max_pressure = "40,000 psi"
Write a SQL query that answers the following question: What is the home country of the player who placed t5 and had a score of 69-71=140?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_23 (country VARCHAR, place VARCHAR, score VARCHAR)
SELECT country FROM table_name_23 WHERE place = "t5" AND score = 69 - 71 = 140
Write a SQL query that answers the following question: What was the place for the player whose final score was 71-69=140?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_78 (place VARCHAR, score VARCHAR)
SELECT place FROM table_name_78 WHERE score = 71 - 69 = 140
Write a SQL query that answers the following question: What was the To par for the player whose final score was 67-71=138?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_26 (to_par VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_26 WHERE score = 67 - 71 = 138
Write a SQL query that answers the following question: What was Nolan Henke's To par when he placed in t3?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_96 (to_par VARCHAR, place VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_96 WHERE place = "t3" AND player = "nolan henke"
Write a SQL query that answers the following question: WHAT IS THE MEANING WITH Pīnyīn of chē?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_61 (meaning VARCHAR, pīnyīn VARCHAR)
SELECT meaning FROM table_name_61 WHERE pīnyīn = "chē"
Write a SQL query that answers the following question: WHAT IS THE RADICAL WITH gǔ, AND STROKE COUNT OF 7?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_81 (radical__variants_ VARCHAR, pīnyīn VARCHAR, stroke_count VARCHAR)
SELECT radical__variants_ FROM table_name_81 WHERE pīnyīn = "gǔ" AND stroke_count = 7
Write a SQL query that answers the following question: WHAT IS THE STROKE COUNT WITH RADICAL OF 生, FRQUENCY SMALLER THAN 22?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_57 (stroke_count VARCHAR, radical__variants_ VARCHAR, frequency VARCHAR)
SELECT COUNT(stroke_count) FROM table_name_57 WHERE radical__variants_ = "生" AND frequency < 22
Write a SQL query that answers the following question: WHAT IS THE STROKE COUNT WITH RADICAL 皿 FREQUENCY SMALLER THAN 129?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_88 (stroke_count INTEGER, radical__variants_ VARCHAR, frequency VARCHAR)
SELECT AVG(stroke_count) FROM table_name_88 WHERE radical__variants_ = "皿" AND frequency < 129
Write a SQL query that answers the following question: What is the Flagship of the Show Hosted by Rover (Shane French)?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_33 (flagship VARCHAR, host_s_ VARCHAR)
SELECT flagship FROM table_name_33 WHERE host_s_ = "rover (shane french)"
Write a SQL query that answers the following question: What is the Host of the Show with a Market of New York?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_78 (host_s_ VARCHAR, market VARCHAR)
SELECT host_s_ FROM table_name_78 WHERE market = "new york"