answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT years_active FROM table_272865_20 WHERE asian_cup_played_as_a_captain = "Iran 1976"
What were the years active where Asian Cup played as a captain is Iran 1976?
CREATE TABLE table_272865_20 (years_active VARCHAR, asian_cup_played_as_a_captain VARCHAR)
SELECT tournament_venue__city_ FROM table_28365816_2 WHERE regular_season_winner = "Yale"
When Yale is listed as the regular season winner, what tournament venue is given?
CREATE TABLE table_28365816_2 (tournament_venue__city_ VARCHAR, regular_season_winner VARCHAR)
SELECT parish__prestegjeld_ FROM table_178381_1 WHERE church_name = "Askrova bedehuskapell"
In what parish is the Askrova Bedehuskapell church?
CREATE TABLE table_178381_1 (parish__prestegjeld_ VARCHAR, church_name VARCHAR)
SELECT AVG(home_run) FROM table_name_55 WHERE game = 89
Which average Home Run has a Game of 89?
CREATE TABLE table_name_55 (home_run INTEGER, game VARCHAR)
SELECT position FROM table_23585197_3 WHERE artist = "Genjor McNell"
What is the position of the song thar genjor mcnell performed?
CREATE TABLE table_23585197_3 (position VARCHAR, artist VARCHAR)
SELECT to_par FROM table_name_43 WHERE country = "australia" AND score = 73 - 69 - 71 = 213
What is the to par for Australia and a 73-69-71=213 score?
CREATE TABLE table_name_43 (to_par VARCHAR, country VARCHAR, score VARCHAR)
SELECT COUNT(*) FROM country WHERE GovernmentForm = "Republic"
How many countries have a republic as their form of government?
CREATE TABLE country (GovernmentForm VARCHAR)
SELECT turing_complete FROM table_13636_1 WHERE numeral_system = "Decimal"
what's the turing complete with numeral system being decimal
CREATE TABLE table_13636_1 (turing_complete VARCHAR, numeral_system VARCHAR)
SELECT SUM(points) FROM table_name_84 WHERE home = "pittsburgh" AND date = "december 21" AND attendance > 5 OFFSET 307
What is the sum of Points, when Home is "Pittsburgh", when Date is "December 21", and when Attendance is greater than 5,307?
CREATE TABLE table_name_84 (points INTEGER, attendance VARCHAR, home VARCHAR, date VARCHAR)
SELECT nationality FROM table_name_63 WHERE appearances = 116
What nationality has 116 appearances?
CREATE TABLE table_name_63 (nationality VARCHAR, appearances VARCHAR)
SELECT race FROM table_name_51 WHERE fastest_lap = "mike hawthorn" AND winning_driver = "peter collins"
During what race did Mike Hawthorn have the Fastest Lap and Peter Collins win?
CREATE TABLE table_name_51 (race VARCHAR, fastest_lap VARCHAR, winning_driver VARCHAR)
SELECT record FROM table_name_30 WHERE loss = "williams (3-1)"
What was the record for the game that had a loss of Williams (3-1)?
CREATE TABLE table_name_30 (record VARCHAR, loss VARCHAR)
SELECT occupation FROM table_name_38 WHERE residence = "windsor junction"
What is the occupation of the candidate that resides in Windsor Junction?
CREATE TABLE table_name_38 (occupation VARCHAR, residence VARCHAR)
SELECT date_successor_seated FROM table_225098_4 WHERE district = "Massachusetts 20th"
The successor for the Massachusetts 20th district was seated on what date?
CREATE TABLE table_225098_4 (date_successor_seated VARCHAR, district VARCHAR)
SELECT team FROM table_name_6 WHERE date_of_appointment = "10 november 2008"
What is Team, when Date of Appointment is "10 November 2008"?
CREATE TABLE table_name_6 (team VARCHAR, date_of_appointment VARCHAR)
SELECT mens_3rd_xi FROM table_21576644_2 WHERE ladies_1st_xi = "3rd, Sedgemoor Division 1"
When 3rd, sedgemoor division 1 is the ladies 1st xi what is the mens 3rd xi?
CREATE TABLE table_21576644_2 (mens_3rd_xi VARCHAR, ladies_1st_xi VARCHAR)
SELECT genitive_1 FROM table_name_57 WHERE genitive_3 = "*n(i)-ia"
Which Genitive 1 has a Genitive 3 of *n(i)-ia?
CREATE TABLE table_name_57 (genitive_1 VARCHAR, genitive_3 VARCHAR)
SELECT set_3 FROM table_name_96 WHERE date = "29 sep" AND time = "16:40"
For a date of 29 Sep and a time of 16:40, what is the corresponding Set 3?
CREATE TABLE table_name_96 (set_3 VARCHAR, date VARCHAR, time VARCHAR)
SELECT MAX(silver) FROM table_name_40 WHERE bronze > 1 AND total > 48
What is the most silver when bronze is more than 1 and total is more than 48?
CREATE TABLE table_name_40 (silver INTEGER, bronze VARCHAR, total VARCHAR)
SELECT name FROM table_name_9 WHERE costume_role = "monster"
What is the name of the member with a costume Role of monster?
CREATE TABLE table_name_9 (name VARCHAR, costume_role VARCHAR)
SELECT position FROM table_name_63 WHERE games_played = 5 AND w_l_d = "1-2-2"
Which position had 5 games played and a record of 1-2-2?
CREATE TABLE table_name_63 (position VARCHAR, games_played VARCHAR, w_l_d VARCHAR)
SELECT country FROM table_name_96 WHERE location = "aberdeen"
In what country is Aberdeen?
CREATE TABLE table_name_96 (country VARCHAR, location VARCHAR)
SELECT Pilot_name FROM pilot ORDER BY Rank
List the names of pilots in ascending order of rank.
CREATE TABLE pilot (Pilot_name VARCHAR, Rank VARCHAR)
SELECT alternate FROM table_name_86 WHERE nation = "switzerland"
Who was Switzerland's alternate?
CREATE TABLE table_name_86 (alternate VARCHAR, nation VARCHAR)
SELECT results¹ FROM table_name_65 WHERE type_of_game = "euro '64 qualifying"
What was the result of the Euro '64 qualifying game?
CREATE TABLE table_name_65 (results¹ VARCHAR, type_of_game VARCHAR)
SELECT grand_prix FROM table_1137696_3 WHERE winning_driver = "Michael Schumacher" AND fastest_lap = "Michael Schumacher" AND round = 7
Name the grand prix with a driver of Michael Schumacher and a round of 7?
CREATE TABLE table_1137696_3 (grand_prix VARCHAR, round VARCHAR, winning_driver VARCHAR, fastest_lap VARCHAR)
SELECT towns__villages FROM table_16278825_1 WHERE county_seat = "Budapest"
Name the towns/villages for budapest
CREATE TABLE table_16278825_1 (towns__villages VARCHAR, county_seat VARCHAR)
SELECT k_themistokleous FROM table_name_65 WHERE i_kasoulidis = "30.1%"
What was the percentage for K. Themistokleous when I. Kasoulidis was 30.1%?
CREATE TABLE table_name_65 (k_themistokleous VARCHAR, i_kasoulidis VARCHAR)
SELECT COUNT(won) FROM table_13564702_3 WHERE club = "Maesteg Harlequins RFC"
Name the number of won for maesteg harlequins rfc
CREATE TABLE table_13564702_3 (won VARCHAR, club VARCHAR)
SELECT position FROM table_name_14 WHERE podiums = "3" AND f_laps = "4"
Which position had 3 podiums and F/laps of 4?
CREATE TABLE table_name_14 (position VARCHAR, podiums VARCHAR, f_laps VARCHAR)
SELECT hispanic___percentage_ FROM table_14754471_1 WHERE free_reduced_lunch___percentage_ = "81.4"
What percentage of hispanics are there when the free/reduced lunch percentage is 81.4?
CREATE TABLE table_14754471_1 (hispanic___percentage_ VARCHAR, free_reduced_lunch___percentage_ VARCHAR)
SELECT COUNT(week) FROM table_name_34 WHERE attendance = 54 OFFSET 015
Which week's game was attended by 54,015 people?
CREATE TABLE table_name_34 (week VARCHAR, attendance VARCHAR)
SELECT position FROM table_11803648_22 WHERE player = "Marcus Hogberg"
What is the position of player Marcus Hogberg?
CREATE TABLE table_11803648_22 (position VARCHAR, player VARCHAR)
SELECT party FROM table_1341472_40 WHERE incumbent = "Thomas Foglietta"
What party is thomas foglietta from?
CREATE TABLE table_1341472_40 (party VARCHAR, incumbent VARCHAR)
SELECT to_winning_team FROM table_13657883_2 WHERE tu_winning_team = "#16 2002"
What was the to winnning team when the tu winning team was #16 2002?
CREATE TABLE table_13657883_2 (to_winning_team VARCHAR, tu_winning_team VARCHAR)
SELECT format FROM table_name_6 WHERE single = "i can't stay"
What's the format of the single, I Can't Stay?
CREATE TABLE table_name_6 (format VARCHAR, single VARCHAR)
SELECT record FROM table_name_24 WHERE date = "august 28"
Name the record for august 28
CREATE TABLE table_name_24 (record VARCHAR, date VARCHAR)
SELECT event FROM table_name_87 WHERE opponent = "pat barry"
Which event was against Pat Barry?
CREATE TABLE table_name_87 (event VARCHAR, opponent VARCHAR)
SELECT party FROM table_1341522_38 WHERE opponent = "Marcy Kaptur (D) 75.3% Randy Whitman (R) 24.7%"
what's the party with opponent being marcy kaptur (d) 75.3% randy whitman (r) 24.7%
CREATE TABLE table_1341522_38 (party VARCHAR, opponent VARCHAR)
SELECT minister FROM table_name_58 WHERE left_office = "1960"
Who is the mInister who left office during 1960?
CREATE TABLE table_name_58 (minister VARCHAR, left_office VARCHAR)
SELECT COUNT(*) FROM (SELECT * FROM endowment WHERE amount > 8.5 GROUP BY school_id HAVING COUNT(*) > 1)
Find the number of schools that have more than one donator whose donation amount is less than 8.5.
CREATE TABLE endowment (school_id VARCHAR, amount INTEGER)
SELECT starring_actors FROM table_18539834_2 WHERE time_frame = "Tuesday 22:00~22:54 8 April 2008 to 17 June 2008"
Who were the starting actors in the time frame of tuesday 22:00~22:54 8 april 2008 to 17 june 2008?
CREATE TABLE table_18539834_2 (starring_actors VARCHAR, time_frame VARCHAR)
SELECT tournament FROM table_name_89 WHERE opponent_in_the_final = "yi jingqian"
What was the name of the tournament that the final was played against Yi Jingqian?
CREATE TABLE table_name_89 (tournament VARCHAR, opponent_in_the_final VARCHAR)
SELECT T2.region_name FROM affected_region AS T1 JOIN region AS T2 ON T1.region_id = T2.region_id JOIN storm AS T3 ON T1.storm_id = T3.storm_id WHERE T3.number_deaths >= 10
What are the region names affected by the storm with a number of deaths of least 10?
CREATE TABLE region (region_name VARCHAR, region_id VARCHAR); CREATE TABLE affected_region (region_id VARCHAR, storm_id VARCHAR); CREATE TABLE storm (storm_id VARCHAR, number_deaths VARCHAR)
SELECT AVG(interview) FROM table_name_79 WHERE average > 9.233 AND swimsuit = 9.473 AND evening_gown > 9.671
Which mean interview number had an average of more than 9.233, a swimsuit stat of more than 9.473, and an evening gown score of more than 9.671?
CREATE TABLE table_name_79 (interview INTEGER, evening_gown VARCHAR, average VARCHAR, swimsuit VARCHAR)
SELECT MAX(game) FROM table_name_12 WHERE high_rebounds = "pau gasol (11)"
Which Game is the highest one that has High rebounds of pau gasol (11)?
CREATE TABLE table_name_12 (game INTEGER, high_rebounds VARCHAR)
SELECT written_by FROM table_14847258_1 WHERE directed_by = "Steve Gomer"
When steve gomer is the director who is the writer?
CREATE TABLE table_14847258_1 (written_by VARCHAR, directed_by VARCHAR)
SELECT score FROM table_name_85 WHERE points = 96
What was the score of the game with 96 points?
CREATE TABLE table_name_85 (score VARCHAR, points VARCHAR)
SELECT opponent FROM table_name_95 WHERE loss = "wilcox" AND date = "jun 18"
Loss of wilcox, and a Date of jun 18 had what opponent?
CREATE TABLE table_name_95 (opponent VARCHAR, loss VARCHAR, date VARCHAR)
SELECT visiting_team FROM table_name_31 WHERE date = "december 6"
Who was the visiting team on December 6?
CREATE TABLE table_name_31 (visiting_team VARCHAR, date VARCHAR)
SELECT COUNT(cfl_team) FROM table_10975034_4 WHERE college = "York"
How many CFL teams are from York college?
CREATE TABLE table_10975034_4 (cfl_team VARCHAR, college VARCHAR)
SELECT player FROM table_name_38 WHERE nationality = "united states" AND college_junior_club_team__league_ = "bowling green falcons (ccha)"
Which player is from the United States, and played for the Bowling Green Falcons (CCHA) as their College/Junior/Club Team (League)?
CREATE TABLE table_name_38 (player VARCHAR, nationality VARCHAR, college_junior_club_team__league_ VARCHAR)
SELECT ss_winning_car FROM table_27965906_2 WHERE circuit = "Road Atlanta" AND b_winning_car = "#35 Quantum Engineering #35 Honda CRX-Si"
Name the ss winning car for road atlanta and #35 quantum engineering #35 honda crx-si
CREATE TABLE table_27965906_2 (ss_winning_car VARCHAR, circuit VARCHAR, b_winning_car VARCHAR)
SELECT score FROM table_name_95 WHERE to_par = "e" AND player = "fred funk"
When Fred Funk had a to par of E, what was the score?
CREATE TABLE table_name_95 (score VARCHAR, to_par VARCHAR, player VARCHAR)
SELECT touchdowns FROM table_name_88 WHERE player = "william cole"
How many touchdowns were scored by William Cole?
CREATE TABLE table_name_88 (touchdowns VARCHAR, player VARCHAR)
SELECT score FROM table_name_44 WHERE high_rebounds = "howard (8)"
Name the score for howard (8) high rebounds
CREATE TABLE table_name_44 (score VARCHAR, high_rebounds VARCHAR)
SELECT MIN(stage) FROM table_15088557_1 WHERE mountains_classification = "Aitor Osa" AND winner = "Aitor González"
what is the minimum stage where mountains classification is aitor osa and aitor gonzález won?
CREATE TABLE table_15088557_1 (stage INTEGER, mountains_classification VARCHAR, winner VARCHAR)
SELECT AVG(year) FROM table_name_95 WHERE margin = 46
Name the average year for 46 margin
CREATE TABLE table_name_95 (year INTEGER, margin VARCHAR)
SELECT score FROM table_name_25 WHERE att = 354
What was the score for the matchup having attendance of 354?
CREATE TABLE table_name_25 (score VARCHAR, att VARCHAR)
SELECT venue FROM table_name_26 WHERE home_team = "melbourne tigers"
What is the venue where the melbourne tigers play their home games?
CREATE TABLE table_name_26 (venue VARCHAR, home_team VARCHAR)
SELECT championship FROM table_23235767_4 WHERE surface = "Clay" AND opponent_in_the_final = "Corrado Barazzutti"
Name the championship for clay and corrado barazzutti
CREATE TABLE table_23235767_4 (championship VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)
SELECT MIN(elimination_number) FROM table_18598175_2 WHERE time = "27:27"
What was the elimination number of the fighter who fought within 27:27?
CREATE TABLE table_18598175_2 (elimination_number INTEGER, time VARCHAR)
SELECT score FROM table_name_43 WHERE to_par = "+2" AND country = "united states" AND player = "rocco mediate"
When Rocco Mediate of the United States has a To par of +2, what was his score?
CREATE TABLE table_name_43 (score VARCHAR, player VARCHAR, to_par VARCHAR, country VARCHAR)
SELECT COUNT(*) FROM votes WHERE state = 'NY' OR state = 'CA'
What are the number of votes from state 'NY' or 'CA'?
CREATE TABLE votes (state VARCHAR)
SELECT T2.address_id, T1.zip_postcode FROM Addresses AS T1 JOIN Student_Addresses AS T2 ON T1.address_id = T2.address_id ORDER BY monthly_rental DESC LIMIT 1
What are the id and zip code of the address with the highest monthly rental?
CREATE TABLE Student_Addresses (address_id VARCHAR); CREATE TABLE Addresses (zip_postcode VARCHAR, address_id VARCHAR)
SELECT race_time FROM table_2260452_1 WHERE team = "Billy Ballew Motorsports"
If the team is Billy Ballew Motorsports, what is the race time?
CREATE TABLE table_2260452_1 (race_time VARCHAR, team VARCHAR)
SELECT date FROM table_name_61 WHERE winning_driver = "ugo sivocci"
What Date has a Winning driver of ugo sivocci?
CREATE TABLE table_name_61 (date VARCHAR, winning_driver VARCHAR)
SELECT other_performer_s_ FROM table_name_4 WHERE director_s_ = "melina matsoukas" AND album = "loud"
On the album titled “Loud” who was the other performer on the song directed by Melina Matsoukas?
CREATE TABLE table_name_4 (other_performer_s_ VARCHAR, director_s_ VARCHAR, album VARCHAR)
SELECT dutch FROM table_name_18 WHERE english = "one"
What is the dutch word for one?
CREATE TABLE table_name_18 (dutch VARCHAR, english VARCHAR)
SELECT result FROM table_name_23 WHERE nominee_s_ = "neal baer"
Nominee Neal Baer had what result?
CREATE TABLE table_name_23 (result VARCHAR, nominee_s_ VARCHAR)
SELECT record FROM table_name_50 WHERE visitor = "edmonton oilers"
What is the record of the game where the visitor team is the Edmonton Oilers?
CREATE TABLE table_name_50 (record VARCHAR, visitor VARCHAR)
SELECT AVG(civil_liberties_2012) FROM table_name_42 WHERE status_2011 = "not free" AND political_rights_2012 > 6 AND political_rights_2011 > 7
What is the average 2012 civil liberties value associated with a 2011 status of not free, political rights 2012 over 6, and political rights 2011 over 7?
CREATE TABLE table_name_42 (civil_liberties_2012 INTEGER, political_rights_2011 VARCHAR, status_2011 VARCHAR, political_rights_2012 VARCHAR)
SELECT MIN(height__m_) FROM table_name_22 WHERE island = "burray"
What is the lowest Height (m) on the island of Burray?
CREATE TABLE table_name_22 (height__m_ INTEGER, island VARCHAR)
SELECT _number FROM table_28348757_6 WHERE us_viewers__million_ = "0.79"
what are the numbers of episodes that had 0.79 million US views?
CREATE TABLE table_28348757_6 (_number VARCHAR, us_viewers__million_ VARCHAR)
SELECT opponents FROM table_1964010_2 WHERE score = "6–4, 4–6, 7–6 (7–4)"
Who are the opponents of Mike Byron and partner in matches where the score was 6–4, 4–6, 7–6 (7–4)?
CREATE TABLE table_1964010_2 (opponents VARCHAR, score VARCHAR)
SELECT COUNT(rebounds) FROM table_23346303_4 WHERE player = "Crystal Ayers"
How many rebounds did crystal ayers have?
CREATE TABLE table_23346303_4 (rebounds VARCHAR, player VARCHAR)
SELECT SUM(seats_2001) FROM table_name_30 WHERE _percentage_2001 > 61.4 AND _percentage_2006 < 54.1
When the %2001 is more than 61.4, and the %2006 fewer than 54.1, how many Seats in 2001 were there?
CREATE TABLE table_name_30 (seats_2001 INTEGER, _percentage_2001 VARCHAR, _percentage_2006 VARCHAR)
SELECT SUM(losses) FROM table_name_91 WHERE wins = 8 AND byes < 2
What's the total losses when there are 8 wins and less than 2 byes?
CREATE TABLE table_name_91 (losses INTEGER, wins VARCHAR, byes VARCHAR)
SELECT 2011 FROM table_name_73 WHERE tournament = "monte carlo masters"
Tell me the 2011 tournament of monte carlo masters
CREATE TABLE table_name_73 (tournament VARCHAR)
SELECT away_team FROM table_name_45 WHERE time = "18:30"
What was the away team for the match that had a time of 18:30?
CREATE TABLE table_name_45 (away_team VARCHAR, time VARCHAR)
SELECT original_airdate FROM table_name_5 WHERE writer_s_ = "sidney slon" AND episode = "7-17 (195)"
What is the original airdate for episode 7-17 (195) from writer Sidney Slon?
CREATE TABLE table_name_5 (original_airdate VARCHAR, writer_s_ VARCHAR, episode VARCHAR)
SELECT writer FROM table_26591434_1 WHERE ratings__kanto_ = "14.8"
Who is the writer with the ratings 14.8?
CREATE TABLE table_26591434_1 (writer VARCHAR, ratings__kanto_ VARCHAR)
SELECT fastest_lap FROM table_10527215_3 WHERE winning_driver = "Johnny Rutherford" AND pole_position = "Al Unser"
What was Johnny Rutherford's fastest lap while Al Unser was the pole position?
CREATE TABLE table_10527215_3 (fastest_lap VARCHAR, winning_driver VARCHAR, pole_position VARCHAR)
SELECT AVG(year) FROM table_name_35 WHERE game = "resident evil 4"
Which Year has a Game of resident evil 4?
CREATE TABLE table_name_35 (year INTEGER, game VARCHAR)
SELECT 1 AS st_leg FROM table_name_45 WHERE team_1 = "portol palma mallorca"
What is 1st Leg, when Team 1 is "Portol Palma Mallorca"?
CREATE TABLE table_name_45 (team_1 VARCHAR)
SELECT census_ranking FROM table_170969_2 WHERE area_km_2 = "78.67"
What is the census ranking when the area is 78.67 ?
CREATE TABLE table_170969_2 (census_ranking VARCHAR, area_km_2 VARCHAR)
SELECT points FROM table_name_65 WHERE car_no = "20"
How many points did car 20 score?
CREATE TABLE table_name_65 (points VARCHAR, car_no VARCHAR)
SELECT no FROM table_17015_2 WHERE population__2010_ = 171906
Name the number where population 2010 is 171906
CREATE TABLE table_17015_2 (no VARCHAR, population__2010_ VARCHAR)
SELECT date FROM table_name_95 WHERE away_team = "rochdale"
When was the game played that had Rochdale as the away team?
CREATE TABLE table_name_95 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_34 WHERE terrain = "plain stage" AND stage = "4"
Which date has a Terrain of plain stage, and a Stage of 4?
CREATE TABLE table_name_34 (date VARCHAR, terrain VARCHAR, stage VARCHAR)
SELECT state FROM table_name_2 WHERE title = "marquis" AND name = "jing"
In what state did Jing have the title of Marquis?
CREATE TABLE table_name_2 (state VARCHAR, title VARCHAR, name VARCHAR)
SELECT outcome FROM table_1399994_5 WHERE year = "1989"
What was the outcome for the match in 1989?
CREATE TABLE table_1399994_5 (outcome VARCHAR, year VARCHAR)
SELECT COUNT(games) FROM table_2509505_1 WHERE goals_against = 352
Name the total number of games for goals against being 352
CREATE TABLE table_2509505_1 (games VARCHAR, goals_against VARCHAR)
SELECT winning_score FROM table_name_60 WHERE tournament = "andy williams-san diego open invitational"
What was the winning score for the Andy Williams-San Diego Open Invitational tournament?
CREATE TABLE table_name_60 (winning_score VARCHAR, tournament VARCHAR)
SELECT T1.first_name, T1.last_name FROM employees AS T1 JOIN customers AS T2 ON T1.id = T2.support_rep_id GROUP BY T1.id ORDER BY COUNT(*) DESC LIMIT 1
Find the full name of employee who supported the most number of customers.
CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, id VARCHAR); CREATE TABLE customers (support_rep_id VARCHAR)
SELECT visitor FROM table_name_56 WHERE date = "march 31"
What is the Visitor on March 31?
CREATE TABLE table_name_56 (visitor VARCHAR, date VARCHAR)
SELECT episodes FROM table_14562722_2 WHERE region_1 = "September 19, 2006"
Name the episodes when region 1 is september 19, 2006
CREATE TABLE table_14562722_2 (episodes VARCHAR, region_1 VARCHAR)
SELECT MAX(tournament) FROM table_name_90 WHERE total = 3 AND team = "iowa state"
How many tournament titles for iowa state with 3 total titles?
CREATE TABLE table_name_90 (tournament INTEGER, total VARCHAR, team VARCHAR)
SELECT record FROM table_name_91 WHERE time = "2:57"
Which record has 2:57 as the time?
CREATE TABLE table_name_91 (record VARCHAR, time VARCHAR)
SELECT date FROM table_name_69 WHERE competition = "friendly" AND result = "3–0"
On what date was a friendly competition and a result of 3–0?
CREATE TABLE table_name_69 (date VARCHAR, competition VARCHAR, result VARCHAR)