question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
What is the total number of React, when Name is Sean Wroe, and when Lane is greater than 2?
columns: - name: react type: VARCHAR - name: name type: VARCHAR - name: lane type: VARCHAR table: table_name_78
SELECT COUNT(react) FROM table_name_78 WHERE name = "sean wroe" AND lane > 2
What is the margin of victory in the race where Justin Rose was the runner-up?
columns: - name: margin_of_victory type: VARCHAR - name: runner_s__up type: VARCHAR table: table_name_48
SELECT margin_of_victory FROM table_name_48 WHERE runner_s__up = "justin rose"
What Valley Vista has a Willow Canyon of 2169?
columns: - name: valley_vista type: VARCHAR - name: willow_canyon type: VARCHAR table: table_name_47
SELECT valley_vista FROM table_name_47 WHERE willow_canyon = "2169"
How many metres tall is the building that is larger than 850 feet tall?
columns: - name: metres type: VARCHAR - name: feet type: INTEGER table: table_name_21
SELECT metres FROM table_name_21 WHERE feet > 850
Name the least wins
columns: - name: wins type: INTEGER table: table_2187333_1
SELECT MIN(wins) FROM table_2187333_1
I want to know the average attendance for n venue and f round
columns: - name: attendance type: INTEGER - name: venue type: VARCHAR - name: round type: VARCHAR table: table_name_49
SELECT AVG(attendance) FROM table_name_49 WHERE venue = "n" AND round = "f"
When was the Austrian Grand Prix?
columns: - name: date type: VARCHAR - name: grand_prix type: VARCHAR table: table_name_7
SELECT date FROM table_name_7 WHERE grand_prix = "austrian grand prix"
Who was the loser against the New York Giants in 2001?
columns: - name: loser type: VARCHAR - name: year type: VARCHAR - name: winner type: VARCHAR table: table_name_43
SELECT loser FROM table_name_43 WHERE year = 2001 AND winner = "new york giants"
Who is the Original Australian performer when the Original West End Performer is Linzi Hateley?
columns: - name: original_australian_performer type: VARCHAR - name: original_west_end_performer type: VARCHAR table: table_1901751_1
SELECT original_australian_performer FROM table_1901751_1 WHERE original_west_end_performer = "Linzi Hateley"
How many League Cup Goals have 0 as the total goals, with delroy facey as the name?
columns: - name: league_cup_goals type: VARCHAR - name: total_goals type: VARCHAR - name: name type: VARCHAR table: table_name_90
SELECT COUNT(league_cup_goals) FROM table_name_90 WHERE total_goals = 0 AND name = "delroy facey"
Who won the fastest lap if Anders Krohn won the pole position?
columns: - name: fastest_lap type: VARCHAR - name: pole_position type: VARCHAR table: table_25459168_2
SELECT fastest_lap FROM table_25459168_2 WHERE pole_position = "Anders Krohn"
What is the category when Hy Conrad nominated in 2003?
columns: - name: category type: VARCHAR - name: nominee_s_ type: VARCHAR - name: year type: VARCHAR table: table_name_84
SELECT category FROM table_name_84 WHERE nominee_s_ = "hy conrad" AND year = 2003
What to par has tom kite as the player?
columns: - name: to_par type: VARCHAR - name: player type: VARCHAR table: table_name_92
SELECT to_par FROM table_name_92 WHERE player = "tom kite"
What largest against has the opposing team of fiji?
columns: - name: against type: INTEGER - name: opposing_team type: VARCHAR table: table_name_44
SELECT MAX(against) FROM table_name_44 WHERE opposing_team = "fiji"
What is Proximity, when Honor is P, and when Singular is ẽr (his/her/its)?
columns: - name: proximity type: VARCHAR - name: honor type: VARCHAR - name: singular type: VARCHAR table: table_name_2
SELECT proximity FROM table_name_2 WHERE honor = "p" AND singular = "ẽr (his/her/its)"
What shows for sat 20 aug when fri 26 aug is 19' 30.70 116.023mph?
columns: - name: sat_20_aug type: VARCHAR - name: fri_26_aug type: VARCHAR table: table_30058355_2
SELECT sat_20_aug FROM table_30058355_2 WHERE fri_26_aug = "19' 30.70 116.023mph"
What candidate is in Louisiana 6?
columns: - name: candidates type: VARCHAR - name: district type: VARCHAR table: table_1342331_18
SELECT candidates FROM table_1342331_18 WHERE district = "Louisiana 6"
What was the score in Round 3?
columns: - name: record type: VARCHAR - name: round type: VARCHAR table: table_name_32
SELECT record FROM table_name_32 WHERE round = "3"
Name the winning driver for round 7
columns: - name: winning_driver type: VARCHAR - name: round type: VARCHAR table: table_name_24
SELECT winning_driver FROM table_name_24 WHERE round = 7
Why did Robert L. Bacon (r) vacate?
columns: - name: reason_for_change type: VARCHAR - name: vacator type: VARCHAR table: table_2159547_3
SELECT reason_for_change FROM table_2159547_3 WHERE vacator = "Robert L. Bacon (R)"
What is the sum of the pop density people/km2 with a population % of EU of 0.1%, an area % of EU of 0.1%, and has more than 0.5 population in millions?
columns: - name: pop_density_people_km_2 type: INTEGER - name: population_in_millions type: VARCHAR - name: population__percentage_of_eu type: VARCHAR - name: area__percentage_of_eu type: VARCHAR table: table_name_47
SELECT SUM(pop_density_people_km_2) FROM table_name_47 WHERE population__percentage_of_eu = "0.1%" AND area__percentage_of_eu = "0.1%" AND population_in_millions > 0.5
What Player in Opposition of Kilkenny has a Total of 10?
columns: - name: player type: VARCHAR - name: total type: VARCHAR - name: opposition type: VARCHAR table: table_name_83
SELECT player FROM table_name_83 WHERE total = 10 AND opposition = "kilkenny"
What is the tournament surface at Aptos?
columns: - name: surface type: VARCHAR - name: tournament type: VARCHAR table: table_name_88
SELECT surface FROM table_name_88 WHERE tournament = "aptos"
What is the Score of the Player from South Africa?
columns: - name: score type: VARCHAR - name: country type: VARCHAR table: table_name_64
SELECT score FROM table_name_64 WHERE country = "south africa"
What was the value in 2011 for United States?
columns: - name: country type: VARCHAR table: table_name_95
SELECT 2011 FROM table_name_95 WHERE country = "united states"
What Label was Catalogued tojp 60121-22?
columns: - name: label type: VARCHAR - name: catalogue type: VARCHAR table: table_name_83
SELECT label FROM table_name_83 WHERE catalogue = "tojp 60121-22"
Which weightlifter, who had a bodyweight of less than 136.16 and a clean and jerk larger than 135, had the highest Total?
columns: - name: total__kg_ type: INTEGER - name: bodyweight type: VARCHAR - name: clean_ type: VARCHAR - name: _jerk type: VARCHAR table: table_name_43
SELECT MAX(total__kg_) FROM table_name_43 WHERE bodyweight < 136.16 AND clean_ & _jerk > 135
What is the D 48 √ with a D 46 √ with r 33 o?
columns: - name: "d_48_\u221A" type: VARCHAR - name: "d_46_\u221A" type: VARCHAR table: table_name_87
SELECT d_48_√ FROM table_name_87 WHERE d_46_√ = "r 33 o"
what is the location when the year is less than 1998 and the international captain is david graham?
columns: - name: location type: VARCHAR - name: year type: VARCHAR - name: international_captain type: VARCHAR table: table_name_21
SELECT location FROM table_name_21 WHERE year < 1998 AND international_captain = "david graham"
Name the stadium for nizhny novgorod
columns: - name: stadium type: VARCHAR - name: city type: VARCHAR table: table_28281704_1
SELECT stadium FROM table_28281704_1 WHERE city = "Nizhny Novgorod"
What is the Surface when the score was 4–6, 6–3, 6–7 (5–7)?
columns: - name: surface type: VARCHAR - name: score type: VARCHAR table: table_name_75
SELECT surface FROM table_name_75 WHERE score = "4–6, 6–3, 6–7 (5–7)"
What opposing team has second test as the status?
columns: - name: opposing_team type: VARCHAR - name: status type: VARCHAR table: table_name_12
SELECT opposing_team FROM table_name_12 WHERE status = "second test"
What is Downstream, when Upstream is "384 kbit"?
columns: - name: downstream type: VARCHAR - name: upstream type: VARCHAR table: table_name_88
SELECT downstream FROM table_name_88 WHERE upstream = "384 kbit"
What is the title of the track with lyricist ROZ and arranger Yongmin Lee?
columns: - name: title type: VARCHAR - name: lyricist_s_ type: VARCHAR - name: arranger_s_ type: VARCHAR table: table_name_17
SELECT title FROM table_name_17 WHERE lyricist_s_ = "roz" AND arranger_s_ = "yongmin lee"
Which finish had a win percentage that was more than 0.598 and also had less than 53 wins?
columns: - name: finish type: VARCHAR - name: win_percentage type: VARCHAR - name: wins type: VARCHAR table: table_name_41
SELECT finish FROM table_name_41 WHERE win_percentage > 0.598 AND wins < 53
Name the game site for week 6
columns: - name: game_site type: VARCHAR - name: week type: VARCHAR table: table_14984103_1
SELECT game_site FROM table_14984103_1 WHERE week = 6
What is the highest number of games drawn, where the games played was less than 7?
columns: - name: drawn type: INTEGER - name: games type: INTEGER table: table_name_86
SELECT MAX(drawn) FROM table_name_86 WHERE games < 7
Who is the owner of CKLF-FM?
columns: - name: owner type: VARCHAR - name: call_sign type: VARCHAR table: table_name_78
SELECT owner FROM table_name_78 WHERE call_sign = "cklf-fm"
What RolePlay actor played the same role Alison Pargeter played in the original production?
columns: - name: roleplay type: VARCHAR - name: actor_in_original_production type: VARCHAR table: table_17827271_1
SELECT roleplay FROM table_17827271_1 WHERE actor_in_original_production = "Alison Pargeter"
When michigan technological university (ncaa) is the college, junior, or club team what is the nationality?
columns: - name: nationality type: VARCHAR - name: college_junior_club_team type: VARCHAR table: table_1965650_9
SELECT nationality FROM table_1965650_9 WHERE college_junior_club_team = "Michigan Technological University (NCAA)"
How many Pos have a Driver of todd bodine, and a Car # larger than 30?
columns: - name: pos type: VARCHAR - name: driver type: VARCHAR - name: car__number type: VARCHAR table: table_name_49
SELECT COUNT(pos) FROM table_name_49 WHERE driver = "todd bodine" AND car__number > 30
What was the team performance in 1977?
columns: - name: team_performance type: VARCHAR - name: year type: VARCHAR table: table_name_28
SELECT team_performance FROM table_name_28 WHERE year = 1977
What is the Average of bergen, norway?
columns: - name: average type: INTEGER - name: city type: VARCHAR table: table_name_81
SELECT MIN(average) FROM table_name_81 WHERE city = "bergen, norway"
Which player is from Northern Ireland?
columns: - name: player type: VARCHAR - name: country type: VARCHAR table: table_name_42
SELECT player FROM table_name_42 WHERE country = "northern ireland"
Who were the scorers in the game against neuchâtel xamax played on 10 December 1985?
columns: - name: scorers type: VARCHAR - name: opponent type: VARCHAR - name: date type: VARCHAR table: table_name_64
SELECT scorers FROM table_name_64 WHERE opponent = "neuchâtel xamax" AND date = "10 december 1985"
Which Country that has 600?
columns: - name: country type: VARCHAR - name: money___$__ type: VARCHAR table: table_name_43
SELECT country FROM table_name_43 WHERE money___$__ = 600
What percentage of browsers were using Firefox or other Mozilla browsers during the period in which 1.93% were using Chrome?
columns: - name: firefox_ type: VARCHAR - name: _other_mozilla type: VARCHAR - name: chrome type: VARCHAR table: table_name_12
SELECT firefox_, _other_mozilla FROM table_name_12 WHERE chrome = "1.93%"
Which Stadium has a Visiting team of pittsburgh steelers?
columns: - name: stadium type: VARCHAR - name: visiting_team type: VARCHAR table: table_name_44
SELECT stadium FROM table_name_44 WHERE visiting_team = "pittsburgh steelers"
Who was the Cover model when the Centerfold Model was Marketa Janska?
columns: - name: cover_model type: VARCHAR - name: centerfold_model type: VARCHAR table: table_name_43
SELECT cover_model FROM table_name_43 WHERE centerfold_model = "marketa janska"
What game has jones (10) as the high rebounds?
columns: - name: game type: VARCHAR - name: high_rebounds type: VARCHAR table: table_name_94
SELECT game FROM table_name_94 WHERE high_rebounds = "jones (10)"
What did they do in the game when their record was 3-2-1?
columns: - name: result type: VARCHAR - name: record type: VARCHAR table: table_21058823_1
SELECT result FROM table_21058823_1 WHERE record = "3-2-1"
What is the total number of # Of Prefectural Votes, when # Of Seats Won is greater than 69, and when Leader is Yasuhiro Nakasone?
columns: - name: _number_of_prefectural_votes type: VARCHAR - name: _number_of_seats_won type: VARCHAR - name: leader type: VARCHAR table: table_name_54
SELECT COUNT(_number_of_prefectural_votes) FROM table_name_54 WHERE _number_of_seats_won > 69 AND leader = "yasuhiro nakasone"
What is the exit date of the player transferred to Reggina for free?
columns: - name: exit_date type: VARCHAR - name: transfer_fee type: VARCHAR - name: to_club type: VARCHAR table: table_name_19
SELECT exit_date FROM table_name_19 WHERE transfer_fee = "free" AND to_club = "reggina"
How many points did the Weslake v12 get in 1966?
columns: - name: points type: INTEGER - name: engine type: VARCHAR - name: year type: VARCHAR table: table_name_28
SELECT MAX(points) FROM table_name_28 WHERE engine = "weslake v12" AND year < 1966
What date was the record 38-22?
columns: - name: date type: VARCHAR - name: record type: VARCHAR table: table_name_71
SELECT date FROM table_name_71 WHERE record = "38-22"
What was the attendance when the Braves were the opponent and the record was 56-53?
columns: - name: attendance type: INTEGER - name: opponent type: VARCHAR - name: record type: VARCHAR table: table_name_62
SELECT AVG(attendance) FROM table_name_62 WHERE opponent = "braves" AND record = "56-53"
What 1997, has qf as a 1994, and 1r as a 1999?
columns: - name: Id type: VARCHAR table: table_name_6
SELECT 1997 FROM table_name_6 WHERE 1994 = "qf" AND 1999 = "1r"
How many years was the title drop dead?
columns: - name: year type: VARCHAR - name: title type: VARCHAR table: table_name_94
SELECT COUNT(year) FROM table_name_94 WHERE title = "drop dead"
What was the production code of the episode written by Brendan Cowell?
columns: - name: production_code type: VARCHAR - name: writer type: VARCHAR table: table_25390694_2
SELECT production_code FROM table_25390694_2 WHERE writer = "Brendan Cowell"
What's the total Year with a Length of 4:45 an has an Album of Les Mots?
columns: - name: year type: INTEGER - name: length type: VARCHAR - name: album type: VARCHAR table: table_name_36
SELECT SUM(year) FROM table_name_36 WHERE length = "4:45" AND album = "les mots"
How much money was raised in the 2Q when the total receipts were $63,075,927?
columns: - name: money_raised type: VARCHAR - name: _2q type: VARCHAR - name: total_receipts type: VARCHAR table: table_name_28
SELECT money_raised, _2q FROM table_name_28 WHERE total_receipts = "$63,075,927"
Which city has the cincinnati hockey website?
columns: - name: location type: VARCHAR - name: team_website type: VARCHAR table: table_16384648_2
SELECT location FROM table_16384648_2 WHERE team_website = "Cincinnati Hockey"
What is the name of the venue when the score was 5–0, and a Competition of 2007 caribbean cup qualifier?
columns: - name: venue type: VARCHAR - name: score type: VARCHAR - name: competition type: VARCHAR table: table_name_21
SELECT venue FROM table_name_21 WHERE score = "5–0" AND competition = "2007 caribbean cup qualifier"
what is the name when the nation is France, the pts/game is more than 3 and points is less than 33?
columns: - name: name type: VARCHAR - name: points type: VARCHAR - name: nation type: VARCHAR - name: pts_game type: VARCHAR table: table_name_55
SELECT name FROM table_name_55 WHERE nation = "france" AND pts_game > 3 AND points < 33
What player had 1420 points coming in?
columns: - name: player type: VARCHAR - name: points type: VARCHAR table: table_24431264_16
SELECT player FROM table_24431264_16 WHERE points = 1420
Which circuit did alfa romeo win?
columns: - name: circuit type: VARCHAR - name: winning_constructor type: VARCHAR table: table_name_41
SELECT circuit FROM table_name_41 WHERE winning_constructor = "alfa romeo"
Name the incorporated for principal activites of travel agency
columns: - name: incorporated_in type: VARCHAR - name: principal_activities type: VARCHAR table: table_name_73
SELECT incorporated_in FROM table_name_73 WHERE principal_activities = "travel agency"
Which digital channel is named Storm Tracker?
columns: - name: digital_channel type: VARCHAR - name: name type: VARCHAR table: table_name_65
SELECT digital_channel FROM table_name_65 WHERE name = "storm tracker"
In what industry was the company that had 89.16 billions of dollars in sales?
columns: - name: industry type: VARCHAR - name: sales__billion_$_ type: VARCHAR table: table_1682026_7
SELECT industry FROM table_1682026_7 WHERE sales__billion_$_ = "89.16"
What date did the show with a series larger than 40, production code smaller than 213, and a season number larger than 11 air?
columns: - name: original_air_date type: VARCHAR - name: season_no type: VARCHAR - name: series_no type: VARCHAR - name: production_code type: VARCHAR table: table_name_14
SELECT original_air_date FROM table_name_14 WHERE series_no > 40 AND production_code < 213 AND season_no > 11
What is the English character for Lin Ming Kuan (林明寬)?
columns: - name: english type: VARCHAR - name: character type: VARCHAR table: table_name_88
SELECT english FROM table_name_88 WHERE character = "lin ming kuan (林明寬)"
Name the result for thomas h. hall (dr) 53.0% william clarke (f) 47.0%
columns: - name: result type: VARCHAR - name: candidates type: VARCHAR table: table_2668329_18
SELECT COUNT(result) FROM table_2668329_18 WHERE candidates = "Thomas H. Hall (DR) 53.0% William Clarke (F) 47.0%"
How many times was the motorcycle ducati 916 2nd place when wins is less than 7?
columns: - name: motorcycle type: VARCHAR - name: wins type: VARCHAR table: table_name_14
SELECT SUM(2 AS nd_pl) FROM table_name_14 WHERE motorcycle = "ducati 916" AND wins < 7
What is the name of the player from purcell, ok?
columns: - name: name type: VARCHAR - name: home_town type: VARCHAR table: table_26916717_1
SELECT name FROM table_26916717_1 WHERE home_town = "Purcell, OK"
What was the outcome of the match against Magdalena Maleeva?
columns: - name: outcome type: VARCHAR - name: opponent type: VARCHAR table: table_name_73
SELECT outcome FROM table_name_73 WHERE opponent = "magdalena maleeva"
What was the final score for the game played against @ Milwaukee?
columns: - name: score type: VARCHAR - name: team type: VARCHAR table: table_name_39
SELECT score FROM table_name_39 WHERE team = "@ milwaukee"
What is the frequency of number 161?
columns: - name: frequency type: VARCHAR - name: number type: VARCHAR table: table_name_59
SELECT frequency FROM table_name_59 WHERE number = 161
Name the total number of average for wickets less than 265, runs less than 4564 and matches less than 52
columns: - name: average type: VARCHAR - name: wickets type: VARCHAR - name: matches type: VARCHAR - name: runs type: VARCHAR table: table_name_99
SELECT COUNT(average) FROM table_name_99 WHERE matches < 52 AND runs < 4564 AND wickets < 265
Which co-stars did Kalyanji-anandji direct in 1963?
columns: - name: co_stars type: VARCHAR - name: music_director type: VARCHAR - name: year type: VARCHAR table: table_2528382_2
SELECT co_stars FROM table_2528382_2 WHERE music_director = "Kalyanji-Anandji" AND year = "1963"
Name the number of branding for 31 physical
columns: - name: branding type: VARCHAR - name: physical type: VARCHAR table: table_14623167_1
SELECT COUNT(branding) FROM table_14623167_1 WHERE physical = 31
Who constructed Joe James car when his rank was more than 10?
columns: - name: constructor type: VARCHAR - name: rank type: VARCHAR - name: driver type: VARCHAR table: table_name_12
SELECT constructor FROM table_name_12 WHERE rank > 10 AND driver = "joe james"
Which language has the percentage of 2.54?
columns: - name: language type: VARCHAR - name: percentage___percentage_ type: VARCHAR table: table_name_8
SELECT language FROM table_name_8 WHERE percentage___percentage_ = "2.54"
What driver was the winner when Joakim Bonnier was in the Pole Position?
columns: - name: winning_driver type: VARCHAR - name: pole_position type: VARCHAR table: table_name_78
SELECT winning_driver FROM table_name_78 WHERE pole_position = "joakim bonnier"
What is the largest laps led with the lotus-ford 34/3 chassis?
columns: - name: laps_led type: INTEGER - name: chassis type: VARCHAR table: table_181892_4
SELECT MAX(laps_led) FROM table_181892_4 WHERE chassis = "Lotus-Ford 34/3"
how many video out connections does the sounddock portable have?
columns: - name: video_out type: VARCHAR - name: version type: VARCHAR table: table_24384861_1
SELECT COUNT(video_out) FROM table_24384861_1 WHERE version = "SoundDock Portable"
What opponent has December 6, 1964 as the date?
columns: - name: opponent type: VARCHAR - name: date type: VARCHAR table: table_name_40
SELECT opponent FROM table_name_40 WHERE date = "december 6, 1964"
What is Brian Mateer's Speed?
columns: - name: speed type: VARCHAR - name: rider type: VARCHAR table: table_name_1
SELECT speed FROM table_name_1 WHERE rider = "brian mateer"
What is the lowest gold medals of a rank 12 team?
columns: - name: gold type: INTEGER - name: rank type: VARCHAR table: table_name_81
SELECT MIN(gold) FROM table_name_81 WHERE rank = "12"
Name the location for trenton 300
columns: - name: location type: VARCHAR - name: race_name type: VARCHAR table: table_22669375_1
SELECT location FROM table_22669375_1 WHERE race_name = "Trenton 300"
what is the most free when the total is 81.167 and the rank is higher than 23?
columns: - name: free type: INTEGER - name: total type: VARCHAR - name: rank type: VARCHAR table: table_name_87
SELECT MAX(free) FROM table_name_87 WHERE total = 81.167 AND rank > 23
Which team was the opponent that had a location of Madison Square Garden with a score of 87-83?
columns: - name: team type: VARCHAR - name: location_attendance type: VARCHAR - name: score type: VARCHAR table: table_name_10
SELECT team FROM table_name_10 WHERE location_attendance = "madison square garden" AND score = "87-83"
What feature is at latitude 23.9S?
columns: - name: name type: VARCHAR - name: latitude type: VARCHAR table: table_16799784_13
SELECT name FROM table_16799784_13 WHERE latitude = "23.9S"
Where was the location and what was the attendance in the game that Anthony Parker (7) earned high assists?
columns: - name: location_attendance type: VARCHAR - name: high_assists type: VARCHAR table: table_17323092_8
SELECT location_attendance FROM table_17323092_8 WHERE high_assists = "Anthony Parker (7)"
If the country of origin is switzerland, what is the name/ designation?
columns: - name: name___designation type: VARCHAR - name: country_of_origin type: VARCHAR table: table_26389588_1
SELECT name___designation FROM table_26389588_1 WHERE country_of_origin = "Switzerland"
What is the distance (in meters) when the shuttle time is 6.86 seconds?
columns: - name: distance__m_ type: INTEGER - name: shuttle_time__seconds_ type: VARCHAR table: table_1751142_2
SELECT MIN(distance__m_) FROM table_1751142_2 WHERE shuttle_time__seconds_ = "6.86"
How many states is Grant Wharington from?
columns: - name: state_country type: VARCHAR - name: skipper type: VARCHAR table: table_25595209_1
SELECT COUNT(state_country) FROM table_25595209_1 WHERE skipper = "Grant Wharington"
what is the mascot when the county is 43 kosciusko?
columns: - name: mascot type: VARCHAR - name: county type: VARCHAR table: table_name_82
SELECT mascot FROM table_name_82 WHERE county = "43 kosciusko"
Name the least number for xle02007
columns: - name: 'no' type: INTEGER - name: production_code type: VARCHAR table: table_28348757_3
SELECT MIN(no) FROM table_28348757_3 WHERE production_code = "XLE02007"
Who were semi-finalists in the event with a runner-up of Lisa Raymond?
columns: - name: semi_finalists type: VARCHAR - name: runner_up type: VARCHAR table: table_name_3
SELECT semi_finalists FROM table_name_3 WHERE runner_up = "lisa raymond"
Name the original air date for series number 15
columns: - name: original_air_date type: VARCHAR - name: series__number type: VARCHAR table: table_26261072_1
SELECT original_air_date FROM table_26261072_1 WHERE series__number = 15