answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT MAX(losses) FROM table_name_81 WHERE club = "camperdown" AND against < 945
CREATE TABLE table_name_81 (losses INTEGER, club VARCHAR, against VARCHAR)
What's the highest amount of losses of Camperdown when the against was less than 945?
SELECT SUM(league_goals) FROM table_name_51 WHERE fa_cup_goals > 0
CREATE TABLE table_name_51 (league_goals INTEGER, fa_cup_goals INTEGER)
what is the sum of league goals when the fa cup goals is more than 0?
SELECT AVG(league_cup_goals) FROM table_name_98 WHERE league_cup_apps = 4 AND league_goals < 4 AND fa_cup_apps = "1" AND total_apps = "35"
CREATE TABLE table_name_98 (league_cup_goals INTEGER, total_apps VARCHAR, fa_cup_apps VARCHAR, league_cup_apps VARCHAR, league_goals VARCHAR)
what is the average league cup goals when the league cup apps is 4, league goals is less than 4, fa cup apps is 1 and total apps is 35?
SELECT AVG(league_cup_goals) FROM table_name_78 WHERE position = "df" AND total_goals > 4
CREATE TABLE table_name_78 (league_cup_goals INTEGER, position VARCHAR, total_goals VARCHAR)
what is the average league cup goals when the position is df and total goals is more than 4?
SELECT AVG(fa_cup_goals) FROM table_name_80 WHERE fa_cup_apps = "0" AND total_goals < 1 AND position = "df"
CREATE TABLE table_name_80 (fa_cup_goals INTEGER, position VARCHAR, fa_cup_apps VARCHAR, total_goals VARCHAR)
what is the average fa cup goals when the fa cup apps is 0, total goals is less than 1 and position is df?
SELECT COUNT(year) FROM table_name_67 WHERE score = "0.586"
CREATE TABLE table_name_67 (year VARCHAR, score VARCHAR)
What year had a score of 0.586?
SELECT n_africa_rank FROM table_name_54 WHERE year = 2012 AND cplp_rank = "n/a"
CREATE TABLE table_name_54 (n_africa_rank VARCHAR, year VARCHAR, cplp_rank VARCHAR)
What's the n Africa in 2012 with an N/A as the CPLP?
SELECT finals_venue FROM table_name_23 WHERE number_of_delegates = "82"
CREATE TABLE table_name_23 (finals_venue VARCHAR, number_of_delegates VARCHAR)
What was the final venue for 82 delegates?
SELECT artist FROM table_name_86 WHERE record_label = "vertigo"
CREATE TABLE table_name_86 (artist VARCHAR, record_label VARCHAR)
Which Artist has a Record label of vertigo?
SELECT president FROM table_name_57 WHERE c_span_2009 = "21"
CREATE TABLE table_name_57 (president VARCHAR, c_span_2009 VARCHAR)
Who is the president when c-span 2009 is 21?
SELECT c_span_2009 FROM table_name_80 WHERE times_2008 * * = "08"
CREATE TABLE table_name_80 (c_span_2009 VARCHAR, times_2008 VARCHAR)
what is c-span 2009 when times 2008** is 08?
SELECT siena_2002 FROM table_name_96 WHERE president = "andrew jackson"
CREATE TABLE table_name_96 (siena_2002 VARCHAR, president VARCHAR)
what is siena 2002 when the president is andrew jackson?
SELECT location FROM table_name_14 WHERE home_ground = "mong kok stadium"
CREATE TABLE table_name_14 (location VARCHAR, home_ground VARCHAR)
Which Location has a Home Ground of Mong kok stadium?
SELECT club FROM table_name_14 WHERE league_division = "first division"
CREATE TABLE table_name_14 (club VARCHAR, league_division VARCHAR)
Which club is in the First division?
SELECT home_ground FROM table_name_39 WHERE location = "n/a" AND club = "kcdrsc"
CREATE TABLE table_name_39 (home_ground VARCHAR, location VARCHAR, club VARCHAR)
What is the Home Ground with the Location n/a for the Club kcdrsc?
SELECT league_division FROM table_name_29 WHERE location = "n/a"
CREATE TABLE table_name_29 (league_division VARCHAR, location VARCHAR)
What League/Division has a Location of n/a?
SELECT location FROM table_name_67 WHERE league_division = "second division" AND position_in_2012_13 = "4th, third division (promoted)"
CREATE TABLE table_name_67 (location VARCHAR, league_division VARCHAR, position_in_2012_13 VARCHAR)
What Location is in the second division and has 4th, third division (promoted) as its Position in 2012-13?
SELECT rank FROM table_name_76 WHERE time = "7:16.13"
CREATE TABLE table_name_76 (rank VARCHAR, time VARCHAR)
What was the rank of the team who raced at a time of 7:16.13?
SELECT COUNT(rank) FROM table_name_19 WHERE country = "greece"
CREATE TABLE table_name_19 (rank VARCHAR, country VARCHAR)
What is the total number of rank for the country of greece?
SELECT country FROM table_name_67 WHERE rank < 5 AND notes = "fb"
CREATE TABLE table_name_67 (country VARCHAR, rank VARCHAR, notes VARCHAR)
What country were the athletes where ranked smaller than 5 with notes listed as fb?
SELECT time FROM table_name_63 WHERE country = "united states"
CREATE TABLE table_name_63 (time VARCHAR, country VARCHAR)
What is the time for the race with the United States?
SELECT MIN(shirt_no) FROM table_name_63 WHERE birth_date = "april 12, 1986 (age27)"
CREATE TABLE table_name_63 (shirt_no INTEGER, birth_date VARCHAR)
What shirt No has a Birth Date of April 12, 1986 (age27)?
SELECT position FROM table_name_54 WHERE height > 179 AND player = "ezgi arslan"
CREATE TABLE table_name_54 (position VARCHAR, height VARCHAR, player VARCHAR)
What position that has a Height larger than 179, and Player is Ezgi Arslan?
SELECT SUM(shirt_no) FROM table_name_11 WHERE position = "setter" AND nationality = "italy" AND height > 172
CREATE TABLE table_name_11 (shirt_no INTEGER, height VARCHAR, position VARCHAR, nationality VARCHAR)
What is the shirt no with a position of setter, a nationality of Italy, and height larger than 172?
SELECT player FROM table_name_36 WHERE position = "middle blocker" AND nationality = "turkey" AND shirt_no = 8
CREATE TABLE table_name_36 (player VARCHAR, shirt_no VARCHAR, position VARCHAR, nationality VARCHAR)
What player that has a position of middle blocker, a Nationality of Turkey, and shirt no is 8?
SELECT player FROM table_name_90 WHERE nationality = "turkey" AND height < 183 AND shirt_no < 19 AND birth_date = "june 27, 1993 (age20)"
CREATE TABLE table_name_90 (player VARCHAR, birth_date VARCHAR, shirt_no VARCHAR, nationality VARCHAR, height VARCHAR)
What player that has a Nationality of Turkey, a Height smaller than 183, a shirt no smaller than 19, and a birth date of June 27, 1993 (age20)?
SELECT nation FROM table_name_3 WHERE gold = 29
CREATE TABLE table_name_3 (nation VARCHAR, gold VARCHAR)
Which nation won 29 gold medals?
SELECT MIN(bronze) FROM table_name_51 WHERE total = 1 AND rank = "12" AND gold < 1
CREATE TABLE table_name_51 (bronze INTEGER, gold VARCHAR, total VARCHAR, rank VARCHAR)
What is the fewest number of bronze medals won among the nations ranked 12 that won no gold medals and 1 medal overall?
SELECT fcc_info FROM table_name_98 WHERE frequency_mhz > 89.3 AND city_of_license = "portales, new mexico"
CREATE TABLE table_name_98 (fcc_info VARCHAR, frequency_mhz VARCHAR, city_of_license VARCHAR)
What is the FCC info for the translator with frequency over 89.3MHz and licensd in Portales, New Mexico?
SELECT ship FROM table_name_30 WHERE location = "devonport, devon"
CREATE TABLE table_name_30 (ship VARCHAR, location VARCHAR)
Which ship was launched from Devonport, Devon?
SELECT country FROM table_name_41 WHERE builder = "royal dockyard" AND ship = "pegasus"
CREATE TABLE table_name_41 (country VARCHAR, builder VARCHAR, ship VARCHAR)
What country was the Pegasus, build by Royal Dockyard, from?
SELECT builder FROM table_name_60 WHERE country = "united kingdom" AND ship = "gannet"
CREATE TABLE table_name_60 (builder VARCHAR, country VARCHAR, ship VARCHAR)
Who was the builder of Gannet from the United Kingdom?
SELECT builder FROM table_name_12 WHERE ship = "nor"
CREATE TABLE table_name_12 (builder VARCHAR, ship VARCHAR)
Who was the builder of Nor?
SELECT builder FROM table_name_37 WHERE country = "norway" AND ship = "brage"
CREATE TABLE table_name_37 (builder VARCHAR, country VARCHAR, ship VARCHAR)
Who was the builder of Brage from Norway?
SELECT country FROM table_name_23 WHERE builder = "karljohansverns verft" AND ship = "brage"
CREATE TABLE table_name_23 (country VARCHAR, builder VARCHAR, ship VARCHAR)
What country was Brage, built by karljohansverns verft, from?
SELECT MIN(silver) FROM table_name_31 WHERE total = 11 AND gold < 8
CREATE TABLE table_name_31 (silver INTEGER, total VARCHAR, gold VARCHAR)
Which Silver has a Total of 11, and a Gold smaller than 8?
SELECT MIN(silver) FROM table_name_37 WHERE total = 1 AND rank = "12"
CREATE TABLE table_name_37 (silver INTEGER, total VARCHAR, rank VARCHAR)
Which Silver has a Total of 1, and a Rank of 12?
SELECT ihsaa_football_class FROM table_name_71 WHERE school = "wood memorial"
CREATE TABLE table_name_71 (ihsaa_football_class VARCHAR, school VARCHAR)
Which IHSAA Football Class has a School of wood memorial?
SELECT ihsaa_football_class FROM table_name_14 WHERE county = "77 sullivan" AND school = "union dugger"
CREATE TABLE table_name_14 (ihsaa_football_class VARCHAR, county VARCHAR, school VARCHAR)
Which IHSAA Football Class has a County of 77 sullivan, and a School of union dugger?
SELECT ihsaa_football_class FROM table_name_17 WHERE enrollment = 406
CREATE TABLE table_name_17 (ihsaa_football_class VARCHAR, enrollment VARCHAR)
Which IHSAA Football Class has an Enrollment of 406?
SELECT MAX(size) FROM table_name_69 WHERE county = "62 perry"
CREATE TABLE table_name_69 (size INTEGER, county VARCHAR)
Which Size has a County of 62 perry?
SELECT ihsaa_class FROM table_name_84 WHERE size > 511
CREATE TABLE table_name_84 (ihsaa_class VARCHAR, size INTEGER)
Which IHSAA Class has a Size larger than 511?
SELECT ihsaa_class FROM table_name_4 WHERE school = "mitchell"
CREATE TABLE table_name_4 (ihsaa_class VARCHAR, school VARCHAR)
Which IHSAA Class has a School of mitchell?
SELECT county FROM table_name_95 WHERE size > 258 AND mascot = "commodores"
CREATE TABLE table_name_95 (county VARCHAR, size VARCHAR, mascot VARCHAR)
Which County has a Size larger than 258, and a Mascot of commodores?
SELECT lineup FROM table_name_33 WHERE match = "2"
CREATE TABLE table_name_33 (lineup VARCHAR, match VARCHAR)
What was her place in the lineup on match 2?
SELECT record FROM table_name_55 WHERE date = "2/17/1974"
CREATE TABLE table_name_55 (record VARCHAR, date VARCHAR)
What is the record of the game played on 2/17/1974?
SELECT stadium FROM table_name_91 WHERE opposition = "79,122"
CREATE TABLE table_name_91 (stadium VARCHAR, opposition VARCHAR)
Which stadium had the opposition of 79,122?
SELECT notes FROM table_name_52 WHERE rank = 1
CREATE TABLE table_name_52 (notes VARCHAR, rank VARCHAR)
What are the notes of the number 1 rank?
SELECT rank FROM table_name_30 WHERE notes = "fb" AND time = "5:54.57"
CREATE TABLE table_name_30 (rank VARCHAR, notes VARCHAR, time VARCHAR)
What's the rank if the time was 5:54.57 and FB in notes?
SELECT rowers FROM table_name_96 WHERE time = "5:54.57"
CREATE TABLE table_name_96 (rowers VARCHAR, time VARCHAR)
Who are the rowers with the time of 5:54.57?
SELECT notes FROM table_name_31 WHERE country = "united states"
CREATE TABLE table_name_31 (notes VARCHAR, country VARCHAR)
What are the notes of the United States?
SELECT gold FROM table_name_28 WHERE bronze > 1 AND total < 10 AND silver = 3
CREATE TABLE table_name_28 (gold VARCHAR, silver VARCHAR, bronze VARCHAR, total VARCHAR)
What is the gold for a bronze larger than 1, with a total smaller than 10, and a silver of 3?
SELECT AVG(total) FROM table_name_23 WHERE silver > 2 AND gold > 1 AND nation = "total"
CREATE TABLE table_name_23 (total INTEGER, nation VARCHAR, silver VARCHAR, gold VARCHAR)
What is the average total when the silver is larger than 2, and a gold larger than 1, and a nation of total?
SELECT MIN(total) FROM table_name_5 WHERE rank = "11" AND bronze < 1
CREATE TABLE table_name_5 (total INTEGER, rank VARCHAR, bronze VARCHAR)
When the rank is 11, and bronze a smaller than 1 what is the lowest total?
SELECT AVG(a_score) FROM table_name_50 WHERE b_score = 9.05 AND position > 6
CREATE TABLE table_name_50 (a_score INTEGER, b_score VARCHAR, position VARCHAR)
What was the A Score when the B Score was 9.05, and position was larger than 6?
SELECT AVG(total) FROM table_name_70 WHERE b_score = 9.15 AND gymnast = "cheng fei ( chn )"
CREATE TABLE table_name_70 (total INTEGER, b_score VARCHAR, gymnast VARCHAR)
What is the total when the B Score was 9.15 for Cheng Fei ( chn )?
SELECT AVG(position) FROM table_name_47 WHERE b_score < 9.05 AND total = 15.275 AND a_score > 6.4
CREATE TABLE table_name_47 (position INTEGER, a_score VARCHAR, b_score VARCHAR, total VARCHAR)
What was their position when the score of B was less than 9.05, a total was 15.275, and A Score larger than 6.4?
SELECT position FROM table_name_57 WHERE b_score > 8.975 AND gymnast = "ekaterina kramarenko ( rus )"
CREATE TABLE table_name_57 (position VARCHAR, b_score VARCHAR, gymnast VARCHAR)
What is their position when the b score is more than 8.975 for Ekaterina Kramarenko ( rus )?
SELECT AVG(year) FROM table_name_16 WHERE genre = "third-person shooter"
CREATE TABLE table_name_16 (year INTEGER, genre VARCHAR)
What year had Third-Person Shooter?
SELECT MAX(year) FROM table_name_93 WHERE game = "portal"
CREATE TABLE table_name_93 (year INTEGER, game VARCHAR)
What year was Portal?
SELECT developer_s_ FROM table_name_22 WHERE genre = "adventure"
CREATE TABLE table_name_22 (developer_s_ VARCHAR, genre VARCHAR)
Who was the developer(s) of the genre Adventure?
SELECT platform_s_ FROM table_name_80 WHERE genre = "rpg"
CREATE TABLE table_name_80 (platform_s_ VARCHAR, genre VARCHAR)
What's the platform of the genre RPG?
SELECT genre FROM table_name_41 WHERE developer_s_ = "lionhead studios"
CREATE TABLE table_name_41 (genre VARCHAR, developer_s_ VARCHAR)
What's the genre of developer(s) Lionhead Studios?
SELECT year FROM table_name_57 WHERE genre = "adventure"
CREATE TABLE table_name_57 (year VARCHAR, genre VARCHAR)
What's year was the genre Adventure?
SELECT elevated FROM table_name_75 WHERE cardinalatial_order_and_title = "cardinal-deacon of s. giorgio in velabro"
CREATE TABLE table_name_75 (elevated VARCHAR, cardinalatial_order_and_title VARCHAR)
When was Cardinal-Deacon of S. Giorgio in Velabro elevated?
SELECT cardinalatial_order_and_title FROM table_name_84 WHERE elector = "pedro martínez de luna y gotor"
CREATE TABLE table_name_84 (cardinalatial_order_and_title VARCHAR, elector VARCHAR)
What is the Cardinalatial order and title that Pedro Martínez de Luna y Gotor elevated?
SELECT nationality FROM table_name_49 WHERE cardinalatial_order_and_title = "cardinal-priest of ss. xii apostoli"
CREATE TABLE table_name_49 (nationality VARCHAR, cardinalatial_order_and_title VARCHAR)
What is the nationality of the elector withe the Cardinalatial order and title of Cardinal-Priest of Ss. XII Apostoli?
SELECT tournament FROM table_name_47 WHERE runner_s__up = "jack nicklaus"
CREATE TABLE table_name_47 (tournament VARCHAR, runner_s__up VARCHAR)
What Tournament had Jack Nicklaus as Runner(s)-up?
SELECT date FROM table_name_55 WHERE winning_score = −9(65 - 71 - 68 - 67 = 271)
CREATE TABLE table_name_55 (date VARCHAR, winning_score VARCHAR)
What is the Date of the Tournament with a Winning score of −9 (65-71-68-67=271)?
SELECT winning_score FROM table_name_15 WHERE runner_s__up = "jack nicklaus"
CREATE TABLE table_name_15 (winning_score VARCHAR, runner_s__up VARCHAR)
What is the Winning Score of the Tournament with Jack Nicklaus as Runner(s)-up?
SELECT runner_s__up FROM table_name_70 WHERE tournament = "kemper open"
CREATE TABLE table_name_70 (runner_s__up VARCHAR, tournament VARCHAR)
What is the Runner(s)-up of the Kemper Open Tournament?
SELECT week FROM table_name_33 WHERE date = "december 19, 2004"
CREATE TABLE table_name_33 (week VARCHAR, date VARCHAR)
What week has December 19, 2004 as the date?
SELECT MAX(week) FROM table_name_74 WHERE tv_time = "espn 8:30pm"
CREATE TABLE table_name_74 (week INTEGER, tv_time VARCHAR)
What is the highest week that has espn 8:30pm as the TV time?
SELECT result FROM table_name_36 WHERE opponent = "miami dolphins"
CREATE TABLE table_name_36 (result VARCHAR, opponent VARCHAR)
What result has miami dolphins as the opponent?
SELECT time FROM table_name_88 WHERE heat = 3 AND lane > 3 AND nationality = "chinese taipei"
CREATE TABLE table_name_88 (time VARCHAR, nationality VARCHAR, heat VARCHAR, lane VARCHAR)
What is the Time of the swimmer from Chinese Taipei in Heat 3?
SELECT AVG(dolphins_points) FROM table_name_88 WHERE opponent = "buffalo bills" AND attendance < 69 OFFSET 313
CREATE TABLE table_name_88 (dolphins_points INTEGER, opponent VARCHAR, attendance VARCHAR)
What's the Dolphin Points when the attendance was less than 69,313 and had an opponent of the Buffalo Bills?
SELECT MIN(game) FROM table_name_53 WHERE attendance = 71 OFFSET 962
CREATE TABLE table_name_53 (game INTEGER, attendance VARCHAR)
What's the game with an attendance of 71,962?
SELECT Final AS week_12 FROM table_name_8 WHERE week_1 = "deepak p rahul" AND week_3 = "amit carol"
CREATE TABLE table_name_8 (Final VARCHAR, week_1 VARCHAR, week_3 VARCHAR)
What was the week 12 standing for the housemate that nominated Deepak P Rahul in week 1 and Amit Carol in week 3?
SELECT week_6 FROM table_name_60 WHERE week_3 = "kashmera rakhi" AND week_1 = "amit bobby"
CREATE TABLE table_name_60 (week_6 VARCHAR, week_3 VARCHAR, week_1 VARCHAR)
Who did the housemate that nominated Kashmera Rakhi in week 3 and Amit Bobby in week 1 nominate in week 6?
SELECT week_8 FROM table_name_52 WHERE week_1 = "carol roopali"
CREATE TABLE table_name_52 (week_8 VARCHAR, week_1 VARCHAR)
Who did the housemate that nominated Carol Roopali in week 1 nominate in week 8?
SELECT ihsaa_class FROM table_name_92 WHERE ihsaa_football_class = "aa" AND school = "centerville"
CREATE TABLE table_name_92 (ihsaa_class VARCHAR, ihsaa_football_class VARCHAR, school VARCHAR)
What is the IHSAA class of Centerville, which plays IHSAA class AA football?
SELECT location FROM table_name_99 WHERE ihsaa_football_class = "aa" AND school = "winchester community"
CREATE TABLE table_name_99 (location VARCHAR, ihsaa_football_class VARCHAR, school VARCHAR)
Winchester Community school, which plays IHSAA class AA football, is located where?
SELECT ihsaa_class FROM table_name_51 WHERE size < 400 AND mascot = "tigers"
CREATE TABLE table_name_51 (ihsaa_class VARCHAR, size VARCHAR, mascot VARCHAR)
What is the IHSAA class of the school with less than 400 students and a mascot of the Tigers?
SELECT county FROM table_name_81 WHERE ihsaa_football_class = "a" AND size < 301
CREATE TABLE table_name_81 (county VARCHAR, ihsaa_football_class VARCHAR, size VARCHAR)
What county has a school with less than 301 students and plays IHSAA class A football?
SELECT MIN(game) FROM table_name_53 WHERE score = "102-104"
CREATE TABLE table_name_53 (game INTEGER, score VARCHAR)
What is the lowest game when the score is 102-104?
SELECT score FROM table_name_49 WHERE game = 4
CREATE TABLE table_name_49 (score VARCHAR, game VARCHAR)
what is the score for game 4?
SELECT series FROM table_name_88 WHERE game = 4
CREATE TABLE table_name_88 (series VARCHAR, game VARCHAR)
what is the series for game 4?
SELECT SUM(pendle) FROM table_name_47 WHERE burnley < 0
CREATE TABLE table_name_47 (pendle INTEGER, burnley INTEGER)
Which Pendle has a Burnley smaller than 0?
SELECT COUNT(rossendale) FROM table_name_95 WHERE fylde < 0
CREATE TABLE table_name_95 (rossendale VARCHAR, fylde INTEGER)
How much Rossendale has a Fylde smaller than 0?
SELECT SUM(hyndburn) FROM table_name_52 WHERE fylde > 3
CREATE TABLE table_name_52 (hyndburn INTEGER, fylde INTEGER)
How much Hyndburn has a Fylde larger than 3?
SELECT SUM(burnley) FROM table_name_97 WHERE fylde < 1 AND rossendale > 0
CREATE TABLE table_name_97 (burnley INTEGER, fylde VARCHAR, rossendale VARCHAR)
How much Burnley has a Fylde smaller than 1, and a Rossendale larger than 0?
SELECT years FROM table_name_45 WHERE soap_opera = "un posto al sole" AND actor = "riccardo polizzy carbonelli"
CREATE TABLE table_name_45 (years VARCHAR, soap_opera VARCHAR, actor VARCHAR)
What are the years that have un posto al sole as the soap opera, with riccardo polizzy carbonelli as the actor?
SELECT years FROM table_name_26 WHERE duration = "18 years" AND actor = "patrizio rispo"
CREATE TABLE table_name_26 (years VARCHAR, duration VARCHAR, actor VARCHAR)
What years have a duration of 18 years, and patrizio rispo as the actor?
SELECT years FROM table_name_33 WHERE duration = "15 years" AND character = "giulia poggi"
CREATE TABLE table_name_33 (years VARCHAR, duration VARCHAR, character VARCHAR)
What are the years that have a duration of 15 years and giulia poggi as the character?
SELECT years FROM table_name_18 WHERE actor = "claudia ruffo"
CREATE TABLE table_name_18 (years VARCHAR, actor VARCHAR)
What years have claudia ruffo as the actor?
SELECT duration FROM table_name_42 WHERE actor = "pietro genuardi"
CREATE TABLE table_name_42 (duration VARCHAR, actor VARCHAR)
What is the duration that has pietro genuardi as the actor?
SELECT soap_opera FROM table_name_84 WHERE duration = "13 years" AND actor = "marina giulia cavalli"
CREATE TABLE table_name_84 (soap_opera VARCHAR, duration VARCHAR, actor VARCHAR)
What is the soap opera that has a duration of 13 years, with marina giulia cavalli as the actor?
SELECT MIN(attendance) FROM table_name_76 WHERE date = "december 14, 1958" AND week > 12
CREATE TABLE table_name_76 (attendance INTEGER, date VARCHAR, week VARCHAR)
What is the lowest attendance for December 14, 1958 after week 12?
SELECT COUNT(week) FROM table_name_38 WHERE opponent = "chicago bears"
CREATE TABLE table_name_38 (week VARCHAR, opponent VARCHAR)
What is the total for the week in the game against the Chicago Bears
SELECT MAX(attendance) FROM table_name_40 WHERE date = "december 14, 1958" AND week > 12
CREATE TABLE table_name_40 (attendance INTEGER, date VARCHAR, week VARCHAR)
What is the highest attendance for December 14, 1958 for after week 12