question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
What is the League Cup for 1947–1958? | CREATE TABLE table_name_40 (league_cup VARCHAR, years VARCHAR) | SELECT league_cup FROM table_name_40 WHERE years = "1947–1958" |
What is the Total for 1926–1938? | CREATE TABLE table_name_89 (total VARCHAR, years VARCHAR) | SELECT total FROM table_name_89 WHERE years = "1926–1938" |
What is the Total for 1953–1964? | CREATE TABLE table_name_26 (total VARCHAR, years VARCHAR) | SELECT total FROM table_name_26 WHERE years = "1953–1964" |
Which final score had a surface of hard (i) on October 22, 2000? | CREATE TABLE table_name_47 (score_in_the_final VARCHAR, surface VARCHAR, date VARCHAR) | SELECT score_in_the_final FROM table_name_47 WHERE surface = "hard (i)" AND date = "october 22, 2000" |
Which tournament had an outcome of winner, a hard surface, and happened on August 26, 2006? | CREATE TABLE table_name_76 (tournament VARCHAR, date VARCHAR, outcome VARCHAR, surface VARCHAR) | SELECT tournament FROM table_name_76 WHERE outcome = "winner" AND surface = "hard" AND date = "august 26, 2006" |
Which date had the final opponent of Iva Majoli? | CREATE TABLE table_name_39 (date VARCHAR, opponent_in_the_final VARCHAR) | SELECT date FROM table_name_39 WHERE opponent_in_the_final = "iva majoli" |
On September 30, 1979, in a week before week 8, what was the result? | CREATE TABLE table_name_71 (result VARCHAR, week VARCHAR, date VARCHAR) | SELECT result FROM table_name_71 WHERE week < 8 AND date = "september 30, 1979" |
What was the average attendance in week 2? | CREATE TABLE table_name_61 (attendance INTEGER, week VARCHAR) | SELECT AVG(attendance) FROM table_name_61 WHERE week = 2 |
What is the sum of tonnage with a time at 00:10 and less than 42 casualties? | CREATE TABLE table_name_30 (tonnage__grt_ INTEGER, time VARCHAR, casualties VARCHAR) | SELECT SUM(tonnage__grt_) FROM table_name_30 WHERE time = "00:10" AND casualties < 42 |
Which Opponent had a Win as Res and a Time of 1:10? | CREATE TABLE table_name_44 (opponent VARCHAR, res VARCHAR, time VARCHAR) | SELECT opponent FROM table_name_44 WHERE res = "win" AND time = "1:10" |
How many games that ended in a draw were played by a team with more than 15 total games? | CREATE TABLE table_name_78 (drawn VARCHAR, played INTEGER) | SELECT COUNT(drawn) FROM table_name_78 WHERE played > 15 |
How many pages does the edition with a volume # smaller than 8 and an ISBM of 1-40122-892-5 have? | CREATE TABLE table_name_30 (pages INTEGER, vol__number VARCHAR, isbn VARCHAR) | SELECT SUM(pages) FROM table_name_30 WHERE vol__number < 8 AND isbn = "1-40122-892-5" |
What is the title of the edition with more than 128 pages and a volume # of 5? | CREATE TABLE table_name_5 (title VARCHAR, pages VARCHAR, vol__number VARCHAR) | SELECT title FROM table_name_5 WHERE pages > 128 AND vol__number = 5 |
How many pages does the ISBN 1-40122-328-1 have? | CREATE TABLE table_name_47 (pages INTEGER, isbn VARCHAR) | SELECT SUM(pages) FROM table_name_47 WHERE isbn = "1-40122-328-1" |
What position has a height (cm) greater than 180, and brian lawton as the name? | CREATE TABLE table_name_68 (position VARCHAR, height__cm_ VARCHAR, name VARCHAR) | SELECT position FROM table_name_68 WHERE height__cm_ > 180 AND name = "brian lawton" |
What is the lowest jersey # that has evergreen park, illinois as the birthplace, with a weight (km) greater than 86? | CREATE TABLE table_name_62 (jersey__number INTEGER, birthplace VARCHAR, weight__kg_ VARCHAR) | SELECT MIN(jersey__number) FROM table_name_62 WHERE birthplace = "evergreen park, illinois" AND weight__kg_ > 86 |
How many lost stats have a played number of less than 8? | CREATE TABLE table_name_1 (lost VARCHAR, played INTEGER) | SELECT COUNT(lost) FROM table_name_1 WHERE played < 8 |
What is the largest lost stat when the difference is - 19? | CREATE TABLE table_name_36 (lost INTEGER, difference VARCHAR) | SELECT MAX(lost) FROM table_name_36 WHERE difference = "- 19" |
How many positions have an against of less than 27, and a played number of less than 8? | CREATE TABLE table_name_59 (position VARCHAR, against VARCHAR, played VARCHAR) | SELECT COUNT(position) FROM table_name_59 WHERE against < 27 AND played < 8 |
What is Muzzle energy, when Cartridge is .375 remington ultra magnum? | CREATE TABLE table_name_24 (muzzle_energy VARCHAR, cartridge VARCHAR) | SELECT muzzle_energy FROM table_name_24 WHERE cartridge = ".375 remington ultra magnum" |
What is Source, when Cartridge is .375 remington ultra magnum? | CREATE TABLE table_name_62 (source VARCHAR, cartridge VARCHAR) | SELECT source FROM table_name_62 WHERE cartridge = ".375 remington ultra magnum" |
What is Source, when Cartridge is .375 remington ultra magnum? | CREATE TABLE table_name_67 (source VARCHAR, cartridge VARCHAR) | SELECT source FROM table_name_67 WHERE cartridge = ".375 remington ultra magnum" |
What is Muzzle energy, when Source is hornady? | CREATE TABLE table_name_16 (muzzle_energy VARCHAR, source VARCHAR) | SELECT muzzle_energy FROM table_name_16 WHERE source = "hornady" |
What is Bullet weight, when Source is hornady? | CREATE TABLE table_name_99 (bullet_weight VARCHAR, source VARCHAR) | SELECT bullet_weight FROM table_name_99 WHERE source = "hornady" |
Which Format has a Catalog of vcrdx 106? | CREATE TABLE table_name_72 (format VARCHAR, catalog VARCHAR) | SELECT format FROM table_name_72 WHERE catalog = "vcrdx 106" |
Which Region has a Catalog of magik muzik 806-5? | CREATE TABLE table_name_19 (region VARCHAR, catalog VARCHAR) | SELECT region FROM table_name_19 WHERE catalog = "magik muzik 806-5" |
Which Date has a Catalog of vcrt 106? | CREATE TABLE table_name_6 (date VARCHAR, catalog VARCHAR) | SELECT date FROM table_name_6 WHERE catalog = "vcrt 106" |
What pick was play Jason Webb? | CREATE TABLE table_name_31 (pick INTEGER, player VARCHAR) | SELECT MAX(pick) FROM table_name_31 WHERE player = "jason webb" |
Which colleges have a pick above 7? | CREATE TABLE table_name_27 (college VARCHAR, pick INTEGER) | SELECT college FROM table_name_27 WHERE pick > 7 |
How many teams picked Jason Webb? | CREATE TABLE table_name_62 (pick VARCHAR, player VARCHAR) | SELECT COUNT(pick) FROM table_name_62 WHERE player = "jason webb" |
What is the Total Tax Revenue that has an n.a. Stamp Duty Reserve Tax in the years 1995-96? | CREATE TABLE table_name_75 (over_total_tax_revenue__in__percentage_ VARCHAR, stamp_duty_reserve_tax VARCHAR, year VARCHAR) | SELECT over_total_tax_revenue__in__percentage_ FROM table_name_75 WHERE stamp_duty_reserve_tax = "n.a." AND year = "1995-96" |
What was the lowest Attendance on 8 October 1986? | CREATE TABLE table_name_1 (attendance INTEGER, date VARCHAR) | SELECT MIN(attendance) FROM table_name_1 WHERE date = "8 october 1986" |
What was the result when Dundee were the Opponent at Venue A on 6 September 1986? | CREATE TABLE table_name_9 (result VARCHAR, date VARCHAR, opponent VARCHAR, venue VARCHAR) | SELECT result FROM table_name_9 WHERE opponent = "dundee" AND venue = "a" AND date = "6 september 1986" |
What position did the player play who weighed less thna 91 kg and was born on March 5, 1977? | CREATE TABLE table_name_6 (position VARCHAR, weight__kg_ VARCHAR, birthdate VARCHAR) | SELECT position FROM table_name_6 WHERE weight__kg_ < 91 AND birthdate = "march 5, 1977" |
What is the total number of FA trophies of player Neil Grayson, who has more than 2 FA cups and a league greater than 17? | CREATE TABLE table_name_17 (fa_trophy VARCHAR, league VARCHAR, fa_cup VARCHAR, player VARCHAR) | SELECT COUNT(fa_trophy) FROM table_name_17 WHERE fa_cup > 2 AND player = "neil grayson" AND league > 17 |
What is the sum of FA cups of club Stalybridge Celtic, which has more than 0 FA trophies and a total less than 20? | CREATE TABLE table_name_50 (fa_cup INTEGER, total VARCHAR, fa_trophy VARCHAR, club VARCHAR) | SELECT SUM(fa_cup) FROM table_name_50 WHERE fa_trophy > 0 AND club = "stalybridge celtic" AND total < 20 |
What is the average total of halifax town club, which has a league less than 30 and more than 3 FA cups? | CREATE TABLE table_name_18 (total INTEGER, fa_cup VARCHAR, club VARCHAR, league VARCHAR) | SELECT AVG(total) FROM table_name_18 WHERE club = "halifax town" AND league < 30 AND fa_cup > 3 |
What was the score of the match against roger federer on April 3, 2006? | CREATE TABLE table_name_44 (score VARCHAR, opponent VARCHAR, date VARCHAR) | SELECT score FROM table_name_44 WHERE opponent = "roger federer" AND date = "april 3, 2006" |
What was the outcome of the match against andy roddick? | CREATE TABLE table_name_78 (outcome VARCHAR, opponent VARCHAR) | SELECT outcome FROM table_name_78 WHERE opponent = "andy roddick" |
What average week has october 8, 1950 as the date? | CREATE TABLE table_name_8 (week INTEGER, date VARCHAR) | SELECT AVG(week) FROM table_name_8 WHERE date = "october 8, 1950" |
How many weeks have pittsburgh steelers as the opponent? | CREATE TABLE table_name_89 (week VARCHAR, opponent VARCHAR) | SELECT COUNT(week) FROM table_name_89 WHERE opponent = "pittsburgh steelers" |
How many weeks have l 3-17 as the result? | CREATE TABLE table_name_9 (week INTEGER, result VARCHAR) | SELECT SUM(week) FROM table_name_9 WHERE result = "l 3-17" |
What attendance has Washington redskins as the opponent? | CREATE TABLE table_name_89 (attendance VARCHAR, opponent VARCHAR) | SELECT attendance FROM table_name_89 WHERE opponent = "washington redskins" |
Which Model number has a Frequency of 2000mhz and a Voltage of 0.75-1.2? | CREATE TABLE table_name_57 (model_number VARCHAR, frequency VARCHAR, voltage VARCHAR) | SELECT model_number FROM table_name_57 WHERE frequency = "2000mhz" AND voltage = "0.75-1.2" |
Which Multi 1 has a Frequency of 2300mhz, and a Release date of q3 2008 and a Model number of turion x2 ultra zm-84? | CREATE TABLE table_name_7 (multi_1 VARCHAR, model_number VARCHAR, frequency VARCHAR, release_date VARCHAR) | SELECT multi_1 FROM table_name_7 WHERE frequency = "2300mhz" AND release_date = "q3 2008" AND model_number = "turion x2 ultra zm-84" |
What kind of Voltage has a Frequency of 2000mhz, and a Release date in q3 2008? | CREATE TABLE table_name_64 (voltage VARCHAR, frequency VARCHAR, release_date VARCHAR) | SELECT voltage FROM table_name_64 WHERE frequency = "2000mhz" AND release_date = "q3 2008" |
WHat kind of L2 cache has a Model number of turion x2 ultra zm-85? | CREATE TABLE table_name_31 (l2_cache VARCHAR, model_number VARCHAR) | SELECT l2_cache FROM table_name_31 WHERE model_number = "turion x2 ultra zm-85" |
Which Socket has a Frequency of 2200mhz, and a Release date on june 4, 2008? | CREATE TABLE table_name_30 (socket VARCHAR, frequency VARCHAR, release_date VARCHAR) | SELECT socket FROM table_name_30 WHERE frequency = "2200mhz" AND release_date = "june 4, 2008" |
What kind of Socket has a Order part number of tmrm72dam22gg? | CREATE TABLE table_name_44 (socket VARCHAR, order_part_number VARCHAR) | SELECT socket FROM table_name_44 WHERE order_part_number = "tmrm72dam22gg" |
What is the Birthdate of raymond bonney? | CREATE TABLE table_name_20 (birthdate VARCHAR, name VARCHAR) | SELECT birthdate FROM table_name_20 WHERE name = "raymond bonney" |
What is the Team for the player born in northfield, minnesota? | CREATE TABLE table_name_30 (team VARCHAR, birthplace VARCHAR) | SELECT team FROM table_name_30 WHERE birthplace = "northfield, minnesota" |
What is the Position of the person with a birthplace of phoenix, new york? | CREATE TABLE table_name_81 (position VARCHAR, birthplace VARCHAR) | SELECT position FROM table_name_81 WHERE birthplace = "phoenix, new york" |
What is the Name when the team is the st. paul a.c., with a Birthdate of 3 august 1890? | CREATE TABLE table_name_45 (name VARCHAR, team VARCHAR, birthdate VARCHAR) | SELECT name FROM table_name_45 WHERE team = "st. paul a.c." AND birthdate = "3 august 1890" |
What is the Position of moose goheen? | CREATE TABLE table_name_61 (position VARCHAR, name VARCHAR) | SELECT position FROM table_name_61 WHERE name = "moose goheen" |
What is the Birthdate of leon tuck? | CREATE TABLE table_name_29 (birthdate VARCHAR, name VARCHAR) | SELECT birthdate FROM table_name_29 WHERE name = "leon tuck" |
During the Tournament in which Jiří Novák was absent(A) in 1995, absent(A) in 1997, and made it to the 3rd round (3R) in 2003, how did he do in 2006? | CREATE TABLE table_name_31 (Id VARCHAR) | SELECT 2006 FROM table_name_31 WHERE 1995 = "a" AND 1997 = "a" AND 2003 = "3r" |
In the Tennis Masters Cup, how did Jiří Novák do in 1997? | CREATE TABLE table_name_75 (tournament VARCHAR) | SELECT 1997 FROM table_name_75 WHERE tournament = "tennis masters cup" |
In the Hamburg Masters Tournament, during which Jiří Novák was absent(A) in 1996, how did he do in 2003? | CREATE TABLE table_name_71 (tournament VARCHAR) | SELECT 2003 FROM table_name_71 WHERE 1996 = "a" AND tournament = "hamburg masters" |
In the Tournament during which Jiří Novák was absent(A) in 2004, how did he do in 2003? | CREATE TABLE table_name_49 (Id VARCHAR) | SELECT 2003 FROM table_name_49 WHERE 2004 = "a" |
In the Tournament during which Jiří Novák made it to the 1st round(1R) in 1995, how did he do in 2001? | CREATE TABLE table_name_32 (Id VARCHAR) | SELECT 2001 FROM table_name_32 WHERE 1995 = "1r" |
During the Hamburg Masters Tournament, during which Jiří Novák was absent(A) in 1998, how did he do in 1997? | CREATE TABLE table_name_93 (tournament VARCHAR) | SELECT 1997 FROM table_name_93 WHERE 1998 = "a" AND tournament = "hamburg masters" |
What is the sum of all from the Cultural and Educational Panel with less than 7 from the Labour Panel and less than 1 from the Agricultural Panel? | CREATE TABLE table_name_23 (cultural_and_educational_panel INTEGER, labour_panel VARCHAR, agricultural_panel VARCHAR) | SELECT SUM(cultural_and_educational_panel) FROM table_name_23 WHERE labour_panel < 7 AND agricultural_panel < 1 |
What is the Away team when the FootyTAB winner was st. george? | CREATE TABLE table_name_13 (away_team VARCHAR, footytab_winner VARCHAR) | SELECT away_team FROM table_name_13 WHERE footytab_winner = "st. george" |
What is the Home team when the away team was Manly? | CREATE TABLE table_name_71 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_71 WHERE away_team = "manly" |
What is the Match score when the FootyTAB winner was norths? | CREATE TABLE table_name_81 (match_score VARCHAR, footytab_winner VARCHAR) | SELECT match_score FROM table_name_81 WHERE footytab_winner = "norths" |
What is the Away team when the match score was norths 19 manly 4? | CREATE TABLE table_name_54 (away_team VARCHAR, match_score VARCHAR) | SELECT away_team FROM table_name_54 WHERE match_score = "norths 19 manly 4" |
What is the "Pick The Winners" score when the Match score was illawarra 19 souths 0? | CREATE TABLE table_name_70 (match_score VARCHAR) | SELECT "pick_the_winners" AS _score FROM table_name_70 WHERE match_score = "illawarra 19 souths 0" |
Which player has a FG Pct less than 45.9, a def reb less than 43, and a total reb of 9? | CREATE TABLE table_name_21 (player VARCHAR, total_reb VARCHAR, fg_pct VARCHAR, def_reb VARCHAR) | SELECT player FROM table_name_21 WHERE fg_pct < 45.9 AND def_reb < 43 AND total_reb = 9 |
How many Games has a Name of stéphane dumas and a Rank larger than 5? | CREATE TABLE table_name_3 (games INTEGER, name VARCHAR, rank VARCHAR) | SELECT AVG(games) FROM table_name_3 WHERE name = "stéphane dumas" AND rank > 5 |
How many Games has a Team of cai zaragoza and a Rank smaller than 1? | CREATE TABLE table_name_24 (games INTEGER, team VARCHAR, rank VARCHAR) | SELECT SUM(games) FROM table_name_24 WHERE team = "cai zaragoza" AND rank < 1 |
What was the most total medals awarded to Poland? | CREATE TABLE table_name_37 (total INTEGER, nation VARCHAR) | SELECT MAX(total) FROM table_name_37 WHERE nation = "poland" |
How many people attended the game on December 20, 1964? | CREATE TABLE table_name_64 (attendance VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_64 WHERE date = "december 20, 1964" |
On what date did the Lions play against the Tampa Bay Buccaneers? | CREATE TABLE table_name_66 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_66 WHERE opponent = "tampa bay buccaneers" |
What was the date of the game against the New York Jets? | CREATE TABLE table_name_7 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_7 WHERE opponent = "new york jets" |
What is the Attendance with a Date that is october 31, 1965? | CREATE TABLE table_name_15 (attendance VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_15 WHERE date = "october 31, 1965" |
What is the Attendance with a Date that is november 25, 1965? | CREATE TABLE table_name_96 (attendance VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_96 WHERE date = "november 25, 1965" |
What is the lowest geohash length when the lat bits are less than 7, and the km error of ±2500? | CREATE TABLE table_name_94 (geohash_length INTEGER, lat_bits VARCHAR, km_error VARCHAR) | SELECT MIN(geohash_length) FROM table_name_94 WHERE lat_bits < 7 AND km_error = "±2500" |
What is the highest geohash length when the lat error is ±0.00068, and the lat bits larger than 17? | CREATE TABLE table_name_99 (geohash_length INTEGER, lat_error VARCHAR, lat_bits VARCHAR) | SELECT MAX(geohash_length) FROM table_name_99 WHERE lat_error = "±0.00068" AND lat_bits > 17 |
What is the highest geohash length when there is a ng error of ±0.00017, and a lng bits smaller than 20? | CREATE TABLE table_name_31 (geohash_length INTEGER, lng_error VARCHAR, lng_bits VARCHAR) | SELECT MAX(geohash_length) FROM table_name_31 WHERE lng_error = "±0.00017" AND lng_bits < 20 |
Which Against has a Drawn smaller than 5, a Lost of 3, and a Position of 3? | CREATE TABLE table_name_93 (against INTEGER, position VARCHAR, drawn VARCHAR, lost VARCHAR) | SELECT MIN(against) FROM table_name_93 WHERE drawn < 5 AND lost = 3 AND position = 3 |
Which Against has a Position larger than 8, and Points larger than 9? | CREATE TABLE table_name_67 (against VARCHAR, position VARCHAR, points VARCHAR) | SELECT against FROM table_name_67 WHERE position > 8 AND points > 9 |
Which Lost has Points smaller than 12, and a Drawn larger than 1? | CREATE TABLE table_name_39 (lost VARCHAR, points VARCHAR, drawn VARCHAR) | SELECT COUNT(lost) FROM table_name_39 WHERE points < 12 AND drawn > 1 |
Which Position has a Difference of 5, and a Drawn smaller than 3? | CREATE TABLE table_name_84 (position INTEGER, difference VARCHAR, drawn VARCHAR) | SELECT MIN(position) FROM table_name_84 WHERE difference = "5" AND drawn < 3 |
Which Against has a Position larger than 11? | CREATE TABLE table_name_32 (against VARCHAR, position INTEGER) | SELECT COUNT(against) FROM table_name_32 WHERE position > 11 |
Which Player has a Nationality of united states, a Position of forward, and a School/Club Team of notre dame? | CREATE TABLE table_name_1 (player VARCHAR, school_club_team VARCHAR, nationality VARCHAR, position VARCHAR) | SELECT player FROM table_name_1 WHERE nationality = "united states" AND position = "forward" AND school_club_team = "notre dame" |
Which Nationality has a School/Club Team of louisiana state? | CREATE TABLE table_name_63 (nationality VARCHAR, school_club_team VARCHAR) | SELECT nationality FROM table_name_63 WHERE school_club_team = "louisiana state" |
Which Years in Orlando has a Position of center, and a School/Club Team of louisiana state? | CREATE TABLE table_name_41 (years_in_orlando VARCHAR, position VARCHAR, school_club_team VARCHAR) | SELECT years_in_orlando FROM table_name_41 WHERE position = "center" AND school_club_team = "louisiana state" |
Which Position has a School/Club Team of illinois? | CREATE TABLE table_name_89 (position VARCHAR, school_club_team VARCHAR) | SELECT position FROM table_name_89 WHERE school_club_team = "illinois" |
Which Years in Orlando has a Nationality of united states, and a School/Club Team of illinois? | CREATE TABLE table_name_23 (years_in_orlando VARCHAR, nationality VARCHAR, school_club_team VARCHAR) | SELECT years_in_orlando FROM table_name_23 WHERE nationality = "united states" AND school_club_team = "illinois" |
Which Player has a Position of forward, and a School/Club Team of georgia tech? | CREATE TABLE table_name_22 (player VARCHAR, position VARCHAR, school_club_team VARCHAR) | SELECT player FROM table_name_22 WHERE position = "forward" AND school_club_team = "georgia tech" |
What is the total number of silver with rank number 6? | CREATE TABLE table_name_6 (silver VARCHAR, rank VARCHAR) | SELECT COUNT(silver) FROM table_name_6 WHERE rank = 6 |
What is the smallest total from Japan with a rank larger than 3? | CREATE TABLE table_name_95 (total INTEGER, nation VARCHAR, rank VARCHAR) | SELECT MIN(total) FROM table_name_95 WHERE nation = "japan" AND rank > 3 |
What is the largest number of silver that had 0 bronzes and total less than 1? | CREATE TABLE table_name_67 (silver INTEGER, bronze VARCHAR, total VARCHAR) | SELECT MAX(silver) FROM table_name_67 WHERE bronze = 0 AND total < 1 |
What is the smallest number of points for a match less than 12? | CREATE TABLE table_name_6 (points INTEGER, match INTEGER) | SELECT MIN(points) FROM table_name_6 WHERE match < 12 |
What is the mean number of languages for the monthly frequency when the publisher is the hearst corporation? | CREATE TABLE table_name_23 (number_of_languages INTEGER, frequency VARCHAR, publisher VARCHAR) | SELECT AVG(number_of_languages) FROM table_name_23 WHERE frequency = "monthly" AND publisher = "hearst corporation" |
What is the Political group for p. maelius capitolinus? | CREATE TABLE table_name_58 (political_group VARCHAR, name VARCHAR) | SELECT political_group FROM table_name_58 WHERE name = "p. maelius capitolinus" |
What is the Type for l. publilius philo vulscus? | CREATE TABLE table_name_46 (type VARCHAR, name VARCHAR) | SELECT type FROM table_name_46 WHERE name = "l. publilius philo vulscus" |
What is the Type for l. publilius philo vulscus? | CREATE TABLE table_name_31 (type VARCHAR, name VARCHAR) | SELECT type FROM table_name_31 WHERE name = "l. publilius philo vulscus" |
What was the title of the episode with a production code of 1gowo04? | CREATE TABLE table_name_3 (episode_title VARCHAR, prod_code VARCHAR) | SELECT episode_title FROM table_name_3 WHERE prod_code = "1gowo04" |
What is the production code fore the episode titled, life's no fun anymore? | CREATE TABLE table_name_16 (prod_code VARCHAR, episode_title VARCHAR) | SELECT prod_code FROM table_name_16 WHERE episode_title = "life's no fun anymore" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.