question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
What is the record when the game was at the San Diego Stadium? | CREATE TABLE table_17848578_1 (record VARCHAR, game_site VARCHAR) | SELECT record FROM table_17848578_1 WHERE game_site = "San Diego Stadium" |
How many results are there when the game was at the Atlanta-Fulton county stadium? | CREATE TABLE table_17848578_1 (result VARCHAR, game_site VARCHAR) | SELECT COUNT(result) FROM table_17848578_1 WHERE game_site = "Atlanta-Fulton County Stadium" |
What is the date of the game at Arrowhead Stadium? | CREATE TABLE table_17848578_1 (date VARCHAR, game_site VARCHAR) | SELECT date FROM table_17848578_1 WHERE game_site = "Arrowhead Stadium" |
Where was the game where attendance was 51478? | CREATE TABLE table_17848578_1 (game_site VARCHAR, attendance VARCHAR) | SELECT game_site FROM table_17848578_1 WHERE attendance = 51478 |
Name the military expenditures for 2011 for romania | CREATE TABLE table_17971449_2 (military_expenditures__2011 VARCHAR, _us$_millions_ VARCHAR, country VARCHAR) | SELECT military_expenditures__2011, _us$_millions_ FROM table_17971449_2 WHERE country = "Romania" |
Name the population 2011 for luxembourg | CREATE TABLE table_17971449_2 (population__2011_ VARCHAR, country VARCHAR) | SELECT population__2011_ FROM table_17971449_2 WHERE country = "Luxembourg" |
Name the deployable military 2011 for denmark | CREATE TABLE table_17971449_2 (deployable_military__2011 VARCHAR, _thousands_ VARCHAR, country VARCHAR) | SELECT deployable_military__2011, _thousands_ FROM table_17971449_2 WHERE country = "Denmark" |
List total loses forh the tauras tauragė team. | CREATE TABLE table_18018214_2 (loses VARCHAR, club VARCHAR) | SELECT COUNT(loses) FROM table_18018214_2 WHERE club = "Tauras Tauragė" |
List the number of goals scored to equal 58. | CREATE TABLE table_18018214_2 (goals_conceded INTEGER, points VARCHAR) | SELECT MIN(goals_conceded) FROM table_18018214_2 WHERE points = 58 |
How many total reason for change are listed corresponding to the successor Leonard B. Jordan (r)? | CREATE TABLE table_1802522_3 (reason_for_change VARCHAR, successor VARCHAR) | SELECT COUNT(reason_for_change) FROM table_1802522_3 WHERE successor = "Leonard B. Jordan (R)" |
What state had November 30, 1962 as the date of the successors formal installation? | CREATE TABLE table_1802522_3 (state__class_ VARCHAR, date_of_successors_formal_installation VARCHAR) | SELECT state__class_ FROM table_1802522_3 WHERE date_of_successors_formal_installation = "November 30, 1962" |
How many vacant seats were filled by newcomer Joseph H. Bottum (r)? | CREATE TABLE table_1802522_3 (vacator VARCHAR, successor VARCHAR) | SELECT COUNT(vacator) FROM table_1802522_3 WHERE successor = "Joseph H. Bottum (R)" |
What are the results of those elections for which Marcy Kaptur is the incumbent? | CREATE TABLE table_1805191_36 (results VARCHAR, incumbent VARCHAR) | SELECT results FROM table_1805191_36 WHERE incumbent = "Marcy Kaptur" |
What are the results of the elections in which Ted Strickland is seeking re-election? | CREATE TABLE table_1805191_36 (results VARCHAR, incumbent VARCHAR) | SELECT results FROM table_1805191_36 WHERE incumbent = "Ted Strickland" |
Who are all of the candidates in elections where Dennis Kucinich was a candidate? | CREATE TABLE table_1805191_36 (candidates VARCHAR, incumbent VARCHAR) | SELECT candidates FROM table_1805191_36 WHERE incumbent = "Dennis Kucinich" |
Who were all the candidates in elections in which Steve Chabot was a candidate? | CREATE TABLE table_1805191_36 (candidates VARCHAR, incumbent VARCHAR) | SELECT candidates FROM table_1805191_36 WHERE incumbent = "Steve Chabot" |
Who was treasurer in 2008? | CREATE TABLE table_18052353_4 (treasurer VARCHAR, year VARCHAR) | SELECT treasurer FROM table_18052353_4 WHERE year = "2008" |
What was the composition of the state assembly in 2008? | CREATE TABLE table_18052353_4 (state_assembly VARCHAR, year VARCHAR) | SELECT state_assembly FROM table_18052353_4 WHERE year = "2008" |
What's the series number of the episode with production code 329? | CREATE TABLE table_18055005_1 (no_in_series VARCHAR, prod_code VARCHAR) | SELECT no_in_series FROM table_18055005_1 WHERE prod_code = "329" |
What's the series number of the episode originally viewed by 4.1 million people and written by Douglas Lieblein? | CREATE TABLE table_18055005_1 (no_in_series VARCHAR, viewers__millions_ VARCHAR, written_by VARCHAR) | SELECT no_in_series FROM table_18055005_1 WHERE viewers__millions_ = "4.1" AND written_by = "Douglas Lieblein" |
What year was the winners vote 55.99%? | CREATE TABLE table_18106841_1 (year INTEGER, winners__percentage_votes VARCHAR) | SELECT MIN(year) FROM table_18106841_1 WHERE winners__percentage_votes = "55.99%" |
When the winners votes were 50.54% who were the members of parliment? | CREATE TABLE table_18106841_1 (members_of_parliament VARCHAR, winners__percentage_votes VARCHAR) | SELECT members_of_parliament FROM table_18106841_1 WHERE winners__percentage_votes = "50.54%" |
How many millions of U.S. viewers watched the episode directed by Allison Liddi-Brown? | CREATE TABLE table_18102421_2 (us_viewers__millions_ VARCHAR, directed_by VARCHAR) | SELECT us_viewers__millions_ FROM table_18102421_2 WHERE directed_by = "Allison Liddi-Brown" |
What was the title of the episode that had 13.82 million U.S. viewers? | CREATE TABLE table_18102421_2 (title VARCHAR, us_viewers__millions_ VARCHAR) | SELECT title FROM table_18102421_2 WHERE us_viewers__millions_ = "13.82" |
What was the club that won 10 top division titles? | CREATE TABLE table_18143210_2 (club VARCHAR, top_division_titles VARCHAR) | SELECT club FROM table_18143210_2 WHERE top_division_titles = 10 |
When did the club UNAM played the first season in top division? | CREATE TABLE table_18143210_2 (first_season_in_top_division VARCHAR, club VARCHAR) | SELECT first_season_in_top_division FROM table_18143210_2 WHERE club = "UNAM" |
When was the 'first season of current spell in top division' if the first season in top division is in 1964-65? | CREATE TABLE table_18143210_2 (first_season_of_current_spell_in_top_division VARCHAR, first_season_in_top_division VARCHAR) | SELECT first_season_of_current_spell_in_top_division FROM table_18143210_2 WHERE first_season_in_top_division = "1964-65" |
How many top division titles were won during the 'first season of current spell in top division' in 1979-80? | CREATE TABLE table_18143210_2 (top_division_titles VARCHAR, first_season_of_current_spell_in_top_division VARCHAR) | SELECT top_division_titles FROM table_18143210_2 WHERE first_season_of_current_spell_in_top_division = "1979-80" |
How many 'number of seasons in top division' were played if the 'first season in top division' games is in 1990-91? | CREATE TABLE table_18143210_2 (number_of_seasons_in_top_division INTEGER, first_season_in_top_division VARCHAR) | SELECT MAX(number_of_seasons_in_top_division) FROM table_18143210_2 WHERE first_season_in_top_division = "1990-91" |
How many 'number of season in Liga MX' were played if the 'first season of current spell in top division' is in 1962-63? | CREATE TABLE table_18143210_2 (number_of_seasons_in_liga_mx VARCHAR, first_season_of_current_spell_in_top_division VARCHAR) | SELECT number_of_seasons_in_liga_mx FROM table_18143210_2 WHERE first_season_of_current_spell_in_top_division = "1962-63" |
which chapter was Transmitted on wednesday if the episode of "363 the hangover part ii" was transmitted on monday? | CREATE TABLE table_18173916_8 (wednesday VARCHAR, monday VARCHAR) | SELECT wednesday FROM table_18173916_8 WHERE monday = "363 The Hangover Part II" |
which episode was Transmitted on wednesday if the episode of "438 magic: the gathering mini masters tournament" was transmitted on thursday? | CREATE TABLE table_18173916_8 (wednesday VARCHAR, thursday VARCHAR) | SELECT wednesday FROM table_18173916_8 WHERE thursday = "438 Magic: The Gathering Mini Masters Tournament" |
which episode was Transmitted on friday if the episode of "414 insanely twisted shadow planet" was transmitted on tuesday? | CREATE TABLE table_18173916_8 (friday VARCHAR, tuesday VARCHAR) | SELECT friday FROM table_18173916_8 WHERE tuesday = "414 Insanely Twisted Shadow Planet" |
which episode was Transmitted on friday if the episode of "515 the adventures of tintin" was transmitted on monday? | CREATE TABLE table_18173916_8 (friday VARCHAR, monday VARCHAR) | SELECT friday FROM table_18173916_8 WHERE monday = "515 The Adventures of Tintin" |
which episode was Transmitted on wednesday if the episode of "319 sucker punch" was transmitted on tuesday? | CREATE TABLE table_18173916_8 (wednesday VARCHAR, tuesday VARCHAR) | SELECT COUNT(wednesday) FROM table_18173916_8 WHERE tuesday = "319 Sucker Punch" |
which episode was Transmitted on wednesday if the episode of "307 vs." was transmitted on friday? | CREATE TABLE table_18173916_8 (wednesday VARCHAR, friday VARCHAR) | SELECT wednesday FROM table_18173916_8 WHERE friday = "307 VS." |
Name the scoring average for best finsih being t35 | CREATE TABLE table_18198579_6 (scoring_average VARCHAR, best_finish VARCHAR) | SELECT scoring_average FROM table_18198579_6 WHERE best_finish = "T35" |
Name the number of top 10s for scoring rank of 9 | CREATE TABLE table_18198579_6 (top_10s VARCHAR, scoring_rank VARCHAR) | SELECT COUNT(top_10s) FROM table_18198579_6 WHERE scoring_rank = "9" |
How many are the total winners if 7 won the Men's Open? | CREATE TABLE table_182298_5 (total VARCHAR, mens_open VARCHAR) | SELECT total FROM table_182298_5 WHERE mens_open = 7 |
How many won the Men's Open if the players are from Sweden? | CREATE TABLE table_182298_5 (mens_open VARCHAR, country VARCHAR) | SELECT COUNT(mens_open) FROM table_182298_5 WHERE country = "Sweden" |
How many are the total winners from South Korea? | CREATE TABLE table_182298_5 (total VARCHAR, country VARCHAR) | SELECT total FROM table_182298_5 WHERE country = "South Korea" |
When shaun maloney is the player what is the lowest p? | CREATE TABLE table_18254488_2 (p INTEGER, player VARCHAR) | SELECT MIN(p) FROM table_18254488_2 WHERE player = "Shaun Maloney" |
What is the highest amount of uefa champion leagues? | CREATE TABLE table_18254488_2 (uefa_champions_league INTEGER) | SELECT MAX(uefa_champions_league) FROM table_18254488_2 |
When koki mizuno is the player what is the lowest league cup? | CREATE TABLE table_18254488_2 (league_cup INTEGER, player VARCHAR) | SELECT MIN(league_cup) FROM table_18254488_2 WHERE player = "Koki Mizuno" |
When koki mizuno is the player how man positions are there? | CREATE TABLE table_18254488_2 (position VARCHAR, player VARCHAR) | SELECT COUNT(position) FROM table_18254488_2 WHERE player = "Koki Mizuno" |
How many episodes by different writers were seen by 3.24 million people in the US? | CREATE TABLE table_18268826_1 (written_by VARCHAR, us_viewers__million_ VARCHAR) | SELECT COUNT(written_by) FROM table_18268826_1 WHERE us_viewers__million_ = "3.24" |
What's the season number of the episode viewed by 3.19 million people in the US? | CREATE TABLE table_18268826_1 (no_in_season INTEGER, us_viewers__million_ VARCHAR) | SELECT MAX(no_in_season) FROM table_18268826_1 WHERE us_viewers__million_ = "3.19" |
Who's the writer of the episode seen by 3.25 million people in the US? | CREATE TABLE table_18268826_1 (written_by VARCHAR, us_viewers__million_ VARCHAR) | SELECT written_by FROM table_18268826_1 WHERE us_viewers__million_ = "3.25" |
Who directed the episode seen by 3.93 million people in the US? | CREATE TABLE table_18268826_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR) | SELECT directed_by FROM table_18268826_1 WHERE us_viewers__million_ = "3.93" |
How much do the tickets cost for August 7, 1987? | CREATE TABLE table_18277458_2 (ticket_price_s_ VARCHAR, date_s_ VARCHAR) | SELECT ticket_price_s_ FROM table_18277458_2 WHERE date_s_ = "August 7, 1987" |
How many tickets are sold for the Carver-Hawkeye Arena? | CREATE TABLE table_18277458_2 (ticket_sold___available VARCHAR, venue VARCHAR) | SELECT ticket_sold___available FROM table_18277458_2 WHERE venue = "Carver-Hawkeye Arena" |
When 1462/63 was the elected what was the no.? | CREATE TABLE table_1827690_4 (no VARCHAR, elected VARCHAR) | SELECT no FROM table_1827690_4 WHERE elected = "1462/63" |
When 1472 was the elected when was the assembled? | CREATE TABLE table_1827690_4 (assembled VARCHAR, elected VARCHAR) | SELECT assembled FROM table_1827690_4 WHERE elected = "1472" |
How many different combinations of scores by individual judges were given to the contestant competing against Mukul Dev? | CREATE TABLE table_18278508_6 (scores_by_each_individual_judge VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR) | SELECT COUNT(scores_by_each_individual_judge) FROM table_18278508_6 WHERE co_contestant__yaar_vs_pyaar_ = "Mukul Dev" |
What was Kashmira Shah's position on August 14? | CREATE TABLE table_18278508_6 (position VARCHAR, main_contestant VARCHAR, date_performed VARCHAR) | SELECT position FROM table_18278508_6 WHERE main_contestant = "Kashmira Shah" AND date_performed = "August 14" |
What was the total score / week of the contestant who placed in the bottom 2 on august 14? | CREATE TABLE table_18278508_6 (total_score_week VARCHAR, date_performed VARCHAR, position VARCHAR) | SELECT total_score_week FROM table_18278508_6 WHERE date_performed = "August 14" AND position = "Bottom 2" |
What were the scores by the individual judges for Karanvir Bohra on August 13? | CREATE TABLE table_18278508_6 (scores_by_each_individual_judge VARCHAR, main_contestant VARCHAR, date_performed VARCHAR) | SELECT scores_by_each_individual_judge FROM table_18278508_6 WHERE main_contestant = "Karanvir Bohra" AND date_performed = "August 13" |
Name the total number of main contestants for safe position for tina parekh | CREATE TABLE table_18278508_4 (main_contestant VARCHAR, position VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR) | SELECT COUNT(main_contestant) FROM table_18278508_4 WHERE position = "Safe" AND co_contestant__yaar_vs_pyaar_ = "Tina Parekh" |
Name the status for karanvir bohra and date performed being july 30 | CREATE TABLE table_18278508_4 (status VARCHAR, main_contestant VARCHAR, date_performed VARCHAR) | SELECT status FROM table_18278508_4 WHERE main_contestant = "Karanvir Bohra" AND date_performed = "July 30" |
What is the province where the age of the contestant is 27? | CREATE TABLE table_18349697_1 (province VARCHAR, _community VARCHAR, age VARCHAR) | SELECT province, _community FROM table_18349697_1 WHERE age = 27 |
When joan tewkesbury is the director what is the number in seasons? | CREATE TABLE table_18367694_3 (no_in_season VARCHAR, directed_by VARCHAR) | SELECT no_in_season FROM table_18367694_3 WHERE directed_by = "Joan Tewkesbury" |
How many series did John Banas direct? | CREATE TABLE table_18428024_3 (no_in_series VARCHAR, directed_by VARCHAR) | SELECT no_in_series FROM table_18428024_3 WHERE directed_by = "John Banas" |
What is the original air date in series 360? | CREATE TABLE table_18428024_3 (original_air_date VARCHAR, no_in_series VARCHAR) | SELECT COUNT(original_air_date) FROM table_18428024_3 WHERE no_in_series = 360 |
Who is the coach of the team in Leicester? | CREATE TABLE table_18461635_1 (coach VARCHAR, location VARCHAR) | SELECT coach FROM table_18461635_1 WHERE location = "Leicester" |
What is the name of the team from Derbyshire county? | CREATE TABLE table_18461635_1 (team VARCHAR, county VARCHAR) | SELECT team FROM table_18461635_1 WHERE county = "Derbyshire" |
Who is the captain of the Gloucestershire Gladiators? | CREATE TABLE table_18461635_1 (captain VARCHAR, team VARCHAR) | SELECT captain FROM table_18461635_1 WHERE team = "Gloucestershire Gladiators" |
Who is the captain of the team in Southampton? | CREATE TABLE table_18461635_1 (captain VARCHAR, location VARCHAR) | SELECT captain FROM table_18461635_1 WHERE location = "Southampton" |
Where is the team in Sussex county located? | CREATE TABLE table_18461635_1 (location VARCHAR, county VARCHAR) | SELECT location FROM table_18461635_1 WHERE county = "Sussex" |
Who is the captain of the team in Essex county? | CREATE TABLE table_18461635_1 (captain VARCHAR, county VARCHAR) | SELECT captain FROM table_18461635_1 WHERE county = "Essex" |
there are in tobago species name helicops angulatus | CREATE TABLE table_1850282_5 (tobago VARCHAR, species VARCHAR) | SELECT tobago FROM table_1850282_5 WHERE species = "Helicops angulatus" |
are in tobago species liophis cobellus cobellus? | CREATE TABLE table_1850282_5 (tobago VARCHAR, species VARCHAR) | SELECT tobago FROM table_1850282_5 WHERE species = "Liophis cobellus cobellus" |
Name the most ending with | CREATE TABLE table_1852650_1 (ending_with INTEGER) | SELECT MAX(ending_with) FROM table_1852650_1 |
Name the most ending with for peyalvar | CREATE TABLE table_1852650_1 (ending_with INTEGER, sung_by VARCHAR) | SELECT MAX(ending_with) FROM table_1852650_1 WHERE sung_by = "Peyalvar" |
Name the starting from thiruvezhukkurrirukkai | CREATE TABLE table_1852650_1 (starting_from INTEGER, name_of_the_prabandham VARCHAR) | SELECT MIN(starting_from) FROM table_1852650_1 WHERE name_of_the_prabandham = "Thiruvezhukkurrirukkai" |
Name the starting from amalanadhi piran | CREATE TABLE table_1852650_1 (starting_from VARCHAR, name_of_the_prabandham VARCHAR) | SELECT starting_from FROM table_1852650_1 WHERE name_of_the_prabandham = "Amalanadhi piran" |
Why did the change happened in Massachusetts (2)? | CREATE TABLE table_18563954_3 (reason_for_change VARCHAR, state__class_ VARCHAR) | SELECT reason_for_change FROM table_18563954_3 WHERE state__class_ = "Massachusetts (2)" |
How many different reasons are there for the change in Connecticut (3)? | CREATE TABLE table_18563954_3 (reason_for_change VARCHAR, state__class_ VARCHAR) | SELECT COUNT(reason_for_change) FROM table_18563954_3 WHERE state__class_ = "Connecticut (3)" |
When the ability to compromise is 13, what is background? | CREATE TABLE table_1855342_5 (background INTEGER, ability_to_compromise VARCHAR) | SELECT MAX(background) FROM table_1855342_5 WHERE ability_to_compromise = 13 |
When the seq is 41, what is the ability to compromise? | CREATE TABLE table_1855342_5 (ability_to_compromise INTEGER, seq VARCHAR) | SELECT MAX(ability_to_compromise) FROM table_1855342_5 WHERE seq = "41" |
When the ability is 32, what is the leadership ability? | CREATE TABLE table_1855342_5 (leadership_ability INTEGER, overall_ability VARCHAR) | SELECT MAX(leadership_ability) FROM table_1855342_5 WHERE overall_ability = 32 |
When 25 are willing to take risks, what is the experts view? | CREATE TABLE table_1855342_5 (experts_view INTEGER, willing_to_take_risks VARCHAR) | SELECT MIN(experts_view) FROM table_1855342_5 WHERE willing_to_take_risks = 25 |
Name who directed the episode that was viewed by 4.22 million | CREATE TABLE table_18569389_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR) | SELECT directed_by FROM table_18569389_1 WHERE us_viewers__million_ = "4.22" |
Name the title for production code 2t6908 | CREATE TABLE table_18569389_1 (title VARCHAR, production_code VARCHAR) | SELECT title FROM table_18569389_1 WHERE production_code = "2T6908" |
Name the total number for number in series that got 3.62 viewers | CREATE TABLE table_18569389_1 (no_in_series VARCHAR, us_viewers__million_ VARCHAR) | SELECT COUNT(no_in_series) FROM table_18569389_1 WHERE us_viewers__million_ = "3.62" |
Name the air date that chris long directed | CREATE TABLE table_18569389_1 (original_air_date VARCHAR, directed_by VARCHAR) | SELECT original_air_date FROM table_18569389_1 WHERE directed_by = "Chris Long" |
Name the number of production code for 5.08 | CREATE TABLE table_18569389_1 (production_code VARCHAR, us_viewers__million_ VARCHAR) | SELECT COUNT(production_code) FROM table_18569389_1 WHERE us_viewers__million_ = "5.08" |
When 17.07 is the loa (metres) what is the type of yacht? | CREATE TABLE table_1858574_2 (yacht VARCHAR, loa__metres_ VARCHAR) | SELECT yacht AS Type FROM table_1858574_2 WHERE loa__metres_ = "17.07" |
When 3 is the position what is the sail number? | CREATE TABLE table_1858574_2 (sail_number VARCHAR, position VARCHAR) | SELECT sail_number FROM table_1858574_2 WHERE position = 3 |
When aspect computing is the yacht what is the sail number? | CREATE TABLE table_1858574_2 (sail_number VARCHAR, yacht VARCHAR) | SELECT sail_number FROM table_1858574_2 WHERE yacht = "Aspect Computing" |
When 6606 is the sail number what is the type of yacht? | CREATE TABLE table_1858574_2 (yacht VARCHAR, sail_number VARCHAR) | SELECT yacht AS Type FROM table_1858574_2 WHERE sail_number = "6606" |
When 5 is the position what is the state or country? | CREATE TABLE table_1858574_2 (state_country VARCHAR, position VARCHAR) | SELECT state_country FROM table_1858574_2 WHERE position = 5 |
Name the least ansi code for 609 population 2010 | CREATE TABLE table_18600760_1 (ansi_code INTEGER, pop__2010_ VARCHAR) | SELECT MIN(ansi_code) FROM table_18600760_1 WHERE pop__2010_ = 609 |
Name the ansi code fore ashtabula | CREATE TABLE table_18600760_1 (ansi_code INTEGER, township VARCHAR) | SELECT MIN(ansi_code) FROM table_18600760_1 WHERE township = "Ashtabula" |
Name the land for ada | CREATE TABLE table_18600760_1 (land___sqmi__ VARCHAR, township VARCHAR) | SELECT COUNT(land___sqmi__) FROM table_18600760_1 WHERE township = "Ada" |
What was the position of the Atl. Colegiales team? | CREATE TABLE table_18597302_1 (position INTEGER, team VARCHAR) | SELECT MAX(position) FROM table_18597302_1 WHERE team = "Atl. Colegiales" |
What was the position where the team scored 9 points? | CREATE TABLE table_18597302_1 (position VARCHAR, points VARCHAR) | SELECT COUNT(position) FROM table_18597302_1 WHERE points = 9 |
How many player eliminated an opponent within the time frame of 32:32? | CREATE TABLE table_18598175_2 (eliminated_by VARCHAR, time VARCHAR) | SELECT COUNT(eliminated_by) FROM table_18598175_2 WHERE time = "32:32" |
What was the styled used to defeat the opponent within the time frame of 32:32? | CREATE TABLE table_18598175_2 (method_of_elimination VARCHAR, time VARCHAR) | SELECT method_of_elimination FROM table_18598175_2 WHERE time = "32:32" |
Who won the match when the winner used the Pedigree attack? | CREATE TABLE table_18598175_2 (eliminated_by VARCHAR, method_of_elimination VARCHAR) | SELECT eliminated_by FROM table_18598175_2 WHERE method_of_elimination = "Pedigree" |
What was the elimination number of the fighter who fought within 27:27? | CREATE TABLE table_18598175_2 (elimination_number INTEGER, time VARCHAR) | SELECT MIN(elimination_number) FROM table_18598175_2 WHERE time = "27:27" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.