answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT rettö FROM table_name_81 WHERE linke = "0.1%" AND fritz = "1.3%"
CREATE TABLE table_name_81 (rettö VARCHAR, linke VARCHAR, fritz VARCHAR)
What percent did RETTÖ get in the state where LINKE got 0.1%, and FRITZ got 1.3%?
SELECT grüne FROM table_name_14 WHERE fritz = "1.3%"
CREATE TABLE table_name_14 (grüne VARCHAR, fritz VARCHAR)
What percent did GRÜNE get in the state where FRITZ got 1.3%?
SELECT linke FROM table_name_99 WHERE state = "tyrol"
CREATE TABLE table_name_99 (linke VARCHAR, state VARCHAR)
What percent did LINKE get in Tyrol?
SELECT stark FROM table_name_58 WHERE state = "upper austria"
CREATE TABLE table_name_58 (stark VARCHAR, state VARCHAR)
What percent did STARK get in upper austria?
SELECT MIN(against) FROM table_name_45 WHERE date = "27/03/1971"
CREATE TABLE table_name_45 (against INTEGER, date VARCHAR)
What's the lowest against on 27/03/1971?
SELECT venue FROM table_name_16 WHERE against > 14 AND opposing_teams = "scotland" AND status = "five nations"
CREATE TABLE table_name_16 (venue VARCHAR, status VARCHAR, against VARCHAR, opposing_teams VARCHAR)
What venue has an against over 14, an opposing team of scotland, and a status of five nations?
SELECT player FROM table_name_57 WHERE place = "t4" AND score = 71 - 74 - 66 = 211
CREATE TABLE table_name_57 (player VARCHAR, place VARCHAR, score VARCHAR)
What is the T4 Place Player with a Score of 71-74-66=211?
SELECT score FROM table_name_48 WHERE to_par = "–1" AND player = "henrik stenson"
CREATE TABLE table_name_48 (score VARCHAR, to_par VARCHAR, player VARCHAR)
With a To par of –1, what is Player Henrik Stenson's Score?
SELECT to_par FROM table_name_89 WHERE score = 73 - 67 - 68 = 208
CREATE TABLE table_name_89 (to_par VARCHAR, score VARCHAR)
What is the To par of the Player with a Score of 73-67-68=208?
SELECT project_management FROM table_name_9 WHERE blogs = "no" AND xml_forms_management_and_workflow = "no" AND enterprise_search = "no" AND social_software = "no"
CREATE TABLE table_name_9 (project_management VARCHAR, social_software VARCHAR, enterprise_search VARCHAR, blogs VARCHAR, xml_forms_management_and_workflow VARCHAR)
WHAT IS THE PM THAT HAS NO BLOGS, NO XML Forms Management and workflow, NO SEARCH, AND NO SOCIAL SOFTWARE?
SELECT charting FROM table_name_96 WHERE blogs = "no" AND discussion = "no"
CREATE TABLE table_name_96 (charting VARCHAR, blogs VARCHAR, discussion VARCHAR)
WHAT CHARTING HAS NO BLOGS OR DISCUSSION?
SELECT social_software FROM table_name_18 WHERE discussion = "no" AND time_tracking = "no" AND charting = "no"
CREATE TABLE table_name_18 (social_software VARCHAR, charting VARCHAR, discussion VARCHAR, time_tracking VARCHAR)
WHAT IS THE SOCIAL SOFTWARE WITH NO DISCUSSION, NO TIME TRACKING, AND NO CHARTING?
SELECT bookmarking, _tagging, _rating_and_comments FROM table_name_1 WHERE list_management = "no" AND charting = "no" AND web_publishing = "no" AND name = "microsoft exchange server"
CREATE TABLE table_name_1 (bookmarking VARCHAR, _tagging VARCHAR, _rating_and_comments VARCHAR, name VARCHAR, web_publishing VARCHAR, list_management VARCHAR, charting VARCHAR)
WHAT IS THE BOOKMARKING, TAGGING, RATING AND COMMENTS WITH NO LIST MANAGEMENT, NO CHARTING, NO WEB PUBLISHING, OF MICROSOFT EXCHANGE SERVER?
SELECT constellation FROM table_name_71 WHERE date_sent = "september 4, 2001" AND distance___ly__ < 57.4
CREATE TABLE table_name_71 (constellation VARCHAR, date_sent VARCHAR, distance___ly__ VARCHAR)
What is Constellation, when Date Sent is "September 4, 2001", and when Distance ( ly ) is less than 57.4?
SELECT date_sent FROM table_name_71 WHERE constellation = "delphinus"
CREATE TABLE table_name_71 (date_sent VARCHAR, constellation VARCHAR)
What is Date, when Constellation is "Delphinus"?
SELECT COUNT(distance___ly__) FROM table_name_34 WHERE constellation = "draco"
CREATE TABLE table_name_34 (distance___ly__ VARCHAR, constellation VARCHAR)
What is the total number of Distance ( ly ), when Constellation is "Draco"?
SELECT date_sent FROM table_name_75 WHERE signal_power___kw__ < 126 AND arrival_date = "january 2059" AND hd_designation = "hd193664"
CREATE TABLE table_name_75 (date_sent VARCHAR, hd_designation VARCHAR, signal_power___kw__ VARCHAR, arrival_date VARCHAR)
What is Date Sent, when Signal Power ( kW ) is less than 126, when Arrival Date is "January 2059", and when HD Designation is "HD193664"?
SELECT constellation FROM table_name_82 WHERE hd_designation = "hd197076"
CREATE TABLE table_name_82 (constellation VARCHAR, hd_designation VARCHAR)
What is Constellation, when HD Designation is "HD197076"?
SELECT date FROM table_name_4 WHERE score = "6–4, 6–4" AND opponent = "leonardo tavares"
CREATE TABLE table_name_4 (date VARCHAR, score VARCHAR, opponent VARCHAR)
What date was the match against leonardo tavares with a score of 6–4, 6–4?
SELECT date FROM table_name_9 WHERE opponent = "adrián menéndez-maceiras"
CREATE TABLE table_name_9 (date VARCHAR, opponent VARCHAR)
What date was the match against adrián menéndez-maceiras?
SELECT MAX(wins) FROM table_name_83 WHERE golden_rivers = "quambatook" AND against < 1129
CREATE TABLE table_name_83 (wins INTEGER, golden_rivers VARCHAR, against VARCHAR)
What is the highest number of wins for Quambatook when Against is less than 1129?
SELECT COUNT(draws) FROM table_name_20 WHERE wins < 3
CREATE TABLE table_name_20 (draws VARCHAR, wins INTEGER)
What is the total number of draws when there are fewer than 3 wins?
SELECT COUNT(draws) FROM table_name_7 WHERE losses > 11 AND wins < 4 AND golden_rivers = "wakool"
CREATE TABLE table_name_7 (draws VARCHAR, golden_rivers VARCHAR, losses VARCHAR, wins VARCHAR)
What is the total number of draws for Wakool when there are more than 11 losses and fewer than 4 wins?
SELECT country FROM table_name_66 WHERE score = 69 - 74 = 143
CREATE TABLE table_name_66 (country VARCHAR, score VARCHAR)
Which Country has a Score of 69-74=143?
SELECT player FROM table_name_36 WHERE to_par < 5 AND score = 70 - 72 = 142
CREATE TABLE table_name_36 (player VARCHAR, to_par VARCHAR, score VARCHAR)
Which Player has a To Par smaller than 5, and a Score of 70-72=142?
SELECT score FROM table_name_81 WHERE player = "frank moore"
CREATE TABLE table_name_81 (score VARCHAR, player VARCHAR)
What was Frank Moore's score?
SELECT score FROM table_name_84 WHERE home_team = "birmingham city"
CREATE TABLE table_name_84 (score VARCHAR, home_team VARCHAR)
What was the score of the game that home team birmingham city played?
SELECT date FROM table_name_43 WHERE away_team = "northampton town"
CREATE TABLE table_name_43 (date VARCHAR, away_team VARCHAR)
What date was the game when away team northampton town played?
SELECT away_team FROM table_name_16 WHERE home_team = "woking"
CREATE TABLE table_name_16 (away_team VARCHAR, home_team VARCHAR)
Who was the team who played home team woking?
SELECT home FROM table_name_81 WHERE league = "3rd liga (iii)"
CREATE TABLE table_name_81 (home VARCHAR, league VARCHAR)
What is the home for the league 3rd liga (iii)?
SELECT home FROM table_name_11 WHERE league = "3rd liga" AND away = "4-0"
CREATE TABLE table_name_11 (home VARCHAR, league VARCHAR, away VARCHAR)
What is the home for league 3rd liga, and an away of 4-0?
SELECT home FROM table_name_1 WHERE away = "4-0"
CREATE TABLE table_name_1 (home VARCHAR, away VARCHAR)
What is the home for the away of 4-0?
SELECT season FROM table_name_89 WHERE league = "3rd liga" AND away = "1-0"
CREATE TABLE table_name_89 (season VARCHAR, league VARCHAR, away VARCHAR)
What season has a league 3rd liga, and away of 1-0?
SELECT teams FROM table_name_66 WHERE season = "2009-10"
CREATE TABLE table_name_66 (teams VARCHAR, season VARCHAR)
What team has a season of 2009-10?
SELECT MAX(goals_against) FROM table_name_21 WHERE points > 25 AND club = "sd indautxu" AND position > 3
CREATE TABLE table_name_21 (goals_against INTEGER, position VARCHAR, points VARCHAR, club VARCHAR)
What is the highest Goals Against, when Points is greater than 25, when Club is "SD Indautxu", and when Position is greater than 3?
SELECT COUNT(wins) FROM table_name_48 WHERE draws < 2
CREATE TABLE table_name_48 (wins VARCHAR, draws INTEGER)
What is the total number of Wins, when Draws is less than 2?
SELECT AVG(wins) FROM table_name_96 WHERE played < 30
CREATE TABLE table_name_96 (wins INTEGER, played INTEGER)
What is the average Wins, when Played is less than 30?
SELECT COUNT(wins) FROM table_name_93 WHERE draws < 5 AND goals_against > 49 AND played > 30
CREATE TABLE table_name_93 (wins VARCHAR, played VARCHAR, draws VARCHAR, goals_against VARCHAR)
What is the total number of Wins, when Draws is less than 5, when Goals is greater than 49, and when Played is greater than 30?
SELECT MIN(goal_difference) FROM table_name_1 WHERE position = 7 AND played > 30
CREATE TABLE table_name_1 (goal_difference INTEGER, position VARCHAR, played VARCHAR)
What is the lowest Goal Difference, when Position is "7", and when Played is greater than 30?
SELECT week_4 FROM table_name_26 WHERE week_3 = "laura nicole"
CREATE TABLE table_name_26 (week_4 VARCHAR, week_3 VARCHAR)
What is the week 3, prior to the when the week 4 was Laura Nicole?
SELECT week_2 FROM table_name_99 WHERE week_4 = "miranda jordan"
CREATE TABLE table_name_99 (week_2 VARCHAR, week_4 VARCHAR)
What was the week 2 prior to the when Miranda Jordan was the week 4?
SELECT week_2 FROM table_name_60 WHERE week_3 = "brittany alyse"
CREATE TABLE table_name_60 (week_2 VARCHAR, week_3 VARCHAR)
What was the week 2 prior to the when Brittany Alyse was week 3?
SELECT week_5 FROM table_name_36 WHERE week_1 = "dani dior"
CREATE TABLE table_name_36 (week_5 VARCHAR, week_1 VARCHAR)
What is the week 5 after Dani Dior as week 1?
SELECT week_2 FROM table_name_40 WHERE week_3 = "lara leverence"
CREATE TABLE table_name_40 (week_2 VARCHAR, week_3 VARCHAR)
What was the week 2 before Lara Leverence was week 3?
SELECT COUNT(bronze) FROM table_name_24 WHERE total < 1
CREATE TABLE table_name_24 (bronze VARCHAR, total INTEGER)
What is the total number of bronzes that is less than 1 in total?
SELECT COUNT(bronze) FROM table_name_97 WHERE gold < 2 AND silver > 1
CREATE TABLE table_name_97 (bronze VARCHAR, gold VARCHAR, silver VARCHAR)
What is the total number of bronze that has less than 2 gold, and more than 1 silver?
SELECT MIN(rank) FROM table_name_75 WHERE gold < 1 AND silver = 0 AND bronze = 1 AND total < 1
CREATE TABLE table_name_75 (rank INTEGER, total VARCHAR, bronze VARCHAR, gold VARCHAR, silver VARCHAR)
What is the lowest rank with less than 1 gold, 0 silver, 1 bronze, and a total less than 1?
SELECT AVG(bronze) FROM table_name_64 WHERE gold < 0
CREATE TABLE table_name_64 (bronze INTEGER, gold INTEGER)
What is the average bronze for less than 0 gold?
SELECT COUNT(total) FROM table_name_51 WHERE bronze < 8 AND nation = "netherlands" AND rank < 16
CREATE TABLE table_name_51 (total VARCHAR, rank VARCHAR, bronze VARCHAR, nation VARCHAR)
What is the total number for less than 8 bronze, the Netherlands nation, and is ranked less than 16?
SELECT city FROM table_name_57 WHERE status = "active" AND us_state_district = "california" AND greek_designation = "established colony"
CREATE TABLE table_name_57 (city VARCHAR, greek_designation VARCHAR, status VARCHAR, us_state_district VARCHAR)
What California city has an active status and a greek designation of established colony?
SELECT greek_designation FROM table_name_74 WHERE us_state_district = "new york" AND charter_date = "april 23, 2005"
CREATE TABLE table_name_74 (greek_designation VARCHAR, us_state_district VARCHAR, charter_date VARCHAR)
What's the greek designation of the new york chapter with a charter date of april 23, 2005?
SELECT collegiate_institution FROM table_name_56 WHERE status = "active" AND charter_date = "march 30, 2002"
CREATE TABLE table_name_56 (collegiate_institution VARCHAR, status VARCHAR, charter_date VARCHAR)
What collegiate institution has an active status and a charter date of march 30, 2002?
SELECT greek_designation FROM table_name_28 WHERE city = "riverside"
CREATE TABLE table_name_28 (greek_designation VARCHAR, city VARCHAR)
What's the greek designation of the city riverside?
SELECT city FROM table_name_9 WHERE charter_date = "november 24, 1999"
CREATE TABLE table_name_9 (city VARCHAR, charter_date VARCHAR)
What city has a charter date of november 24, 1999?
SELECT us_state_district FROM table_name_51 WHERE charter_date = "april 17, 2011"
CREATE TABLE table_name_51 (us_state_district VARCHAR, charter_date VARCHAR)
What state or district has a charter date of april 17, 2011?
SELECT MIN(all_around) FROM table_name_70 WHERE total = 19.85 AND hoop < 9.85
CREATE TABLE table_name_70 (all_around INTEGER, total VARCHAR, hoop VARCHAR)
What is the smallest all around when the total is 19.85 and the hoop is less than 9.85?
SELECT AVG(hoop) FROM table_name_37 WHERE all_around < 9.7
CREATE TABLE table_name_37 (hoop INTEGER, all_around INTEGER)
What is the average hoop when the all around is less than 9.7?
SELECT median_family_income FROM table_name_76 WHERE median_household_income = "$50,717"
CREATE TABLE table_name_76 (median_family_income VARCHAR, median_household_income VARCHAR)
What is Median Family Income, when Median Household Income is "$50,717"?
SELECT MAX(number_of_households) FROM table_name_57 WHERE per_capita_income = "$25,557" AND population < 22 OFFSET 330
CREATE TABLE table_name_57 (number_of_households INTEGER, per_capita_income VARCHAR, population VARCHAR)
What is the highest Number of Households, when Per Capita Income is "$25,557", and when Population is less than "22,330"?
SELECT MIN(population) FROM table_name_80 WHERE per_capita_income = "$16,330"
CREATE TABLE table_name_80 (population INTEGER, per_capita_income VARCHAR)
What is the lowest Population, when Per Capita Income is "$16,330"?
SELECT MAX(population) FROM table_name_86 WHERE per_capita_income = "$17,168" AND number_of_households > 3 OFFSET 287
CREATE TABLE table_name_86 (population INTEGER, per_capita_income VARCHAR, number_of_households VARCHAR)
What is the highest Population, when Per Capita Income is "$17,168", and when Number of Households is greater than 3,287?
SELECT place FROM table_name_1 WHERE score = 70 - 68 = 138 AND player = "andrew magee"
CREATE TABLE table_name_1 (place VARCHAR, player VARCHAR, score VARCHAR)
What is Place, when Score is "70-68=138", and when Player is "Andrew Magee"?
SELECT to_par FROM table_name_57 WHERE place = "t5" AND score = 70 - 68 = 138
CREATE TABLE table_name_57 (to_par VARCHAR, place VARCHAR, score VARCHAR)
What is To par, when Place is "T5", and when Score is "70-68=138"?
SELECT score FROM table_name_21 WHERE place = "t5" AND country = "united states" AND player = "davis love iii"
CREATE TABLE table_name_21 (score VARCHAR, player VARCHAR, place VARCHAR, country VARCHAR)
What is Score, when Place is "T5", when Country is "United States", and when Player is "Davis Love III"?
SELECT player FROM table_name_51 WHERE country = "united states" AND place = "t10" AND score = 68 - 71 = 139
CREATE TABLE table_name_51 (player VARCHAR, country VARCHAR, place VARCHAR, score VARCHAR)
What is Player, when Country is "United States", when Place is "T10", and when Score is "68-71=139"?
SELECT score FROM table_name_81 WHERE player = "vijay singh"
CREATE TABLE table_name_81 (score VARCHAR, player VARCHAR)
What is Score, when Player is "Vijay Singh"?
SELECT player FROM table_name_7 WHERE to_par = "–2" AND country = "wales"
CREATE TABLE table_name_7 (player VARCHAR, to_par VARCHAR, country VARCHAR)
Which Player has a To par of –2, and a Country of wales?
SELECT score FROM table_name_69 WHERE to_par = "–3" AND player = "santiago luna"
CREATE TABLE table_name_69 (score VARCHAR, to_par VARCHAR, player VARCHAR)
Which Score has a To par of –3, and a Player of santiago luna?
SELECT player FROM table_name_17 WHERE score = 67 AND country = "united states"
CREATE TABLE table_name_17 (player VARCHAR, score VARCHAR, country VARCHAR)
Which Player has a Score of 67 in united states?
SELECT opponents_in_the_final FROM table_name_51 WHERE tournament = "schenectady, u.s."
CREATE TABLE table_name_51 (opponents_in_the_final VARCHAR, tournament VARCHAR)
What are the Opponents at the Schenectady, U.S. Tournament?
SELECT outcome FROM table_name_29 WHERE date = "august 20, 2007"
CREATE TABLE table_name_29 (outcome VARCHAR, date VARCHAR)
What was the outcome of the August 20, 2007 match?
SELECT score FROM table_name_2 WHERE date = "august 20, 2007"
CREATE TABLE table_name_2 (score VARCHAR, date VARCHAR)
What was the score in the August 20, 2007 match?
SELECT tournament FROM table_name_20 WHERE date = "july 13, 2008"
CREATE TABLE table_name_20 (tournament VARCHAR, date VARCHAR)
Which tournament was held on July 13, 2008?
SELECT opponent FROM table_name_49 WHERE date = "september 20, 2010"
CREATE TABLE table_name_49 (opponent VARCHAR, date VARCHAR)
Who was the opponent in the September 20, 2010 match?
SELECT date FROM table_name_35 WHERE tournament = "izmir cup" AND opponent = "somdev devvarman"
CREATE TABLE table_name_35 (date VARCHAR, tournament VARCHAR, opponent VARCHAR)
What date was the Izmir Cup in which İlhan played against Somdev Devvarman?
SELECT year_s__won FROM table_name_25 WHERE player = "tom lehman"
CREATE TABLE table_name_25 (year_s__won VARCHAR, player VARCHAR)
What years did Tom Lehman win?
SELECT COUNT(to_par) FROM table_name_26 WHERE year_s__won = "1995"
CREATE TABLE table_name_26 (to_par VARCHAR, year_s__won VARCHAR)
What was the total To Par for the winner in 1995?
SELECT SUM(year) FROM table_name_96 WHERE event = "100 m hurdles" AND competition = "world championships" AND venue = "osaka, japan"
CREATE TABLE table_name_96 (year INTEGER, venue VARCHAR, event VARCHAR, competition VARCHAR)
How many years had a 100 m hurdles event at the world championships in Osaka, Japan?
SELECT position FROM table_name_8 WHERE venue = "valencia, spain"
CREATE TABLE table_name_8 (position VARCHAR, venue VARCHAR)
What was the position of the event held in Valencia, Spain?
SELECT MIN(year) FROM table_name_98 WHERE venue = "berlin, germany" AND event = "100 m hurdles"
CREATE TABLE table_name_98 (year INTEGER, venue VARCHAR, event VARCHAR)
What was the earliest year that an event held in Berlin, Germany had a 100 m hurdles event?
SELECT event FROM table_name_3 WHERE venue = "valencia, spain"
CREATE TABLE table_name_3 (event VARCHAR, venue VARCHAR)
What even was held in Valencia, Spain?
SELECT time FROM table_name_4 WHERE competition = "tim trophy" AND opponent = "juventus"
CREATE TABLE table_name_4 (time VARCHAR, competition VARCHAR, opponent VARCHAR)
What is the time of the tim trophy competition where juventus was the opponent?
SELECT competition FROM table_name_27 WHERE date = "15 august 2008"
CREATE TABLE table_name_27 (competition VARCHAR, date VARCHAR)
What is the competition on 15 August 2008?
SELECT score FROM table_name_3 WHERE competition = "friendly match" AND date = "24 july 2008"
CREATE TABLE table_name_3 (score VARCHAR, competition VARCHAR, date VARCHAR)
What is the score of the friendly match competition on 24 July 2008?
SELECT ground FROM table_name_83 WHERE competition = "tim trophy" AND time = "23:00 cet"
CREATE TABLE table_name_83 (ground VARCHAR, competition VARCHAR, time VARCHAR)
What is the ground of the tim trophy competition, which had a time of 23:00 cet?
SELECT competition FROM table_name_91 WHERE time = "23:00 cet"
CREATE TABLE table_name_91 (competition VARCHAR, time VARCHAR)
What competition is at 23:00 cet?
SELECT outcome FROM table_name_89 WHERE date = "march 20, 1994"
CREATE TABLE table_name_89 (outcome VARCHAR, date VARCHAR)
What is the outcome on March 20, 1994?
SELECT tournament FROM table_name_78 WHERE surface = "hard" AND date = "february 25, 1996"
CREATE TABLE table_name_78 (tournament VARCHAR, surface VARCHAR, date VARCHAR)
What tournament had a hard surface on February 25, 1996?
SELECT score_in_the_final FROM table_name_60 WHERE surface = "hard" AND opponent_in_the_final = "hiromi nagano"
CREATE TABLE table_name_60 (score_in_the_final VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)
What is the score in the final with a hard surface and is against Hiromi Nagano?
SELECT outcome FROM table_name_91 WHERE surface = "clay" AND date = "april 21, 1996"
CREATE TABLE table_name_91 (outcome VARCHAR, surface VARCHAR, date VARCHAR)
What is the total outcome for the clay surface on April 21, 1996?
SELECT aircraft FROM table_name_3 WHERE location = "s of avion"
CREATE TABLE table_name_3 (aircraft VARCHAR, location VARCHAR)
What aircraft is located at S of Avion?
SELECT SUM(unit) FROM table_name_20 WHERE aircraft = "f.e.2b" AND location = "logeast"
CREATE TABLE table_name_20 (unit INTEGER, aircraft VARCHAR, location VARCHAR)
What is the Unit for the Aircraft F.e.2b, located in Logeast?
SELECT official_name FROM table_name_63 WHERE census_ranking = "1,229 of 5,008"
CREATE TABLE table_name_63 (official_name VARCHAR, census_ranking VARCHAR)
What is the name of the place that has a census ranking of 1,229 of 5,008?
SELECT area_km_2 FROM table_name_38 WHERE official_name = "sackville"
CREATE TABLE table_name_38 (area_km_2 VARCHAR, official_name VARCHAR)
How large, in square kilometers, is Sackville?
SELECT official_name FROM table_name_38 WHERE population < 1 OFFSET 429
CREATE TABLE table_name_38 (official_name VARCHAR, population INTEGER)
What is the name(s) of the place(s) with a population of less than 1,429?
SELECT score FROM table_name_93 WHERE points = 33
CREATE TABLE table_name_93 (score VARCHAR, points VARCHAR)
What score has 33 as the points?
SELECT date FROM table_name_53 WHERE arena = "joe louis arena"
CREATE TABLE table_name_53 (date VARCHAR, arena VARCHAR)
What date has joe louis arena as the arena?
SELECT competition FROM table_name_4 WHERE date = "2 june 1992"
CREATE TABLE table_name_4 (competition VARCHAR, date VARCHAR)
What competition was played on 2 June 1992?
SELECT date FROM table_name_74 WHERE result = "3-0" AND competition = "friendly match"
CREATE TABLE table_name_74 (date VARCHAR, result VARCHAR, competition VARCHAR)
What date was a friendly match played that ended in a 3-0 score?
SELECT score FROM table_name_38 WHERE date = "5 september 2001"
CREATE TABLE table_name_38 (score VARCHAR, date VARCHAR)
What was the score of the match played on 5 September 2001?