answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
|---|---|---|
SELECT production_code FROM table_21304155_1 WHERE directed_by = "David Solomon"
|
CREATE TABLE table_21304155_1 (production_code VARCHAR, directed_by VARCHAR)
|
What is the production code of the episode directed by David Solomon?
|
SELECT written_by FROM table_21304155_1 WHERE production_code = "BN103"
|
CREATE TABLE table_21304155_1 (written_by VARCHAR, production_code VARCHAR)
|
Who wrote the episode with the production code of BN103?
|
SELECT original_air_date FROM table_21304155_1 WHERE us_viewers__millions_ = "4.08"
|
CREATE TABLE table_21304155_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)
|
What was the original air date of the episode that had 4.08 million U.S. viewers?
|
SELECT location_chernobyl_1_chernobyl_2_chernobyl_3_chernobyl_4_chernobyl_5_ignalina_1_ignalina_2_ignalina_3_kursk_1_kursk_2_kursk_3_kursk_4_kursk_5_kursk_6_leningrad_1_leningrad_2_leningrad_3_leningrad_4_smolensk_1_smolensk_2_smolensk_3_smolensk_4_directorate_for_construction_of_kostoma_npp__for_kostroma_1_and_2__table_31_technology_and_soviet_energy_availability___november_1981___ntis_order__numberpb82_133455__for_ignalina_4_ FROM table_213088_1 WHERE net_capacity__mw_ = 950
|
CREATE TABLE table_213088_1 (location_chernobyl_1_chernobyl_2_chernobyl_3_chernobyl_4_chernobyl_5_ignalina_1_ignalina_2_ignalina_3_kursk_1_kursk_2_kursk_3_kursk_4_kursk_5_kursk_6_leningrad_1_leningrad_2_leningrad_3_leningrad_4_smolensk_1_smolensk_2_smolensk_3_smolensk_4_directorate_for_construction_of_kostoma_npp__for_kostroma_1_and_2__table_31_technology_and_soviet_energy_availability___november_1981___ntis_order__numberpb82_133455__for_ignalina_4_ VARCHAR, net_capacity__mw_ VARCHAR)
|
List all the locations where net capacity is 950?
|
SELECT location_chernobyl_1_chernobyl_2_chernobyl_3_chernobyl_4_chernobyl_5_ignalina_1_ignalina_2_ignalina_3_kursk_1_kursk_2_kursk_3_kursk_4_kursk_5_kursk_6_leningrad_1_leningrad_2_leningrad_3_leningrad_4_smolensk_1_smolensk_2_smolensk_3_smolensk_4_directorate_for_construction_of_kostoma_npp__for_kostroma_1_and_2__table_31_technology_and_soviet_energy_availability___november_1981___ntis_order__numberpb82_133455__for_ignalina_4_ FROM table_213088_1 WHERE reactor_type = "RBMK-1000"
|
CREATE TABLE table_213088_1 (location_chernobyl_1_chernobyl_2_chernobyl_3_chernobyl_4_chernobyl_5_ignalina_1_ignalina_2_ignalina_3_kursk_1_kursk_2_kursk_3_kursk_4_kursk_5_kursk_6_leningrad_1_leningrad_2_leningrad_3_leningrad_4_smolensk_1_smolensk_2_smolensk_3_smolensk_4_directorate_for_construction_of_kostoma_npp__for_kostroma_1_and_2__table_31_technology_and_soviet_energy_availability___november_1981___ntis_order__numberpb82_133455__for_ignalina_4_ VARCHAR, reactor_type VARCHAR)
|
List all the locations with a RBMK-1000 reactor.
|
SELECT MIN(gross_capacity__mw_) FROM table_213088_1 WHERE net_capacity__mw_ = 1380
|
CREATE TABLE table_213088_1 (gross_capacity__mw_ INTEGER, net_capacity__mw_ VARCHAR)
|
What is the gross capacity where the net capacity is 1380?
|
SELECT original_air_date FROM table_21313498_1 WHERE us_viewers__millions_ = "3.3" AND written_by = "Rob Wright"
|
CREATE TABLE table_21313498_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR, written_by VARCHAR)
|
when was the premiere when a 3.3 millions of North American watched the episode whose writer was Rob Wright?
|
SELECT title FROM table_21313498_1 WHERE production_code = "62015-08-162"
|
CREATE TABLE table_21313498_1 (title VARCHAR, production_code VARCHAR)
|
what is the name of the episode which the production code is 62015-08-162
|
SELECT written_by FROM table_21313498_1 WHERE no_in_season = 11
|
CREATE TABLE table_21313498_1 (written_by VARCHAR, no_in_season VARCHAR)
|
in the number of episode in season is 11, who was the writer?
|
SELECT COUNT(no_in_season) FROM table_21312959_1 WHERE us_viewers__millions_ = "5.0"
|
CREATE TABLE table_21312959_1 (no_in_season VARCHAR, us_viewers__millions_ VARCHAR)
|
How many episodes had the us viewers (millions) figure of 5.0?
|
SELECT written_by FROM table_21312959_1 WHERE no_in_series = 129
|
CREATE TABLE table_21312959_1 (written_by VARCHAR, no_in_series VARCHAR)
|
Who are the writers for the episode number in series 129?
|
SELECT MAX(no_in_season) FROM table_21312845_1 WHERE directed_by = "Chris Long"
|
CREATE TABLE table_21312845_1 (no_in_season INTEGER, directed_by VARCHAR)
|
What is the latest episode in the season directed by Chris Long?
|
SELECT written_by FROM table_21312845_1 WHERE directed_by = "David Straiton"
|
CREATE TABLE table_21312845_1 (written_by VARCHAR, directed_by VARCHAR)
|
Who wrote the episodes directed by David Straiton?
|
SELECT directed_by FROM table_21312845_1 WHERE production_code > 4301103.585233785 AND written_by = "Curtis Kheel"
|
CREATE TABLE table_21312845_1 (directed_by VARCHAR, production_code VARCHAR, written_by VARCHAR)
|
Who directed the episode with a production code greater than 4301103.585233785 that was written by Curtis Kheel?
|
SELECT COUNT(result) FROM table_21311525_1 WHERE date = "19/06/2009"
|
CREATE TABLE table_21311525_1 (result VARCHAR, date VARCHAR)
|
How many results were there on 19/06/2009?
|
SELECT round FROM table_21311525_1 WHERE date = "19/06/2009"
|
CREATE TABLE table_21311525_1 (round VARCHAR, date VARCHAR)
|
What is the round number for the date 19/06/2009?
|
SELECT round FROM table_21311525_1 WHERE venue = "Stade de la Méditerranée"
|
CREATE TABLE table_21311525_1 (round VARCHAR, venue VARCHAR)
|
What is the round number for the venue of Stade de la Méditerranée?
|
SELECT score FROM table_21311525_1 WHERE date = "17/07/2009"
|
CREATE TABLE table_21311525_1 (score VARCHAR, date VARCHAR)
|
What was the score when the date was 17/07/2009?
|
SELECT position FROM table_21321804_5 WHERE player = "Marc Parenteau"
|
CREATE TABLE table_21321804_5 (position VARCHAR, player VARCHAR)
|
What is Marc Parenteau's position?
|
SELECT MIN(pick__number) FROM table_21321804_5 WHERE college = "McGill"
|
CREATE TABLE table_21321804_5 (pick__number INTEGER, college VARCHAR)
|
What is the smallest pick number for McGill?
|
SELECT college FROM table_21321804_5 WHERE player = "Derik Fury"
|
CREATE TABLE table_21321804_5 (college VARCHAR, player VARCHAR)
|
Derik Fury plays for which college?
|
SELECT COUNT(college) FROM table_21321804_5 WHERE player = "David Kasouf"
|
CREATE TABLE table_21321804_5 (college VARCHAR, player VARCHAR)
|
David Kasouf plays for how many colleges?
|
SELECT position FROM table_21321804_5 WHERE cfl_team = "Hamilton Tiger-Cats"
|
CREATE TABLE table_21321804_5 (position VARCHAR, cfl_team VARCHAR)
|
What position was drafted by the Hamilton Tiger-Cats?
|
SELECT winning_driver FROM table_21321935_2 WHERE fastest_lap = "Jamie Green"
|
CREATE TABLE table_21321935_2 (winning_driver VARCHAR, fastest_lap VARCHAR)
|
Who won when Jamie Green had the best lap?
|
SELECT fastest_lap FROM table_21321935_2 WHERE circuit = "Motorsport Arena Oschersleben"
|
CREATE TABLE table_21321935_2 (fastest_lap VARCHAR, circuit VARCHAR)
|
Who had the fasted lap in motorsport arena oschersleben?
|
SELECT date FROM table_21321935_2 WHERE pole_position = "Oliver Jarvis"
|
CREATE TABLE table_21321935_2 (date VARCHAR, pole_position VARCHAR)
|
When did Oliver Jarvis have pole position?
|
SELECT college FROM table_21321804_3 WHERE cfl_team = "Hamilton Tiger-Cats"
|
CREATE TABLE table_21321804_3 (college VARCHAR, cfl_team VARCHAR)
|
What college did the player for the Hamilton Tiger-Cats go to?
|
SELECT COUNT(player) FROM table_21321804_3 WHERE position = "DT"
|
CREATE TABLE table_21321804_3 (player VARCHAR, position VARCHAR)
|
How many players are at the DT position?
|
SELECT cfl_team FROM table_21321804_3 WHERE college = "Nebraska"
|
CREATE TABLE table_21321804_3 (cfl_team VARCHAR, college VARCHAR)
|
What team does the player who went to Nebraska play for?
|
SELECT MAX(pick__number) FROM table_21321804_3
|
CREATE TABLE table_21321804_3 (pick__number INTEGER)
|
What is the highest number any of the players were picked at?
|
SELECT player FROM table_21321804_3 WHERE cfl_team = "Winnipeg Blue Bombers"
|
CREATE TABLE table_21321804_3 (player VARCHAR, cfl_team VARCHAR)
|
Which player plays for the Winnipeg Blue Bombers?
|
SELECT pick__number FROM table_21321804_1 WHERE player = "Wes Lysack"
|
CREATE TABLE table_21321804_1 (pick__number VARCHAR, player VARCHAR)
|
What is the pick # for player wes lysack?
|
SELECT COUNT(cfl_team) FROM table_21321804_1 WHERE pick__number = 5
|
CREATE TABLE table_21321804_1 (cfl_team VARCHAR, pick__number VARCHAR)
|
How many clf teams have a pick # of 5?
|
SELECT COUNT(position) FROM table_21321804_1 WHERE college = "Utah"
|
CREATE TABLE table_21321804_1 (position VARCHAR, college VARCHAR)
|
How many total positions are there for utah college?
|
SELECT cfl_team FROM table_21321804_1 WHERE college = "Manitoba"
|
CREATE TABLE table_21321804_1 (cfl_team VARCHAR, college VARCHAR)
|
Which cfl team is manitoba college?
|
SELECT position FROM table_21321804_1 WHERE cfl_team = "Edmonton Eskimos" AND college = "Weber State"
|
CREATE TABLE table_21321804_1 (position VARCHAR, cfl_team VARCHAR, college VARCHAR)
|
Which position is cfl team edmonton eskimos for weber state college?
|
SELECT MAX(pick__number) FROM table_21321804_1 WHERE player = "Wes Lysack"
|
CREATE TABLE table_21321804_1 (pick__number INTEGER, player VARCHAR)
|
What is the pick # for player wes lysack?
|
SELECT COUNT(length) FROM table_21326205_2 WHERE time = "14:33.9"
|
CREATE TABLE table_21326205_2 (length VARCHAR, time VARCHAR)
|
How many stages of the rally took 14:33.9 for the leader to finish?
|
SELECT stage FROM table_21326205_2 WHERE rally_leader = "Sébastien Loeb" AND name = "Tempo 2"
|
CREATE TABLE table_21326205_2 (stage VARCHAR, rally_leader VARCHAR, name VARCHAR)
|
In which special stage named Tempo 2 was Sébastien Loeb the leader?
|
SELECT winner FROM table_21326205_2 WHERE time__gmt_ = "18:54"
|
CREATE TABLE table_21326205_2 (winner VARCHAR, time__gmt_ VARCHAR)
|
Which ralliers won the stages that were at 18:54 GMT?
|
SELECT COUNT(location) FROM table_21330550_2 WHERE big_ten_team = "#12 Michigan State"
|
CREATE TABLE table_21330550_2 (location VARCHAR, big_ten_team VARCHAR)
|
How many locations have #12 Michigan State as the big ten team?
|
SELECT winner FROM table_21330550_2 WHERE challenge_leader = "BigTen (2-1)"
|
CREATE TABLE table_21330550_2 (winner VARCHAR, challenge_leader VARCHAR)
|
Who is the winner when bigten (2-1) is the challenge leader?
|
SELECT winner FROM table_21330550_2 WHERE location = "LJVM Coliseum • Winston-Salem, NC"
|
CREATE TABLE table_21330550_2 (winner VARCHAR, location VARCHAR)
|
Who is the winner in the location of ljvm coliseum • winston-salem, nc?
|
SELECT time FROM table_21330550_2 WHERE acc_team = "#17 Wake Forest"
|
CREATE TABLE table_21330550_2 (time VARCHAR, acc_team VARCHAR)
|
What time was the acc team #17 wake forest?
|
SELECT location FROM table_21330550_2 WHERE time = "9:30PM"
|
CREATE TABLE table_21330550_2 (location VARCHAR, time VARCHAR)
|
Which location has a time of 9:30pm?
|
SELECT COUNT(date) FROM table_21330550_2 WHERE big_ten_team = "#10 Purdue"
|
CREATE TABLE table_21330550_2 (date VARCHAR, big_ten_team VARCHAR)
|
How many dates have a big ten team of #10 purdue?
|
SELECT contestant FROM table_21346767_3 WHERE hometown = "Villa Hermosa"
|
CREATE TABLE table_21346767_3 (contestant VARCHAR, hometown VARCHAR)
|
Name the contestant for villa hermosa
|
SELECT MIN(age) FROM table_21346767_3 WHERE geographical_regions = "Cibao Central" AND hometown = "Santo Domingo"
|
CREATE TABLE table_21346767_3 (age INTEGER, geographical_regions VARCHAR, hometown VARCHAR)
|
Name the least age for cibao central and santo domingo
|
SELECT COUNT(pop__2001_) FROM table_2134521_1 WHERE pop__1996_ = 880859
|
CREATE TABLE table_2134521_1 (pop__2001_ VARCHAR, pop__1996_ VARCHAR)
|
How many different results of the population count in 2001 are there for the census division whose population in 1996 is 880859?
|
SELECT pop__1996_ FROM table_2134521_1 WHERE area__km²_ = "15767.99"
|
CREATE TABLE table_2134521_1 (pop__1996_ VARCHAR, area__km²_ VARCHAR)
|
How many people lived in the census division with an area of 15767.99 km2 in 1996?
|
SELECT MAX(pop__2006_) FROM table_2134521_1
|
CREATE TABLE table_2134521_1 (pop__2006_ INTEGER)
|
What is the largest population count in any of the census divisions in 2006?
|
SELECT pop__1996_ FROM table_2134521_1 WHERE area__km²_ = "9909.31"
|
CREATE TABLE table_2134521_1 (pop__1996_ VARCHAR, area__km²_ VARCHAR)
|
How many people lived in the census division spread out on 9909.31 km2 in 1996?
|
SELECT result FROM table_21350934_2 WHERE round = "QF"
|
CREATE TABLE table_21350934_2 (result VARCHAR, round VARCHAR)
|
What is the result of the qf round?
|
SELECT venue FROM table_21350934_2 WHERE opponent = "Bradford Bulls" AND date = "06/09/2009"
|
CREATE TABLE table_21350934_2 (venue VARCHAR, opponent VARCHAR, date VARCHAR)
|
Which venue has bradford bulls as the opponent on the date of 06/09/2009?
|
SELECT opponent FROM table_21350934_2 WHERE attendance = "N/A"
|
CREATE TABLE table_21350934_2 (opponent VARCHAR, attendance VARCHAR)
|
Who is the opponent when the attendance is n/a?
|
SELECT venue FROM table_21350934_2 WHERE score = "34-18"
|
CREATE TABLE table_21350934_2 (venue VARCHAR, score VARCHAR)
|
What is the venue that has 34-18 as the score?
|
SELECT COUNT(result) FROM table_21350934_2 WHERE attendance = "14,381"
|
CREATE TABLE table_21350934_2 (result VARCHAR, attendance VARCHAR)
|
How many results have 14,381 as the attendance?
|
SELECT round FROM table_21350934_2 WHERE attendance = "6,150"
|
CREATE TABLE table_21350934_2 (round VARCHAR, attendance VARCHAR)
|
How many rounds have 6,150 as attendance?
|
SELECT COUNT(opponent) FROM table_21378160_2 WHERE date = "17/05/2009"
|
CREATE TABLE table_21378160_2 (opponent VARCHAR, date VARCHAR)
|
How many opponents did they play on 17/05/2009?
|
SELECT score FROM table_21378160_2 WHERE round = "3"
|
CREATE TABLE table_21378160_2 (score VARCHAR, round VARCHAR)
|
What was the score of round 3?
|
SELECT COUNT(artist) FROM table_21378339_5 WHERE televote_points = 7
|
CREATE TABLE table_21378339_5 (artist VARCHAR, televote_points VARCHAR)
|
Name the artist for 7 points
|
SELECT COUNT(artist) FROM table_21378339_5 WHERE panel_points = 5
|
CREATE TABLE table_21378339_5 (artist VARCHAR, panel_points VARCHAR)
|
Name the number of artists for panel points being 5
|
SELECT COUNT(televote_points) FROM table_21378339_5 WHERE song = "Cry on my shoulders"
|
CREATE TABLE table_21378339_5 (televote_points VARCHAR, song VARCHAR)
|
Name the total number of televote points for cry on my shoulders
|
SELECT score FROM table_21378339_5 WHERE artist = "Rebeka Dremelj"
|
CREATE TABLE table_21378339_5 (score VARCHAR, artist VARCHAR)
|
Name the score for rebeka dremelj
|
SELECT artist FROM table_21378339_5 WHERE televotes = 1595
|
CREATE TABLE table_21378339_5 (artist VARCHAR, televotes VARCHAR)
|
Name the artist for 1595 televotes
|
SELECT outcome FROM table_2139023_2 WHERE surface = "Grass" AND year = 1955
|
CREATE TABLE table_2139023_2 (outcome VARCHAR, surface VARCHAR, year VARCHAR)
|
What was the result of the match on grass in 1955?
|
SELECT outcome FROM table_2139023_2 WHERE championship = "Australian championships"
|
CREATE TABLE table_2139023_2 (outcome VARCHAR, championship VARCHAR)
|
What was the result of the Australian Championships?
|
SELECT COUNT(external_link) FROM table_2140071_13 WHERE coach = "Katie Kansas"
|
CREATE TABLE table_2140071_13 (external_link VARCHAR, coach VARCHAR)
|
What is the number of external links with a coach named Katie Kansas?
|
SELECT MIN(season) FROM table_2140071_13
|
CREATE TABLE table_2140071_13 (season INTEGER)
|
What is the minimum number of seasons?
|
SELECT episode AS Summary FROM table_2140071_13 WHERE episode = 5
|
CREATE TABLE table_2140071_13 (episode VARCHAR)
|
What is the episode summary for episode 5?
|
SELECT episode AS Summary FROM table_2140071_13 WHERE coach = "Rebecca Star"
|
CREATE TABLE table_2140071_13 (episode VARCHAR, coach VARCHAR)
|
What is the summary for the episode with a coach named Rebecca Star?
|
SELECT episode FROM table_2140071_10 WHERE coach = "Maritza Reveron"
|
CREATE TABLE table_2140071_10 (episode VARCHAR, coach VARCHAR)
|
Name the episode with maritza reveron
|
SELECT season FROM table_2140071_10 WHERE premier_date = "August 16, 2010"
|
CREATE TABLE table_2140071_10 (season VARCHAR, premier_date VARCHAR)
|
Name the season for august 16, 2010
|
SELECT COUNT(episode) AS Summary FROM table_2140071_10 WHERE coach = "Jesse Csincsak"
|
CREATE TABLE table_2140071_10 (episode VARCHAR, coach VARCHAR)
|
Name the number of episode summary for jesse csincsak
|
SELECT coach FROM table_2140071_10 WHERE premier_date = "May 20, 2010"
|
CREATE TABLE table_2140071_10 (coach VARCHAR, premier_date VARCHAR)
|
Name the coach for may 20, 2010
|
SELECT team FROM table_2139390_2 WHERE date = "June 20"
|
CREATE TABLE table_2139390_2 (team VARCHAR, date VARCHAR)
|
Name the team for june 20
|
SELECT race_time FROM table_2139390_2 WHERE year = 2002
|
CREATE TABLE table_2139390_2 (race_time VARCHAR, year VARCHAR)
|
Name the race time for 2002
|
SELECT COUNT(season) FROM table_2140071_5 WHERE premier_date = "January 6, 2005"
|
CREATE TABLE table_2140071_5 (season VARCHAR, premier_date VARCHAR)
|
How many seasons have a premier date of January 6, 2005?
|
SELECT MAX(season) FROM table_2140071_5
|
CREATE TABLE table_2140071_5 (season INTEGER)
|
What is the last season?
|
SELECT premier_date FROM table_2140071_5 WHERE coach = "John O'Connell"
|
CREATE TABLE table_2140071_5 (premier_date VARCHAR, coach VARCHAR)
|
What date did the episode, with John O'Connell as the coach, premier?
|
SELECT result_games FROM table_21436373_11 WHERE type_of_record = "Total attendance-Regular season"
|
CREATE TABLE table_21436373_11 (result_games VARCHAR, type_of_record VARCHAR)
|
Name the result for total attendance-regular season
|
SELECT result_games FROM table_21436373_11 WHERE attendance = 52521
|
CREATE TABLE table_21436373_11 (result_games VARCHAR, attendance VARCHAR)
|
Name the result/games for 52521
|
SELECT result_games FROM table_21436373_11 WHERE attendance = 54530
|
CREATE TABLE table_21436373_11 (result_games VARCHAR, attendance VARCHAR)
|
Name the result/games for 54530
|
SELECT stadium FROM table_21436373_11 WHERE type_of_record = "Regular season game"
|
CREATE TABLE table_21436373_11 (stadium VARCHAR, type_of_record VARCHAR)
|
Name the stadium for regular season game
|
SELECT result_games FROM table_21436373_11 WHERE attendance = 54741
|
CREATE TABLE table_21436373_11 (result_games VARCHAR, attendance VARCHAR)
|
Name the result/games for 54741
|
SELECT 1 AS st_leg FROM table_21434618_1 WHERE team__number2 = "Ilisiakos"
|
CREATE TABLE table_21434618_1 (team__number2 VARCHAR)
|
give the 1st leg score against ilisiakos
|
SELECT team__number1 FROM table_21434618_1 WHERE team__number2 = "Chalkida"
|
CREATE TABLE table_21434618_1 (team__number1 VARCHAR, team__number2 VARCHAR)
|
which team #1 played again chalkida
|
SELECT team__number2 FROM table_21434618_1 WHERE team__number1 = "Poseidon Neoi Porroi"
|
CREATE TABLE table_21434618_1 (team__number2 VARCHAR, team__number1 VARCHAR)
|
which team#2 played against poseidon neoi porroi
|
SELECT date_year FROM table_21436373_10 WHERE type_of_record = "Pre-season game"
|
CREATE TABLE table_21436373_10 (date_year VARCHAR, type_of_record VARCHAR)
|
When was the pre-season game record achieved?
|
SELECT MAX(attendance) FROM table_21436373_10
|
CREATE TABLE table_21436373_10 (attendance INTEGER)
|
What is the maximal number of people that attended any of these games?
|
SELECT attendance FROM table_21436373_12 WHERE date_year = "2011"
|
CREATE TABLE table_21436373_12 (attendance VARCHAR, date_year VARCHAR)
|
what is the attendance in 2011 records
|
SELECT type_of_record FROM table_21436373_12 WHERE result_games = "10 games (29,606 avg.)"
|
CREATE TABLE table_21436373_12 (type_of_record VARCHAR, result_games VARCHAR)
|
what type of record was made where result/games is 10 games (29,606 avg.)
|
SELECT stadium FROM table_21436373_12 WHERE type_of_record = "Total attendance-Regular season"
|
CREATE TABLE table_21436373_12 (stadium VARCHAR, type_of_record VARCHAR)
|
where was the total attendance-regular season record made
|
SELECT stadium FROM table_21436373_12 WHERE date_year = "Sun 09/12/93"
|
CREATE TABLE table_21436373_12 (stadium VARCHAR, date_year VARCHAR)
|
where was sun 09/12/93 record made
|
SELECT COUNT(type_of_record) FROM table_21436373_12 WHERE result_games = "10 games (29,606 avg.)"
|
CREATE TABLE table_21436373_12 (type_of_record VARCHAR, result_games VARCHAR)
|
how many records had result/games: 10 games (29,606 avg.)
|
SELECT MAX(attendance) FROM table_21436373_12 WHERE type_of_record = "Total attendance-Regular season"
|
CREATE TABLE table_21436373_12 (attendance INTEGER, type_of_record VARCHAR)
|
what is the highest attendance for a total attendance-regular season record
|
SELECT COUNT(attendance) FROM table_21436373_7 WHERE date_year = "2005"
|
CREATE TABLE table_21436373_7 (attendance VARCHAR, date_year VARCHAR)
|
When 2005 is the date/year how many measurements of attendance are there?
|
SELECT result_games FROM table_21436373_7 WHERE attendance = 27585
|
CREATE TABLE table_21436373_7 (result_games VARCHAR, attendance VARCHAR)
|
When 27585 is the attendance what are the results of the games?
|
SELECT date_year FROM table_21436373_7 WHERE result_games = "9 games (28,002 avg.)"
|
CREATE TABLE table_21436373_7 (date_year VARCHAR, result_games VARCHAR)
|
When 9 games (28,002 avg.) is the results of the games what is the date/year?
|
SELECT stadium FROM table_21436373_7 WHERE attendance = 255627
|
CREATE TABLE table_21436373_7 (stadium VARCHAR, attendance VARCHAR)
|
When 255627 is the attendance what is the stadium?
|
Subsets and Splits
SQL Console for knowrohit07/know_sql
Finds questions in the dataset that contain the word 'god', providing a basic filtered view without much analytical insight.