question
stringlengths
12
243
answer
stringlengths
18
557
context
stringlengths
27
489
What is the least amount in each season?
SELECT MIN(no_in_season) FROM table_29273390_1
CREATE TABLE table_29273390_1 (no_in_season INTEGER)
What was the Time when Set 3 was 25–14?
SELECT time FROM table_name_70 WHERE set_3 = "25–14"
CREATE TABLE table_name_70 (time VARCHAR, set_3 VARCHAR)
What name has the call sign DWYS?
SELECT name FROM table_name_40 WHERE call_sign = "dwys"
CREATE TABLE table_name_40 (name VARCHAR, call_sign VARCHAR)
What tournament is on October 27, 2003?
SELECT tournament FROM table_name_84 WHERE date = "october 27, 2003"
CREATE TABLE table_name_84 (tournament VARCHAR, date VARCHAR)
What type of ship is a Kobben class vessel that has been in service longer than 2?
SELECT type FROM table_name_18 WHERE in_service > 2 AND vessel = "kobben class"
CREATE TABLE table_name_18 (type VARCHAR, in_service VARCHAR, vessel VARCHAR)
How many staying councillors were there when the election result was larger than 0, the new council less than 27 and the party conservatives?
SELECT AVG(staying_councillors) FROM table_name_42 WHERE election_result > 0 AND party = "conservatives" AND new_council < 27
CREATE TABLE table_name_42 (staying_councillors INTEGER, new_council VARCHAR, election_result VARCHAR, party VARCHAR)
Which player played 2004-05
SELECT player FROM table_11545282_18 WHERE years_for_jazz = "2004-05"
CREATE TABLE table_11545282_18 (player VARCHAR, years_for_jazz VARCHAR)
Which Pop/Area (1/km²) has a No P. larger than 1, and a Name of albergaria-a-velha?
SELECT AVG(pop_area__1_km²_) FROM table_name_84 WHERE no_p > 1 AND name = "albergaria-a-velha"
CREATE TABLE table_name_84 (pop_area__1_km²_ INTEGER, no_p VARCHAR, name VARCHAR)
What is Time, when Ground is Waverley Park, and when Away Team is Footscray?
SELECT time FROM table_name_69 WHERE ground = "waverley park" AND away_team = "footscray"
CREATE TABLE table_name_69 (time VARCHAR, ground VARCHAR, away_team VARCHAR)
During what conference is North Carolina listed as the tournament winner?
SELECT conference FROM table_28365816_2 WHERE tournament_winner = "North Carolina"
CREATE TABLE table_28365816_2 (conference VARCHAR, tournament_winner VARCHAR)
Name the record with attendance of 73,996
SELECT record FROM table_name_67 WHERE attendance = "73,996"
CREATE TABLE table_name_67 (record VARCHAR, attendance VARCHAR)
What is the total number of 2nd place finishes for riders active in years 2009-2010 and more than 0 wins?
SELECT SUM(2 AS nd_pl) FROM table_name_83 WHERE years_active = "2009-2010" AND wins > 0
CREATE TABLE table_name_83 (years_active VARCHAR, wins VARCHAR)
What was the year of Bridget Jones: The Edge of Reason that was nominated?
SELECT MIN(year) FROM table_name_87 WHERE result = "nominated" AND film = "bridget jones: the edge of reason"
CREATE TABLE table_name_87 (year INTEGER, result VARCHAR, film VARCHAR)
What was the loss of the Brewers game when the record was 46-48?
SELECT loss FROM table_name_90 WHERE record = "46-48"
CREATE TABLE table_name_90 (loss VARCHAR, record VARCHAR)
what episode number had 11.73 million viewers?
SELECT episode FROM table_24689168_5 WHERE viewers__millions_ = "11.73"
CREATE TABLE table_24689168_5 (episode VARCHAR, viewers__millions_ VARCHAR)
Which Designation has a Quantity of 52?
SELECT designation FROM table_name_84 WHERE quantity = 52
CREATE TABLE table_name_84 (designation VARCHAR, quantity VARCHAR)
What is the union moving name and is from cmr?
SELECT name FROM table_name_92 WHERE moving_to = "union" AND country = "cmr"
CREATE TABLE table_name_92 (name VARCHAR, moving_to VARCHAR, country VARCHAR)
Which engine had a 48kw (65 ps) @ 5600 rpm power?
SELECT engine FROM table_name_61 WHERE power = "48kw (65 ps) @ 5600 rpm"
CREATE TABLE table_name_61 (engine VARCHAR, power VARCHAR)
What is the lowest Year, when Finish is "29", and when Start is less than 24?
SELECT MIN(year) FROM table_name_14 WHERE finish = 29 AND start < 24
CREATE TABLE table_name_14 (year INTEGER, finish VARCHAR, start VARCHAR)
If the winners from the previous round is 8, what is the round?
SELECT round FROM table_1859269_1 WHERE winners_from_previous_round = "8"
CREATE TABLE table_1859269_1 (round VARCHAR, winners_from_previous_round VARCHAR)
Which Torque has a Volume of 1896 cc, and a CO 2 of 140 g/km?
SELECT torque FROM table_name_21 WHERE volume = "1896 cc" AND co_2 = "140 g/km"
CREATE TABLE table_name_21 (torque VARCHAR, volume VARCHAR, co_2 VARCHAR)
What was the score of the game where Philadelphia was the visitor?
SELECT score FROM table_name_84 WHERE visitor = "philadelphia"
CREATE TABLE table_name_84 (score VARCHAR, visitor VARCHAR)
How many points have pittsburgh as the visitor, and philadelphia as the home?
SELECT COUNT(points) FROM table_name_38 WHERE visitor = "pittsburgh" AND home = "philadelphia"
CREATE TABLE table_name_38 (points VARCHAR, visitor VARCHAR, home VARCHAR)
What was the Sp of the 2nd Position?
SELECT COUNT(sp) FROM table_22265261_1 WHERE position = "2nd"
CREATE TABLE table_22265261_1 (sp VARCHAR, position VARCHAR)
Who had the best time of 1:32.269?
SELECT name FROM table_name_21 WHERE best = "1:32.269"
CREATE TABLE table_name_21 (name VARCHAR, best VARCHAR)
What is the away side score when footscray is the home side?
SELECT away_team AS score FROM table_name_38 WHERE home_team = "footscray"
CREATE TABLE table_name_38 (away_team VARCHAR, home_team VARCHAR)
What is the total number of swimsuit scores that have average scores less than 8.823, evening gown scores less than 8.69, and interview scores equal to 8.27?
SELECT COUNT(swimsuit) FROM table_name_19 WHERE average < 8.823 AND evening_gown < 8.69 AND interview = 8.27
CREATE TABLE table_name_19 (swimsuit VARCHAR, interview VARCHAR, average VARCHAR, evening_gown VARCHAR)
I want to know the driver when grid is greater than 13 and laps is less than 60 with time/retired of accident
SELECT driver FROM table_name_41 WHERE grid > 13 AND laps < 60 AND time_retired = "accident"
CREATE TABLE table_name_41 (driver VARCHAR, time_retired VARCHAR, grid VARCHAR, laps VARCHAR)
On what date was the score 2–4?
SELECT date FROM table_name_89 WHERE score = "2–4"
CREATE TABLE table_name_89 (date VARCHAR, score VARCHAR)
Which Visitor has a Score of 0-4?
SELECT visitor FROM table_name_78 WHERE score = "0-4"
CREATE TABLE table_name_78 (visitor VARCHAR, score VARCHAR)
Name the project with length overall being 25 and name of levante
SELECT project FROM table_name_40 WHERE length_overall_in_meters__without_bowsprit_ = 25 AND name = "levante"
CREATE TABLE table_name_40 (project VARCHAR, length_overall_in_meters__without_bowsprit_ VARCHAR, name VARCHAR)
What was the loss of the game against with LA New Bears with a save of Mac Suzuki?
SELECT loss FROM table_name_4 WHERE opponent = "la new bears" AND save = "mac suzuki"
CREATE TABLE table_name_4 (loss VARCHAR, opponent VARCHAR, save VARCHAR)
List name, dates active, and number of deaths for all storms with at least 1 death.
SELECT name, dates_active, number_deaths FROM storm WHERE number_deaths >= 1
CREATE TABLE storm (name VARCHAR, dates_active VARCHAR, number_deaths VARCHAR)
what is the sum of drawn when points is less than 15, lost is 8 and position is more than 6?
SELECT SUM(drawn) FROM table_name_81 WHERE points < 15 AND lost = 8 AND position > 6
CREATE TABLE table_name_81 (drawn INTEGER, position VARCHAR, points VARCHAR, lost VARCHAR)
Who had the most assists and how many did they have on January 5?
SELECT high_assists FROM table_29556461_7 WHERE date = "January 5"
CREATE TABLE table_29556461_7 (high_assists VARCHAR, date VARCHAR)
What's the number of wins when the flags were less than 8 and 52.11% of wins?
SELECT COUNT(wins) FROM table_name_60 WHERE percentage_wins = "52.11%" AND flags < 8
CREATE TABLE table_name_60 (wins VARCHAR, percentage_wins VARCHAR, flags VARCHAR)
What date was the Izmir Cup in which İlhan played against Somdev Devvarman?
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 are the average play-offs that have an FA Cup greater than 3?
SELECT AVG(play_offs) FROM table_name_9 WHERE fa_cup > 3
CREATE TABLE table_name_9 (play_offs INTEGER, fa_cup INTEGER)
Name the title directed by charles beeson by jeremy carver
SELECT title FROM table_19396259_1 WHERE directed_by = "Charles Beeson" AND written_by = "Jeremy Carver"
CREATE TABLE table_19396259_1 (title VARCHAR, directed_by VARCHAR, written_by VARCHAR)
What is the name of the episode that had 2.02 million u.s. viewers?
SELECT title FROM table_27892955_1 WHERE us_viewers__million_ = "2.02"
CREATE TABLE table_27892955_1 (title VARCHAR, us_viewers__million_ VARCHAR)
Whcih Date has an Event of 3000 m?
SELECT date FROM table_name_6 WHERE event = "3000 m"
CREATE TABLE table_name_6 (date VARCHAR, event VARCHAR)
What position did the school of alabama draft?
SELECT position FROM table_name_21 WHERE school = "alabama"
CREATE TABLE table_name_21 (position VARCHAR, school VARCHAR)
Which Country has a Rank of 5?
SELECT country FROM table_name_23 WHERE rank = 5
CREATE TABLE table_name_23 (country VARCHAR, rank VARCHAR)
How many bronze medals for the nation with over 9 golds?
SELECT COUNT(bronze) FROM table_name_8 WHERE gold > 9
CREATE TABLE table_name_8 (bronze VARCHAR, gold INTEGER)
What did the home team score when they played the away team of Geelong?
SELECT home_team AS score FROM table_name_10 WHERE away_team = "geelong"
CREATE TABLE table_name_10 (home_team VARCHAR, away_team VARCHAR)
What venue had a competition of World Junior Championships before 2011?
SELECT venue FROM table_name_29 WHERE year < 2011 AND competition = "world junior championships"
CREATE TABLE table_name_29 (venue VARCHAR, year VARCHAR, competition VARCHAR)
What was the competition on 29 November 1997 that resulted in a draw?
SELECT competition FROM table_name_97 WHERE result = "draw" AND date = "29 november 1997"
CREATE TABLE table_name_97 (competition VARCHAR, result VARCHAR, date VARCHAR)
When hermann uhde is the count who is the conductor?
SELECT conductor FROM table_29728787_1 WHERE count = "Hermann Uhde"
CREATE TABLE table_29728787_1 (conductor VARCHAR, count VARCHAR)
What report did Jack Brabham win?
SELECT report FROM table_name_21 WHERE winning_driver = "jack brabham"
CREATE TABLE table_name_21 (report VARCHAR, winning_driver VARCHAR)
What is the avererage decile of Francis Douglas Memorial College?
SELECT AVG(decile) FROM table_name_74 WHERE name = "francis douglas memorial college"
CREATE TABLE table_name_74 (decile INTEGER, name VARCHAR)
What is the date of the episode written by Michael Poryes?
SELECT original_air_date FROM table_12030612_3 WHERE written_by = "Michael Poryes"
CREATE TABLE table_12030612_3 (original_air_date VARCHAR, written_by VARCHAR)
What is the place of birth when elevated is May 16, 1288, and cardinalatial title is Deacon of S. Eustachio?
SELECT place_of_birth FROM table_name_78 WHERE elevated = "may 16, 1288" AND cardinalatial_title = "deacon of s. eustachio"
CREATE TABLE table_name_78 (place_of_birth VARCHAR, elevated VARCHAR, cardinalatial_title VARCHAR)
What is the latest year rafael nadal was in the French Open, Roger Federer was in Wimbledon, and Roger Federer was in the Australian Open?
SELECT MAX(year) FROM table_name_71 WHERE french_open = "rafael nadal" AND wimbledon = "roger federer" AND australian_open = "roger federer"
CREATE TABLE table_name_71 (year INTEGER, australian_open VARCHAR, french_open VARCHAR, wimbledon VARCHAR)
How many opponents fought on 1982-12-03?
SELECT COUNT(opponent) FROM table_12206918_2 WHERE date = "1982-12-03"
CREATE TABLE table_12206918_2 (opponent VARCHAR, date VARCHAR)
Which ERP W is the highest one that has a Frequency MHz larger than 88.3, and a City of license of lewis, kansas?
SELECT MAX(erp_w) FROM table_name_9 WHERE frequency_mhz > 88.3 AND city_of_license = "lewis, kansas"
CREATE TABLE table_name_9 (erp_w INTEGER, frequency_mhz VARCHAR, city_of_license VARCHAR)
In which week was the attendance 47,218?
SELECT SUM(week) FROM table_name_27 WHERE attendance = 47 OFFSET 218
CREATE TABLE table_name_27 (week INTEGER, attendance VARCHAR)
Tell me the number range for 1965-66
SELECT no_range FROM table_name_58 WHERE year_built__converted * _ = "1965-66"
CREATE TABLE table_name_58 (no_range VARCHAR, year_built__converted VARCHAR, _ VARCHAR)
If the national trophy/rookie is Gerrard Barrabeig, what is the name of the second?
SELECT second FROM table_25563779_4 WHERE national_trophy_rookie = "Gerrard Barrabeig"
CREATE TABLE table_25563779_4 (second VARCHAR, national_trophy_rookie VARCHAR)
When dxzb-tv is the call sign what is the power kw?
SELECT power_kw FROM table_23394920_1 WHERE callsign = "DXZB-TV"
CREATE TABLE table_23394920_1 (power_kw VARCHAR, callsign VARCHAR)
Where was the game with record 20–23 and how many people attended it
SELECT location_attendance FROM table_17058116_7 WHERE record = "20–23"
CREATE TABLE table_17058116_7 (location_attendance VARCHAR, record VARCHAR)
What is the highest measure number?
SELECT MAX(meas_num) FROM table_256286_39
CREATE TABLE table_256286_39 (meas_num INTEGER)
How many different FSB are there for the 7140N model?
SELECT COUNT(fsb__mhz_) FROM table_269920_3 WHERE model = "7140N"
CREATE TABLE table_269920_3 (fsb__mhz_ VARCHAR, model VARCHAR)
Which Bronze has a Rank of 9?
SELECT COUNT(bronze) FROM table_name_76 WHERE rank = "9"
CREATE TABLE table_name_76 (bronze VARCHAR, rank VARCHAR)
How many points were made when the tries for was 83?
SELECT points FROM table_14058433_3 WHERE tries_for = "83"
CREATE TABLE table_14058433_3 (points VARCHAR, tries_for VARCHAR)
WHAT IS THE Ceased to be Duke of Girona THAT HAS PETER IV?
SELECT ceased_to_be_duke_of_girona FROM table_name_91 WHERE heir_of = "peter iv"
CREATE TABLE table_name_91 (ceased_to_be_duke_of_girona VARCHAR, heir_of VARCHAR)
What tier had a runner-up of Lisa Raymond and a semifinalist of Sandrine Testud Mary Pierce?
SELECT tier FROM table_name_46 WHERE semi_finalists = "sandrine testud mary pierce" AND runner_up = "lisa raymond"
CREATE TABLE table_name_46 (tier VARCHAR, semi_finalists VARCHAR, runner_up VARCHAR)
Which locomotive had a 2-8-2t type, entered service year prior to 1915, and which was built after 1911?
SELECT locomotive FROM table_name_9 WHERE type = "2-8-2t" AND entered_service < 1915 AND built > 1911
CREATE TABLE table_name_9 (locomotive VARCHAR, built VARCHAR, type VARCHAR, entered_service VARCHAR)
How many players has the highest points in the game against the Heat?
SELECT COUNT(high_points) FROM table_23285849_6 WHERE team = "Heat"
CREATE TABLE table_23285849_6 (high_points VARCHAR, team VARCHAR)
What are the names of the courses that have exactly 1 student enrollment?
SELECT T1.course_name FROM Courses AS T1 JOIN Student_Course_Enrolment AS T2 ON T1.course_id = T2.course_id GROUP BY T1.course_name HAVING COUNT(*) = 1
CREATE TABLE Courses (course_name VARCHAR, course_id VARCHAR); CREATE TABLE Student_Course_Enrolment (course_id VARCHAR)
What is the weekly rank where the number is 4?
SELECT weekly_rank FROM table_11753080_2 WHERE _number = 4
CREATE TABLE table_11753080_2 (weekly_rank VARCHAR, _number VARCHAR)
What is Darryl Fedorak's highest round?
SELECT MAX(round) FROM table_name_91 WHERE player = "darryl fedorak"
CREATE TABLE table_name_91 (round INTEGER, player VARCHAR)
What CFL team does Jeff brown play for?
SELECT cfl_team FROM table_name_16 WHERE player = "jeff brown"
CREATE TABLE table_name_16 (cfl_team VARCHAR, player VARCHAR)
What is the least minimum sales tax when the min tax is 105.7 and fed tax is more than 10?
SELECT MIN(minimum_tax_incl_sales_taxes__cad) AS ¢_l_ FROM table_name_27 WHERE min_tax__cad¢_us_gal_ = 105.7 AND federal_excise_tax___cad¢___l__ > 10
CREATE TABLE table_name_27 (minimum_tax_incl_sales_taxes__cad INTEGER, min_tax__cad¢_us_gal_ VARCHAR, federal_excise_tax___cad¢___l__ VARCHAR)
What's the class of the verb whose part 1 is lesan?
SELECT class FROM table_1745843_6 WHERE part_1 = "lesan"
CREATE TABLE table_1745843_6 (class VARCHAR, part_1 VARCHAR)
What is the general classification of Mapei-clas in stage 12?
SELECT general_classification FROM table_name_25 WHERE team_classification = "mapei-clas" AND stage = "12"
CREATE TABLE table_name_25 (general_classification VARCHAR, team_classification VARCHAR, stage VARCHAR)
What is the lowest crowd seen by the mcg Venue?
SELECT MIN(crowd) FROM table_name_84 WHERE venue = "mcg"
CREATE TABLE table_name_84 (crowd INTEGER, venue VARCHAR)
Name the location attendance for 3 game
SELECT location_attendance FROM table_27882867_4 WHERE game = 3
CREATE TABLE table_27882867_4 (location_attendance VARCHAR, game VARCHAR)
What was drawn for 6 bonus points and is against 410 points?
SELECT drawn FROM table_name_87 WHERE bonus_points = "6" AND points_against = "410"
CREATE TABLE table_name_87 (drawn VARCHAR, bonus_points VARCHAR, points_against VARCHAR)
When the game was played at Domnarvsvallen who were the opponents?
SELECT opponents FROM table_name_12 WHERE venue = "domnarvsvallen"
CREATE TABLE table_name_12 (opponents VARCHAR, venue VARCHAR)
What is the party of the election in which Robert Bauman is the incumbent?
SELECT party FROM table_1341690_20 WHERE incumbent = "Robert Bauman"
CREATE TABLE table_1341690_20 (party VARCHAR, incumbent VARCHAR)
What is the average Bike No, when Driver / Passenger is Joris Hendrickx / Kaspars Liepins, and when Position is greater than 4?
SELECT AVG(bike_no) FROM table_name_34 WHERE driver___passenger = "joris hendrickx / kaspars liepins" AND position > 4
CREATE TABLE table_name_34 (bike_no INTEGER, driver___passenger VARCHAR, position VARCHAR)
How many eviction results occurred with a eviction no. 12 and a vote to save of 2.76%?
SELECT COUNT(eviction_result) FROM table_15162479_8 WHERE eviction_no = 12 AND vote_to_save = "2.76%"
CREATE TABLE table_15162479_8 (eviction_result VARCHAR, eviction_no VARCHAR, vote_to_save VARCHAR)
What is the Date of the Event in Punta del Este?
SELECT date FROM table_name_68 WHERE city = "punta del este"
CREATE TABLE table_name_68 (date VARCHAR, city VARCHAR)
What is the surface when the partner was Robert Haybittel?
SELECT surface FROM table_name_42 WHERE partner = "robert haybittel"
CREATE TABLE table_name_42 (surface VARCHAR, partner VARCHAR)
Name the location for illinois
SELECT location FROM table_1672976_7 WHERE big_ten_team = "Illinois"
CREATE TABLE table_1672976_7 (location VARCHAR, big_ten_team VARCHAR)
Studio host of jimmy myers had what play by play?
SELECT play_by_play FROM table_name_80 WHERE studio_host = "jimmy myers"
CREATE TABLE table_name_80 (play_by_play VARCHAR, studio_host VARCHAR)
What is the surface of the French Championships?
SELECT surface FROM table_2215159_2 WHERE championship = "French championships"
CREATE TABLE table_2215159_2 (surface VARCHAR, championship VARCHAR)
Where was the title released in 1977?
SELECT country_of_release FROM table_name_98 WHERE year_of_release = 1977
CREATE TABLE table_name_98 (country_of_release VARCHAR, year_of_release VARCHAR)
What team played on November 17?
SELECT team FROM table_name_17 WHERE date = "november 17"
CREATE TABLE table_name_17 (team VARCHAR, date VARCHAR)
What is the lowest amount of silver medals Iceland, who has less than 87 medals, has?
SELECT MIN(silver) FROM table_name_95 WHERE nation = "iceland" AND total < 87
CREATE TABLE table_name_95 (silver INTEGER, nation VARCHAR, total VARCHAR)
How much were the f/laps if poles is higher than 1.0 during 2008?
SELECT f_laps FROM table_26998693_1 WHERE poles > 1.0 AND season = 2008
CREATE TABLE table_26998693_1 (f_laps VARCHAR, poles VARCHAR, season VARCHAR)
What was the crowd size for the Home team of melbourne?
SELECT COUNT(crowd) FROM table_name_54 WHERE home_team = "melbourne"
CREATE TABLE table_name_54 (crowd VARCHAR, home_team VARCHAR)
What is the drawn that has 22 for played, and 96 for points?
SELECT drawn FROM table_name_96 WHERE played = "22" AND points = "96"
CREATE TABLE table_name_96 (drawn VARCHAR, played VARCHAR, points VARCHAR)
Name the partner with opponent of michaëlla krajicek eleni daniilidou
SELECT partner FROM table_name_20 WHERE opponent = "michaëlla krajicek eleni daniilidou"
CREATE TABLE table_name_20 (partner VARCHAR, opponent VARCHAR)
What is the venue with more than 3 against, and South Africa is the opposing team?
SELECT venue FROM table_name_55 WHERE against > 3 AND opposing_teams = "south africa"
CREATE TABLE table_name_55 (venue VARCHAR, against VARCHAR, opposing_teams VARCHAR)
Who are all the players who've bowled more than 4969 balls?
SELECT name FROM table_2482547_5 WHERE balls_bowled = 4969
CREATE TABLE table_2482547_5 (name VARCHAR, balls_bowled VARCHAR)
Who was the opponent at the week 6 game?
SELECT opponent FROM table_name_52 WHERE week = 6
CREATE TABLE table_name_52 (opponent VARCHAR, week VARCHAR)
what is the public vote on graeme & kristina
SELECT public_vote FROM table_19744915_3 WHERE couple = "Graeme & Kristina"
CREATE TABLE table_19744915_3 (public_vote VARCHAR, couple VARCHAR)
What is the first and last name of the professor in biology department?
SELECT T3.EMP_FNAME, T3.EMP_LNAME FROM professor AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code JOIN employee AS T3 ON T1.EMP_NUM = T3.EMP_NUM WHERE DEPT_NAME = "Biology"
CREATE TABLE professor (dept_code VARCHAR, EMP_NUM VARCHAR); CREATE TABLE department (dept_code VARCHAR); CREATE TABLE employee (EMP_FNAME VARCHAR, EMP_LNAME VARCHAR, EMP_NUM VARCHAR)
Which Tournament has a Margin of victory of 7 strokes
SELECT tournament FROM table_name_38 WHERE margin_of_victory = "7 strokes"
CREATE TABLE table_name_38 (tournament VARCHAR, margin_of_victory VARCHAR)