Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
10,500
<question>: What GERB has an 11% Attack? <context>: CREATE TABLE table_name_16 (gerb VARCHAR, attack VARCHAR)
SELECT gerb FROM table_name_16 WHERE attack = "11%"
10,501
<question>: Which Tie # has a Score of 3–0, and a Home team of bristol rovers? <context>: CREATE TABLE table_name_39 (tie_no VARCHAR, score VARCHAR, home_team VARCHAR)
SELECT tie_no FROM table_name_39 WHERE score = "3–0" AND home_team = "bristol rovers"
10,502
<question>: Which Score has a Home team of yeovil town won 5–3 on penalties? <context>: CREATE TABLE table_name_82 (score VARCHAR, home_team VARCHAR)
SELECT score FROM table_name_82 WHERE home_team = "yeovil town won 5–3 on penalties"
10,503
<question>: Which Tie # has an Away team of slough town? <context>: CREATE TABLE table_name_66 (tie_no VARCHAR, away_team VARCHAR)
SELECT tie_no FROM table_name_66 WHERE away_team = "slough town"
10,504
<question>: Which Attendance has a Tie # of 32? <context>: CREATE TABLE table_name_13 (attendance VARCHAR, tie_no VARCHAR)
SELECT attendance FROM table_name_13 WHERE tie_no = "32"
10,505
<question>: Which Away team has a Tie # of replay, and an Attendance of 24 november 1998, and a Home team of rotherham united? <context>: CREATE TABLE table_name_51 (away_team VARCHAR, home_team VARCHAR, tie_no VARCHAR, attendance VARCHAR)
SELECT away_team FROM table_name_51 WHERE tie_no = "replay" AND attendance = "24 november 1998" AND home_team = "rotherham united"
10,506
<question>: Which Tie # that has an Attendance of 14 november 1998, and an Away team of hayes? <context>: CREATE TABLE table_name_62 (tie_no VARCHAR, attendance VARCHAR, away_team VARCHAR)
SELECT tie_no FROM table_name_62 WHERE attendance = "14 november 1998" AND away_team = "hayes"
10,507
<question>: Name the date with winner outcome and opponent of noppawan lertcheewakarn jessica moore <context>: CREATE TABLE table_name_82 (date VARCHAR, outcome VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_82 WHERE outcome = "winner" AND opponent = "noppawan lertcheewakarn jessica moore"
10,508
<question>: Name the score for 21 may 2011 <context>: CREATE TABLE table_name_35 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_35 WHERE date = "21 may 2011"
10,509
<question>: Name the partner with opponent of michaëlla krajicek eleni daniilidou <context>: CREATE TABLE table_name_20 (partner VARCHAR, opponent VARCHAR)
SELECT partner FROM table_name_20 WHERE opponent = "michaëlla krajicek eleni daniilidou"
10,510
<question>: Name the outcome for opponent of michaëlla krajicek eleni daniilidou <context>: CREATE TABLE table_name_98 (outcome VARCHAR, opponent VARCHAR)
SELECT outcome FROM table_name_98 WHERE opponent = "michaëlla krajicek eleni daniilidou"
10,511
<question>: How many wins had Matches greater than 5? <context>: CREATE TABLE table_name_82 (wins INTEGER, matches INTEGER)
SELECT SUM(wins) FROM table_name_82 WHERE matches > 5
10,512
<question>: What was the round number when Michael Hjalm played? <context>: CREATE TABLE table_name_27 (round VARCHAR, player VARCHAR)
SELECT round FROM table_name_27 WHERE player = "michael hjalm"
10,513
<question>: What is the position Bill Campbell played before round 6? <context>: CREATE TABLE table_name_22 (position VARCHAR, round VARCHAR, player VARCHAR)
SELECT position FROM table_name_22 WHERE round < 6 AND player = "bill campbell"
10,514
<question>: What is the date for the release with a catalogue number of WARPCDD333? <context>: CREATE TABLE table_name_73 (date VARCHAR, catalogue_number VARCHAR)
SELECT date FROM table_name_73 WHERE catalogue_number = "warpcdd333"
10,515
<question>: What is the country/region for the releases from Beat Records? <context>: CREATE TABLE table_name_9 (country_region VARCHAR, label VARCHAR)
SELECT country_region FROM table_name_9 WHERE label = "beat records"
10,516
<question>: What is the Total with a Player named robbie winters? <context>: CREATE TABLE table_name_95 (total VARCHAR, player VARCHAR)
SELECT total FROM table_name_95 WHERE player = "robbie winters"
10,517
<question>: What Position has a Player named kenneth udjus? <context>: CREATE TABLE table_name_47 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_47 WHERE player = "kenneth udjus"
10,518
<question>: What is the latest day in November of the game with a 15-5-2 record? <context>: CREATE TABLE table_name_60 (november INTEGER, record VARCHAR)
SELECT MAX(november) FROM table_name_60 WHERE record = "15-5-2"
10,519
<question>: What is the latest day in November with a game 15? <context>: CREATE TABLE table_name_31 (november INTEGER, game VARCHAR)
SELECT MAX(november) FROM table_name_31 WHERE game = 15
10,520
<question>: What is the lowest wins with points larger than 46, and a rank of 10th? <context>: CREATE TABLE table_name_55 (wins INTEGER, points VARCHAR, rank VARCHAR)
SELECT MIN(wins) FROM table_name_55 WHERE points > 46 AND rank = "10th"
10,521
<question>: What is the average points with a year higher than 1989, and a rank of 7th? <context>: CREATE TABLE table_name_60 (points INTEGER, year VARCHAR, rank VARCHAR)
SELECT AVG(points) FROM table_name_60 WHERE year > 1989 AND rank = "7th"
10,522
<question>: What is the year that has points larger than 20? <context>: CREATE TABLE table_name_84 (year VARCHAR, points INTEGER)
SELECT COUNT(year) FROM table_name_84 WHERE points > 20
10,523
<question>: What is year that has points larger than 46, and a rank of 6th? <context>: CREATE TABLE table_name_45 (year INTEGER, points VARCHAR, rank VARCHAR)
SELECT SUM(year) FROM table_name_45 WHERE points > 46 AND rank = "6th"
10,524
<question>: What earliest year with points larger than 68 and a rank of 7th? <context>: CREATE TABLE table_name_71 (year INTEGER, points VARCHAR, rank VARCHAR)
SELECT MIN(year) FROM table_name_71 WHERE points > 68 AND rank = "7th"
10,525
<question>: what player went to ul-monroe <context>: CREATE TABLE table_name_7 (player VARCHAR, school VARCHAR)
SELECT player FROM table_name_7 WHERE school = "ul-monroe"
10,526
<question>: How many drawn having more than 9 points? <context>: CREATE TABLE table_name_86 (drawn INTEGER, points INTEGER)
SELECT SUM(drawn) FROM table_name_86 WHERE points > 9
10,527
<question>: Which Number stayed in Southeast has over 4,000 emigrated or forcibly removed? <context>: CREATE TABLE table_name_26 (number_stayed_in_southeast VARCHAR, total_number_emigrated_or_forcibly_removed VARCHAR)
SELECT number_stayed_in_southeast FROM table_name_26 WHERE total_number_emigrated_or_forcibly_removed = "over 4,000"
10,528
<question>: How many warfare deaths befell the choctaw nation? <context>: CREATE TABLE table_name_33 (deaths_from_warfare VARCHAR, nation VARCHAR)
SELECT deaths_from_warfare FROM table_name_33 WHERE nation = "choctaw"
10,529
<question>: How many of those who stayed in the southeast had 19,600 emigrated or forcibly removed? <context>: CREATE TABLE table_name_58 (number_stayed_in_southeast VARCHAR, total_number_emigrated_or_forcibly_removed VARCHAR)
SELECT number_stayed_in_southeast FROM table_name_58 WHERE total_number_emigrated_or_forcibly_removed = "19,600"
10,530
<question>: Which removal treaty covered the chickasaw nation? <context>: CREATE TABLE table_name_32 (removal_treaty__year_signed_ VARCHAR, nation VARCHAR)
SELECT removal_treaty__year_signed_ FROM table_name_32 WHERE nation = "chickasaw"
10,531
<question>: When did stage 5 occur? <context>: CREATE TABLE table_name_53 (date VARCHAR, stage VARCHAR)
SELECT date FROM table_name_53 WHERE stage = 5
10,532
<question>: Who were the opponents during week 14? <context>: CREATE TABLE table_name_53 (opponent VARCHAR, week VARCHAR)
SELECT opponent FROM table_name_53 WHERE week = 14
10,533
<question>: What is the highest attendance for the game before week 13 on December 9, 1973? <context>: CREATE TABLE table_name_45 (attendance INTEGER, date VARCHAR, week VARCHAR)
SELECT MAX(attendance) FROM table_name_45 WHERE date = "december 9, 1973" AND week < 13
10,534
<question>: What is the average attendance for the games after week 2 on September 23, 1973? <context>: CREATE TABLE table_name_31 (attendance INTEGER, date VARCHAR, week VARCHAR)
SELECT AVG(attendance) FROM table_name_31 WHERE date = "september 23, 1973" AND week > 2
10,535
<question>: What is the total number of weeks where games were on November 5, 1973 and the attendance was larger than 49,220? <context>: CREATE TABLE table_name_81 (week VARCHAR, date VARCHAR, attendance VARCHAR)
SELECT COUNT(week) FROM table_name_81 WHERE date = "november 5, 1973" AND attendance > 49 OFFSET 220
10,536
<question>: Record of 9–1 had what game site? <context>: CREATE TABLE table_name_70 (game_site VARCHAR, record VARCHAR)
SELECT game_site FROM table_name_70 WHERE record = "9–1"
10,537
<question>: Record of 8–1, and a Week larger than 9 had what highest attendance? <context>: CREATE TABLE table_name_18 (attendance INTEGER, record VARCHAR, week VARCHAR)
SELECT MAX(attendance) FROM table_name_18 WHERE record = "8–1" AND week > 9
10,538
<question>: Result of w 24–21, and a Week smaller than 6 had what sum of attendance? <context>: CREATE TABLE table_name_9 (attendance INTEGER, result VARCHAR, week VARCHAR)
SELECT SUM(attendance) FROM table_name_9 WHERE result = "w 24–21" AND week < 6
10,539
<question>: Date of October 25, 1964 involves what record? <context>: CREATE TABLE table_name_1 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_1 WHERE date = "october 25, 1964"
10,540
<question>: What is the high total for algeria with over 2 bronzes? <context>: CREATE TABLE table_name_82 (total INTEGER, nation VARCHAR, bronze VARCHAR)
SELECT MAX(total) FROM table_name_82 WHERE nation = "algeria" AND bronze > 2
10,541
<question>: What is the highest number of silvers for qatar with under 8 total, 0 golds, and over 2 bronzes? <context>: CREATE TABLE table_name_9 (silver INTEGER, bronze VARCHAR, nation VARCHAR, total VARCHAR, gold VARCHAR)
SELECT MAX(silver) FROM table_name_9 WHERE total < 8 AND gold = 0 AND nation = "qatar" AND bronze > 2
10,542
<question>: How many bronzes for the nation with over 20 total, under 26 golds, and over 0 silvers? <context>: CREATE TABLE table_name_81 (bronze VARCHAR, gold VARCHAR, silver VARCHAR, total VARCHAR)
SELECT COUNT(bronze) FROM table_name_81 WHERE silver > 0 AND total > 20 AND gold < 26
10,543
<question>: Who one bronze in the event where Choi Jun-Sang won gold, and Suh Jung-Kyun won silver? <context>: CREATE TABLE table_name_27 (bronze VARCHAR, gold VARCHAR, silver VARCHAR)
SELECT bronze FROM table_name_27 WHERE gold = "choi jun-sang" AND silver = "suh jung-kyun"
10,544
<question>: Who won bronze in Seoul? <context>: CREATE TABLE table_name_20 (bronze VARCHAR, location VARCHAR)
SELECT bronze FROM table_name_20 WHERE location = "seoul"
10,545
<question>: Who won bronze is 2006? <context>: CREATE TABLE table_name_7 (bronze VARCHAR, year VARCHAR)
SELECT bronze FROM table_name_7 WHERE year = 2006
10,546
<question>: What year did the event in Hiroshima take place? <context>: CREATE TABLE table_name_70 (year VARCHAR, location VARCHAR)
SELECT COUNT(year) FROM table_name_70 WHERE location = "hiroshima"
10,547
<question>: Who won bronze in 2002? <context>: CREATE TABLE table_name_35 (bronze VARCHAR, year VARCHAR)
SELECT bronze FROM table_name_35 WHERE year = 2002
10,548
<question>: What is the game number of the game with the Edmonton Oilers as the opponent after February 12? <context>: CREATE TABLE table_name_74 (game VARCHAR, opponent VARCHAR, february VARCHAR)
SELECT COUNT(game) FROM table_name_74 WHERE opponent = "edmonton oilers" AND february > 12
10,549
<question>: How many Seasons that has Years of 1976–1977? <context>: CREATE TABLE table_name_1 (seasons VARCHAR, years VARCHAR)
SELECT COUNT(seasons) FROM table_name_1 WHERE years = "1976–1977"
10,550
<question>: What week of the season had a date of october 5, 1975? <context>: CREATE TABLE table_name_24 (week INTEGER, date VARCHAR)
SELECT MIN(week) FROM table_name_24 WHERE date = "october 5, 1975"
10,551
<question>: How many Events have a Top-10 larger than 6, and a Top-5 smaller than 8? <context>: CREATE TABLE table_name_80 (events VARCHAR, top_10 VARCHAR, top_5 VARCHAR)
SELECT COUNT(events) FROM table_name_80 WHERE top_10 > 6 AND top_5 < 8
10,552
<question>: How many Wins have a Top-10 smaller than 6, and Cuts made larger than 7, and a Top-5 of 0? <context>: CREATE TABLE table_name_57 (wins VARCHAR, top_5 VARCHAR, top_10 VARCHAR, cuts_made VARCHAR)
SELECT COUNT(wins) FROM table_name_57 WHERE top_10 < 6 AND cuts_made > 7 AND top_5 = 0
10,553
<question>: What is the result of the game on May 14? <context>: CREATE TABLE table_name_49 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_49 WHERE date = "may 14"
10,554
<question>: What is the result of the game on May 14 with Philadelphia as the road team? <context>: CREATE TABLE table_name_48 (result VARCHAR, road_team VARCHAR, date VARCHAR)
SELECT result FROM table_name_48 WHERE road_team = "philadelphia" AND date = "may 14"
10,555
<question>: What is the result of the game on May 4 with Philadelphia as the road team? <context>: CREATE TABLE table_name_48 (result VARCHAR, road_team VARCHAR, date VARCHAR)
SELECT result FROM table_name_48 WHERE road_team = "philadelphia" AND date = "may 4"
10,556
<question>: What is the road team of game 6 with Philadelphia as the home team? <context>: CREATE TABLE table_name_56 (road_team VARCHAR, home_team VARCHAR, game VARCHAR)
SELECT road_team FROM table_name_56 WHERE home_team = "philadelphia" AND game = "game 6"
10,557
<question>: What is the result of game 5 with Los Angeles as the home team? <context>: CREATE TABLE table_name_26 (result VARCHAR, home_team VARCHAR, game VARCHAR)
SELECT result FROM table_name_26 WHERE home_team = "los angeles" AND game = "game 5"
10,558
<question>: What is the road team of the game with Philadelphia as the home team with a result of 105-102? <context>: CREATE TABLE table_name_53 (road_team VARCHAR, home_team VARCHAR, result VARCHAR)
SELECT road_team FROM table_name_53 WHERE home_team = "philadelphia" AND result = "105-102"
10,559
<question>: Which Result has a Party of republican, and a First elected smaller than 1856? <context>: CREATE TABLE table_name_26 (result VARCHAR, party VARCHAR, first_elected VARCHAR)
SELECT result FROM table_name_26 WHERE party = "republican" AND first_elected < 1856
10,560
<question>: Which District has a First elected of 1856, and an Incumbent of william kellogg? <context>: CREATE TABLE table_name_20 (district VARCHAR, first_elected VARCHAR, incumbent VARCHAR)
SELECT district FROM table_name_20 WHERE first_elected = 1856 AND incumbent = "william kellogg"
10,561
<question>: Which First elected has a District of illinois 3? <context>: CREATE TABLE table_name_52 (first_elected INTEGER, district VARCHAR)
SELECT MAX(first_elected) FROM table_name_52 WHERE district = "illinois 3"
10,562
<question>: How much First elected has a Result of re-elected, and a Party of republican, and a District of illinois 4? <context>: CREATE TABLE table_name_76 (first_elected VARCHAR, district VARCHAR, result VARCHAR, party VARCHAR)
SELECT COUNT(first_elected) FROM table_name_76 WHERE result = "re-elected" AND party = "republican" AND district = "illinois 4"
10,563
<question>: on january 7 what is home? <context>: CREATE TABLE table_name_33 (home VARCHAR, date VARCHAR)
SELECT home FROM table_name_33 WHERE date = "january 7"
10,564
<question>: on january 12 who was the visitor? <context>: CREATE TABLE table_name_16 (visitor VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_16 WHERE date = "january 12"
10,565
<question>: on january 7 what is the record? <context>: CREATE TABLE table_name_63 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_63 WHERE date = "january 7"
10,566
<question>: What is the total number of silver medals of the team with less than 2 gold, 1 bronze, and more than 2 total medals? <context>: CREATE TABLE table_name_13 (silver VARCHAR, total VARCHAR, gold VARCHAR, bronze VARCHAR)
SELECT COUNT(silver) FROM table_name_13 WHERE gold < 2 AND bronze = 1 AND total > 2
10,567
<question>: What is the highest number of silver medals of the team with less than 0 bronzes? <context>: CREATE TABLE table_name_85 (silver INTEGER, bronze INTEGER)
SELECT MAX(silver) FROM table_name_85 WHERE bronze < 0
10,568
<question>: What is the total number of silver medals of the team ranked 7 with more than 1 total medal? <context>: CREATE TABLE table_name_59 (silver VARCHAR, rank VARCHAR, total VARCHAR)
SELECT COUNT(silver) FROM table_name_59 WHERE rank = "7" AND total > 1
10,569
<question>: What is the average number of bronze medals of the team with 0 silvers, ranked 3, and less than 1 total medal? <context>: CREATE TABLE table_name_52 (bronze INTEGER, total VARCHAR, silver VARCHAR, rank VARCHAR)
SELECT AVG(bronze) FROM table_name_52 WHERE silver = 0 AND rank = "3" AND total < 1
10,570
<question>: What is the number of silver medals of the team with 0 gold, ranked 5, and more than 0 bronze medals? <context>: CREATE TABLE table_name_84 (silver INTEGER, bronze VARCHAR, gold VARCHAR, rank VARCHAR)
SELECT SUM(silver) FROM table_name_84 WHERE gold = 0 AND rank = "5" AND bronze > 0
10,571
<question>: What was the sum for a top-10 U.S. open that had a top-25 bigger than 0? <context>: CREATE TABLE table_name_83 (top_10 INTEGER, tournament VARCHAR, top_25 VARCHAR)
SELECT SUM(top_10) FROM table_name_83 WHERE tournament = "u.s. open" AND top_25 > 0
10,572
<question>: What were the total number of cuts made in an event larger than 4 and a top-10 smaller than 4? <context>: CREATE TABLE table_name_17 (cuts_made VARCHAR, events VARCHAR, top_10 VARCHAR)
SELECT COUNT(cuts_made) FROM table_name_17 WHERE events > 4 AND top_10 < 4
10,573
<question>: What is the total number of top-25 that has a top-10 smaller than 4 with 0 cuts? <context>: CREATE TABLE table_name_95 (top_25 VARCHAR, top_10 VARCHAR, cuts_made VARCHAR)
SELECT COUNT(top_25) FROM table_name_95 WHERE top_10 < 4 AND cuts_made > 0
10,574
<question>: What was the cuts average in tournament totals in an event larger than 24? <context>: CREATE TABLE table_name_62 (cuts_made INTEGER, tournament VARCHAR, events VARCHAR)
SELECT AVG(cuts_made) FROM table_name_62 WHERE tournament = "totals" AND events > 24
10,575
<question>: What is the total for a top-10 in a masters tournament in an event smaller than 4? <context>: CREATE TABLE table_name_52 (top_10 VARCHAR, tournament VARCHAR, events VARCHAR)
SELECT COUNT(top_10) FROM table_name_52 WHERE tournament = "masters tournament" AND events < 4
10,576
<question>: Which Against is the highest one that has a Team of flamengo, and a Lost smaller than 1? <context>: CREATE TABLE table_name_95 (against INTEGER, team VARCHAR, lost VARCHAR)
SELECT MAX(against) FROM table_name_95 WHERE team = "flamengo" AND lost < 1
10,577
<question>: How many Lost have a Team of flamengo, and an Against smaller than 5? <context>: CREATE TABLE table_name_92 (lost VARCHAR, team VARCHAR, against VARCHAR)
SELECT COUNT(lost) FROM table_name_92 WHERE team = "flamengo" AND against < 5
10,578
<question>: Which Played is the highest one that has Points of 5, and a Drawn smaller than 1? <context>: CREATE TABLE table_name_94 (played INTEGER, points VARCHAR, drawn VARCHAR)
SELECT MAX(played) FROM table_name_94 WHERE points = 5 AND drawn < 1
10,579
<question>: What was the nationality for the player in Round 1? <context>: CREATE TABLE table_name_11 (nationality VARCHAR, round VARCHAR)
SELECT nationality FROM table_name_11 WHERE round = 1
10,580
<question>: Who plays the right wing position? <context>: CREATE TABLE table_name_66 (player VARCHAR, position VARCHAR)
SELECT player FROM table_name_66 WHERE position = "right wing"
10,581
<question>: What celebrity finished 6th? <context>: CREATE TABLE table_name_79 (celebrity VARCHAR, finished VARCHAR)
SELECT celebrity FROM table_name_79 WHERE finished = "6th"
10,582
<question>: What day did the celebrity who finished 4th enter? <context>: CREATE TABLE table_name_96 (entered VARCHAR, finished VARCHAR)
SELECT entered FROM table_name_96 WHERE finished = "4th"
10,583
<question>: Which celebrity who was famous for being the ex busted member and TV presenter exited on day 19? <context>: CREATE TABLE table_name_53 (celebrity VARCHAR, exited VARCHAR, famous_for VARCHAR)
SELECT celebrity FROM table_name_53 WHERE exited = "day 19" AND famous_for = "ex busted member and tv presenter"
10,584
<question>: Which celebrity was famous for finishing 9th? <context>: CREATE TABLE table_name_52 (famous_for VARCHAR, finished VARCHAR)
SELECT famous_for FROM table_name_52 WHERE finished = "9th"
10,585
<question>: What rank did Myleene Klass finish? <context>: CREATE TABLE table_name_77 (finished VARCHAR, celebrity VARCHAR)
SELECT finished FROM table_name_77 WHERE celebrity = "myleene klass"
10,586
<question>: Opponent of kilmarnock, and a Result of 1–1 happened in what venue? <context>: CREATE TABLE table_name_24 (venue VARCHAR, opponent VARCHAR, result VARCHAR)
SELECT venue FROM table_name_24 WHERE opponent = "kilmarnock" AND result = "1–1"
10,587
<question>: what is the weight of a shot that is xx-inch? <context>: CREATE TABLE table_name_51 (weight_of_shot VARCHAR, designation__bore_ VARCHAR)
SELECT weight_of_shot FROM table_name_51 WHERE designation__bore_ = "xx-inch"
10,588
<question>: What is the length of the film with Burleigh Sullivan as the character? <context>: CREATE TABLE table_name_30 (length VARCHAR, character_name VARCHAR)
SELECT length FROM table_name_30 WHERE character_name = "burleigh sullivan"
10,589
<question>: What is the length of the film with the character type being a milkman turned prizefighter? <context>: CREATE TABLE table_name_31 (length VARCHAR, character_type VARCHAR)
SELECT length FROM table_name_31 WHERE character_type = "milkman turned prizefighter"
10,590
<question>: What is the character name that has phyllis welch as the leading lady? <context>: CREATE TABLE table_name_97 (character_name VARCHAR, leading_lady VARCHAR)
SELECT character_name FROM table_name_97 WHERE leading_lady = "phyllis welch"
10,591
<question>: Who directed the film that had phyllis welch as the leading lady? <context>: CREATE TABLE table_name_74 (director_s_ VARCHAR, leading_lady VARCHAR)
SELECT director_s_ FROM table_name_74 WHERE leading_lady = "phyllis welch"
10,592
<question>: What was the character name for the film with a release date of July 29, 1938? <context>: CREATE TABLE table_name_72 (character_name VARCHAR, release_date VARCHAR)
SELECT character_name FROM table_name_72 WHERE release_date = "july 29, 1938"
10,593
<question>: What Locomotive was Delivered as T414? <context>: CREATE TABLE table_name_2 (locomotive VARCHAR, delivered_as VARCHAR)
SELECT locomotive FROM table_name_2 WHERE delivered_as = "t414"
10,594
<question>: What Owner Delivered the T415? <context>: CREATE TABLE table_name_70 (owner VARCHAR, delivered_as VARCHAR)
SELECT owner FROM table_name_70 WHERE delivered_as = "t415"
10,595
<question>: What is the Entered service date of the T413? <context>: CREATE TABLE table_name_32 (entered_service VARCHAR, delivered_as VARCHAR)
SELECT entered_service FROM table_name_32 WHERE delivered_as = "t413"
10,596
<question>: What is the Delivered as name of the H3 Locomotive? <context>: CREATE TABLE table_name_64 (delivered_as VARCHAR, locomotive VARCHAR)
SELECT delivered_as FROM table_name_64 WHERE locomotive = "h3"
10,597
<question>: What is the Entered service date of the H1 Locomotive? <context>: CREATE TABLE table_name_54 (entered_service VARCHAR, locomotive VARCHAR)
SELECT entered_service FROM table_name_54 WHERE locomotive = "h1"
10,598
<question>: What was the highest week with a result of l 16–12? <context>: CREATE TABLE table_name_53 (week INTEGER, result VARCHAR)
SELECT MAX(week) FROM table_name_53 WHERE result = "l 16–12"
10,599
<question>: Who was the opponent at the game with a result of l 27–3? <context>: CREATE TABLE table_name_52 (opponent VARCHAR, result VARCHAR)
SELECT opponent FROM table_name_52 WHERE result = "l 27–3"