answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT MAX(pick__number) FROM table_name_94 WHERE player = "rhett mclane"
What is Rhett Mclane's highest pick number?
CREATE TABLE table_name_94 (pick__number INTEGER, player VARCHAR)
SELECT week FROM table_name_37 WHERE tv_time = "bye"
WHAT WEEK HAS A TV TIME OF BYE?
CREATE TABLE table_name_37 (week VARCHAR, tv_time VARCHAR)
SELECT score FROM table_27698941_6 WHERE record = "3–12"
What is the score for the game with the record of 3–12?
CREATE TABLE table_27698941_6 (score VARCHAR, record VARCHAR)
SELECT borough_or_a[›_] AS _census_area FROM table_name_81 WHERE name_a[›_] = "jerome lake dam"
what is the borough or A[›] Census area when the Name A[›] is jerome lake dam?
CREATE TABLE table_name_81 (borough_or_a VARCHAR, ›_ VARCHAR, name_a VARCHAR)
SELECT description FROM table_name_61 WHERE livery = "ews"
What description does Livery of ews have?
CREATE TABLE table_name_61 (description VARCHAR, livery VARCHAR)
SELECT YEAR FROM concert GROUP BY YEAR ORDER BY COUNT(*) DESC LIMIT 1
Which year has most number of concerts?
CREATE TABLE concert (YEAR VARCHAR)
SELECT city_country FROM table_name_51 WHERE venue = "adelaide oval"
Name the place where adelaide oval is
CREATE TABLE table_name_51 (city_country VARCHAR, venue VARCHAR)
SELECT callsign FROM table_24673888_1 WHERE station_type = "Relay" AND ch__number = "TV-2"
What is the callsign that has a station type of relay and a channel number of TV-2?
CREATE TABLE table_24673888_1 (callsign VARCHAR, station_type VARCHAR, ch__number VARCHAR)
SELECT country FROM table_name_60 WHERE place = "t8" AND score = 70 - 67 - 71 = 208
What is the Country of the T8 Place Player with a Score of 70-67-71=208?
CREATE TABLE table_name_60 (country VARCHAR, place VARCHAR, score VARCHAR)
SELECT MIN(gold) FROM table_name_52 WHERE silver = 0 AND bronze = 2
What is the lowest Gold, when Silver is 0, and when Bronze is 2?
CREATE TABLE table_name_52 (gold INTEGER, silver VARCHAR, bronze VARCHAR)
SELECT date_of_appointment FROM table_24172157_3 WHERE team = "Liverpool" AND incoming_manager = "Roy Hodgson"
What was the date of appointment for incoming manager Roy Hodgson and the team is Liverpool?
CREATE TABLE table_24172157_3 (date_of_appointment VARCHAR, team VARCHAR, incoming_manager VARCHAR)
SELECT SUM(wins) FROM table_name_15 WHERE events = 13 AND top_5 < 1
what is the sum of wins when events is 13 and top-5 is less than 1?
CREATE TABLE table_name_15 (wins INTEGER, events VARCHAR, top_5 VARCHAR)
SELECT production_code FROM table_20613292_1 WHERE written_by = "Kirker Butler" AND directed_by = "Dan Povenmire"
What's the production code of the episode written by Kirker Butler and directed by Dan Povenmire?
CREATE TABLE table_20613292_1 (production_code VARCHAR, written_by VARCHAR, directed_by VARCHAR)
SELECT COUNT(position) FROM table_name_1 WHERE lost < 1
What was the position with the total number less than 1?
CREATE TABLE table_name_1 (position VARCHAR, lost INTEGER)
SELECT COUNT(outcome) FROM table_2201724_2 WHERE championship = "French championships"
How many different outcomes of the French Championships were there?
CREATE TABLE table_2201724_2 (outcome VARCHAR, championship VARCHAR)
SELECT AVG(seasons) FROM table_name_65 WHERE name = "terri drake" AND lost < 9
What is the average number of seasons for Terri Drake who lost less than 9?
CREATE TABLE table_name_65 (seasons INTEGER, name VARCHAR, lost VARCHAR)
SELECT host_team FROM table_name_93 WHERE date = "january 1 (2006)"
Name the host team for january 1 (2006)
CREATE TABLE table_name_93 (host_team VARCHAR, date VARCHAR)
SELECT college_junior_club_team__league_ FROM table_name_58 WHERE nationality = "switzerland"
Which College/junior/club team (league) was the player from Switzerland from?
CREATE TABLE table_name_58 (college_junior_club_team__league_ VARCHAR, nationality VARCHAR)
SELECT AVG(off_reb) FROM table_name_29 WHERE ftm_fta = "16-17" AND steals < 8
What was the average of the Off Reb with steals less than 8 and FTM-FTA of 16-17?
CREATE TABLE table_name_29 (off_reb INTEGER, ftm_fta VARCHAR, steals VARCHAR)
SELECT T2.Player FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T1.Country_name = "Indonesia"
Which players are from Indonesia?
CREATE TABLE country (Country_id VARCHAR, Country_name VARCHAR); CREATE TABLE match_season (Player VARCHAR, Country VARCHAR)
SELECT replaced_by FROM table_name_87 WHERE team = "bournemouth" AND outgoing_manager = "kevin bond"
who is the replacement when the team is bournemouth and the outgoing manager is kevin bond?
CREATE TABLE table_name_87 (replaced_by VARCHAR, team VARCHAR, outgoing_manager VARCHAR)
SELECT margin_of_victory FROM table_name_48 WHERE runner_s__up = "justin rose"
What is the margin of victory in the race where Justin Rose was the runner-up?
CREATE TABLE table_name_48 (margin_of_victory VARCHAR, runner_s__up VARCHAR)
SELECT MAX(gold) FROM table_name_83 WHERE silver < 2 AND bronze < 4
What is the highest number of gold medals won by a team that won fewer than 2 silver and fewer than 4 bronze medals?
CREATE TABLE table_name_83 (gold INTEGER, silver VARCHAR, bronze VARCHAR)
SELECT week FROM table_name_18 WHERE tournament = "monte carlo"
Which Week has a Tournament of monte carlo?
CREATE TABLE table_name_18 (week VARCHAR, tournament VARCHAR)
SELECT chapter FROM table_name_14 WHERE founding_date > 2012
Which chapter was founded later than 2012?
CREATE TABLE table_name_14 (chapter VARCHAR, founding_date INTEGER)
SELECT COUNT(result) FROM table_10646790_2 WHERE record = "0-4"
How many results are there for the 0-4 record?
CREATE TABLE table_10646790_2 (result VARCHAR, record VARCHAR)
SELECT left_bloc FROM table_1463383_1 WHERE social_democratic = "28.7%"
What are all percentages of Left Block when there is a 28.7% Social Democratic?
CREATE TABLE table_1463383_1 (left_bloc VARCHAR, social_democratic VARCHAR)
SELECT country FROM table_name_82 WHERE play = "electra and orestes, the trial"
Which Country is the Play Electra and Orestes, The Trial from?
CREATE TABLE table_name_82 (country VARCHAR, play VARCHAR)
SELECT time_retired FROM table_name_50 WHERE laps = "66" AND constructor = "jordan - peugeot" AND grid = "5"
What is the Time/Retired value for constructor Jordan - Peugeot with 66 laps and grid value 5?
CREATE TABLE table_name_50 (time_retired VARCHAR, grid VARCHAR, laps VARCHAR, constructor VARCHAR)
SELECT score FROM table_name_18 WHERE opponent = "phoenix suns"
What was the score of the game against the phoenix suns?
CREATE TABLE table_name_18 (score VARCHAR, opponent VARCHAR)
SELECT league FROM table_name_20 WHERE sport = "football" AND venue = "stadion polonii"
Sport of football, and a Venue of stadion polonii is what league?
CREATE TABLE table_name_20 (league VARCHAR, sport VARCHAR, venue VARCHAR)
SELECT MIN(market_value), MAX(market_value), AVG(market_value) FROM company
Show minimum, maximum, and average market value for all companies.
CREATE TABLE company (market_value INTEGER)
SELECT title FROM albums ORDER BY title
List every album ordered by album title in ascending order.
CREATE TABLE albums (title VARCHAR)
SELECT MAX(reign) FROM table_name_66 WHERE date = "march 10, 2007"
What's the highest reign on march 10, 2007?
CREATE TABLE table_name_66 (reign INTEGER, date VARCHAR)
SELECT COUNT(round) FROM table_name_25 WHERE position = "defensive tackle" AND overall < 149
In what round was a defensive tackle drafted with an overall pick smaller than 149?
CREATE TABLE table_name_25 (round VARCHAR, position VARCHAR, overall VARCHAR)
SELECT AVG(Horizontal_Bar_Points) FROM gymnast
What is the average horizontal bar points for all gymnasts?
CREATE TABLE gymnast (Horizontal_Bar_Points INTEGER)
SELECT MIN(year) FROM table_2380212_1 WHERE avg_attendance = 789
When was the average attendance 789?
CREATE TABLE table_2380212_1 (year INTEGER, avg_attendance VARCHAR)
SELECT church_name FROM table_name_38 WHERE year_built = 1600
Which church was built in 1600?
CREATE TABLE table_name_38 (church_name VARCHAR, year_built VARCHAR)
SELECT COUNT(score) FROM table_name_72 WHERE event = "36 arrow finals"
What is the total score for the 36 arrow finals event?
CREATE TABLE table_name_72 (score VARCHAR, event VARCHAR)
SELECT opponent FROM table_name_45 WHERE attendance = "19,423"
Who did the argonauts play against during the game that had 19,423 fans in attendance?
CREATE TABLE table_name_45 (opponent VARCHAR, attendance VARCHAR)
SELECT singer FROM table_2528382_5 WHERE movie_album = "Amar Deep"
Who sang for the movie Amar Deep?
CREATE TABLE table_2528382_5 (singer VARCHAR, movie_album VARCHAR)
SELECT opponent FROM table_name_2 WHERE event = "sb 24 - return of the heavyweights 2" AND method = "tko (knee and punches)"
Which opponent's event was sb 24 - return of the heavyweights 2, and had a method of TKO (knee and punches)?
CREATE TABLE table_name_2 (opponent VARCHAR, event VARCHAR, method VARCHAR)
SELECT tournament_winner FROM table_22733636_1 WHERE regular_season_winner = "Princeton"
When Princeton was the regular season winner, who was the tournament winner?
CREATE TABLE table_22733636_1 (tournament_winner VARCHAR, regular_season_winner VARCHAR)
SELECT COUNT(interview) FROM table_name_23 WHERE state = "iowa" AND evening_gown < 9.625
What is the total interviews of Iowa, and with an evening gown smaller than 9.625?
CREATE TABLE table_name_23 (interview VARCHAR, state VARCHAR, evening_gown VARCHAR)
SELECT candidates FROM table_1341586_44 WHERE incumbent = "Henry B. Gonzalez"
Who are all the candidates vying for Henry B. Gonzalez' seat?
CREATE TABLE table_1341586_44 (candidates VARCHAR, incumbent VARCHAR)
SELECT MAX(census_year) FROM table_1532779_1
What is the most recent census year?
CREATE TABLE table_1532779_1 (census_year INTEGER)
SELECT MAX(round) FROM table_29686983_1 WHERE pole_position = "Fabien Foret"
what is the maximum round and fabien foret had the pole position?
CREATE TABLE table_29686983_1 (round INTEGER, pole_position VARCHAR)
SELECT T1.student_id, T2.first_name FROM Assessment_Notes AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id ORDER BY COUNT(*) DESC LIMIT 1
Find the id and first name of the student that has the most number of assessment notes?
CREATE TABLE Students (first_name VARCHAR, student_id VARCHAR); CREATE TABLE Assessment_Notes (student_id VARCHAR)
SELECT MAX(laps) FROM table_name_31 WHERE driver = "chris amon" AND grid < 4
What was CHris Amon's highest lap when his grid was 4?
CREATE TABLE table_name_31 (laps INTEGER, driver VARCHAR, grid VARCHAR)
SELECT COUNT(train_number) FROM table_29770377_1 WHERE route_via = "Trivandrum, Ernakulam, NewDelhi"
How many trains are there for the route via trivandrum, ernakulam, newdelhi?
CREATE TABLE table_29770377_1 (train_number VARCHAR, route_via VARCHAR)
SELECT game FROM table_name_2 WHERE date = "september 12"
Which game was on September 12?
CREATE TABLE table_name_2 (game VARCHAR, date VARCHAR)
SELECT MIN(position) FROM table_name_45 WHERE points > 40 AND wins = 16 AND loses < 3
What is the lowest positioned club with points greater than 40, 16 wins and losses less than 3?
CREATE TABLE table_name_45 (position INTEGER, loses VARCHAR, points VARCHAR, wins VARCHAR)
SELECT MIN(grid) FROM table_name_99 WHERE time_retired = "+ 1 lap" AND points < 7
What is the grid associated with a Time/Retired of + 1 lap, and under 7 points?
CREATE TABLE table_name_99 (grid INTEGER, time_retired VARCHAR, points VARCHAR)
SELECT MAX(rank) FROM table_name_49 WHERE u_17_goals = 9
What is the highest Rank, when U-17 Goals is "9"?
CREATE TABLE table_name_49 (rank INTEGER, u_17_goals VARCHAR)
SELECT AVG(week) FROM table_name_96 WHERE result = "w 21–7"
Result of w 21–7 had what average week?
CREATE TABLE table_name_96 (week INTEGER, result VARCHAR)
SELECT SUM(quantity) FROM table_name_76 WHERE type = "2-4-2t"
What is the Quantity of Type 2-4-2t?
CREATE TABLE table_name_76 (quantity INTEGER, type VARCHAR)
SELECT AVG(Enrollment) FROM school
What is the average enrollment of schools?
CREATE TABLE school (Enrollment INTEGER)
SELECT MAX(tourist_arrivals__2011___millions_) FROM table_name_92 WHERE tourism_competitiveness__2011___ttci_ = "3.82" AND tourism_receipts__2011___us$_per_arrival_ > 1 OFFSET 102
What is the highest tourism arrivals in 2011 in millions with a 3.82 tourism competitiveness in 2011 and more than 1,102 US$ per arrival in 2011 tourism receipts?
CREATE TABLE table_name_92 (tourist_arrivals__2011___millions_ INTEGER, tourism_competitiveness__2011___ttci_ VARCHAR, tourism_receipts__2011___us$_per_arrival_ VARCHAR)
SELECT theme FROM table_name_95 WHERE issue_price = "$89.95"
What is the Theme of the coin with an Issue Price of $89.95?
CREATE TABLE table_name_95 (theme VARCHAR, issue_price VARCHAR)
SELECT DISTINCT T2.semester_id FROM Degree_Programs AS T1 JOIN Student_Enrolment AS T2 ON T1.degree_program_id = T2.degree_program_id WHERE degree_summary_name = 'Master' INTERSECT SELECT DISTINCT T2.semester_id FROM Degree_Programs AS T1 JOIN Student_Enrolment AS T2 ON T1.degree_program_id = T2.degree_program_id WHERE degree_summary_name = 'Bachelor'
Find the semester when both Master students and Bachelor students got enrolled in.
CREATE TABLE Degree_Programs (degree_program_id VARCHAR); CREATE TABLE Student_Enrolment (semester_id VARCHAR, degree_program_id VARCHAR)
SELECT DISTINCT T1.name FROM physician AS T1 JOIN prescribes AS T2 ON T1.employeeid = T2.physician JOIN medication AS T3 ON T3.code = T2.medication WHERE T3.name = "Thesisin"
What is the names of the physicians who prescribe medication Thesisin?
CREATE TABLE physician (name VARCHAR, employeeid VARCHAR); CREATE TABLE prescribes (physician VARCHAR, medication VARCHAR); CREATE TABLE medication (code VARCHAR, name VARCHAR)
SELECT position FROM table_name_92 WHERE class = "a" AND laps = 125
The driver in class A with 125 laps is in what position?
CREATE TABLE table_name_92 (position VARCHAR, class VARCHAR, laps VARCHAR)
SELECT away_team AS score FROM table_name_80 WHERE home_team = "richmond"
What was the away team score when Richmond was the home team?
CREATE TABLE table_name_80 (away_team VARCHAR, home_team VARCHAR)
SELECT MIN(episode__number) FROM table_27927185_1 WHERE viewers__millions_ = "4.03"
What is the lowest episode number that had 4.03 million viewers?
CREATE TABLE table_27927185_1 (episode__number INTEGER, viewers__millions_ VARCHAR)
SELECT overall FROM table_name_12 WHERE nationality = "canada" AND round = 2
What is the total for Canada during round 2?
CREATE TABLE table_name_12 (overall VARCHAR, nationality VARCHAR, round VARCHAR)
SELECT height FROM table_12962773_13 WHERE year_born = 1980 AND position = "Center"
Name the height for the player born in 1980 and center?
CREATE TABLE table_12962773_13 (height VARCHAR, year_born VARCHAR, position VARCHAR)
SELECT share_of_seats FROM table_name_66 WHERE seats < 52 AND name = "sdp–liberal alliance" AND general_election = 1983
Which Share of seats has Seats smaller than 52, and a Name of sdp–liberal alliance, and a General election of 1983?
CREATE TABLE table_name_66 (share_of_seats VARCHAR, general_election VARCHAR, seats VARCHAR, name VARCHAR)
SELECT week_3 FROM table_name_95 WHERE week_4 = "gina blair"
What Week 3 has a Week 4 of gina blair?
CREATE TABLE table_name_95 (week_3 VARCHAR, week_4 VARCHAR)
SELECT MAX(pick__number) FROM table_name_97 WHERE college = "maryland-eastern shore"
What is the highest Pick # for the College of Maryland-Eastern Shore?
CREATE TABLE table_name_97 (pick__number INTEGER, college VARCHAR)
SELECT year FROM table_name_41 WHERE producer = "viva films" AND title = "magkapatid"
Which Year has a Producer of viva films, and a Title of magkapatid?
CREATE TABLE table_name_41 (year VARCHAR, producer VARCHAR, title VARCHAR)
SELECT AVG(round) FROM table_name_12 WHERE nhl_team = "edmonton oilers" AND player = "vyacheslav trukhno"
Which Round has a NHL team of edmonton oilers and a Player of vyacheslav trukhno?
CREATE TABLE table_name_12 (round INTEGER, nhl_team VARCHAR, player VARCHAR)
SELECT MAX(money___) AS $__ FROM table_name_22 WHERE player = "bernhard langer"
what is the highest money ($) for bernhard langer?
CREATE TABLE table_name_22 (money___ INTEGER, player VARCHAR)
SELECT MIN(total) FROM table_name_32 WHERE year_s__won = "1977"
What is the lowest total that has 1977 as the year (s) won?
CREATE TABLE table_name_32 (total INTEGER, year_s__won VARCHAR)
SELECT recipient FROM table_name_37 WHERE date = "4/9/02" AND award = "£3,000"
Who won an award of £3,000 on 4/9/02?
CREATE TABLE table_name_37 (recipient VARCHAR, date VARCHAR, award VARCHAR)
SELECT report FROM table_name_29 WHERE venue = "challenge stadium"
What is the report for Challenge Stadium?
CREATE TABLE table_name_29 (report VARCHAR, venue VARCHAR)
SELECT result FROM table_name_15 WHERE event = "strikeforce" AND method = "ko (spinning back fist)"
Which Result has the Event Strikeforce and the Method, Ko (spinning back fist)?
CREATE TABLE table_name_15 (result VARCHAR, event VARCHAR, method VARCHAR)
SELECT COUNT(attendance) FROM table_name_60 WHERE result = "t 24-24" AND week < 2
Name for me the total number in attendance for week before 2 and result of t 24-24
CREATE TABLE table_name_60 (attendance VARCHAR, result VARCHAR, week VARCHAR)
SELECT away_team AS score FROM table_name_49 WHERE venue = "princes park"
What is the away team's score at princes park?
CREATE TABLE table_name_49 (away_team VARCHAR, venue VARCHAR)
SELECT COUNT(against) FROM table_26677836_1 WHERE nation = "[[|]] (19)"
How many times is the nation [[|]] (19)?
CREATE TABLE table_26677836_1 (against VARCHAR, nation VARCHAR)
SELECT berlin FROM table_name_60 WHERE südwest = "fk pirmasens" AND west = "westfalia herne"
What was Berlin when fk pirmasens was Südwest and westfalia herne was west?
CREATE TABLE table_name_60 (berlin VARCHAR, südwest VARCHAR, west VARCHAR)
SELECT SUM(number_of_branches) FROM table_name_84 WHERE on_site_atms = 1548 AND off_site_atms > 3672
What is the total number of branches when the on-site ATMS is 1548, and the off-site ATMs is bigger than 3672?
CREATE TABLE table_name_84 (number_of_branches INTEGER, on_site_atms VARCHAR, off_site_atms VARCHAR)
SELECT MIN(founded) FROM table_name_42 WHERE nickname = "cougars"
Name the lowest Founded with the Name cougars?
CREATE TABLE table_name_42 (founded INTEGER, nickname VARCHAR)
SELECT COUNT(joined) FROM table_1973842_1 WHERE location = "Chestnut Hill, Massachusetts"
On how many different dates did schools from Chestnut Hill, Massachusetts join the conference?
CREATE TABLE table_1973842_1 (joined VARCHAR, location VARCHAR)
SELECT COUNT(athlete) FROM table_17085947_32 WHERE trans_1 = "0:26"
How many athletes completed a trans 1 within 0:26?
CREATE TABLE table_17085947_32 (athlete VARCHAR, trans_1 VARCHAR)
SELECT home_team AS score FROM table_name_23 WHERE venue = "western oval"
What is the home side's score at western oval?
CREATE TABLE table_name_23 (home_team VARCHAR, venue VARCHAR)
SELECT MIN(floors) FROM table_name_42 WHERE height__m_ = 116
What are the fewest floors for the building that has a height of 116 meters?
CREATE TABLE table_name_42 (floors INTEGER, height__m_ VARCHAR)
SELECT country FROM table_28498999_3 WHERE score = 72 - 63 - 71 - 68 = 274
What is the country for the score 72-63-71-68=274?
CREATE TABLE table_28498999_3 (country VARCHAR, score VARCHAR)
SELECT compression_ratio FROM table_name_41 WHERE engine = "302-2v windsor v8"
What is the compression ratio for the 302-2v Windsor v8 engine?
CREATE TABLE table_name_41 (compression_ratio VARCHAR, engine VARCHAR)
SELECT front_side_bus FROM table_name_68 WHERE model_number = "c7 1.5"
What is the Front Side Bus for Model Number c7 1.5?
CREATE TABLE table_name_68 (front_side_bus VARCHAR, model_number VARCHAR)
SELECT to_par FROM table_name_92 WHERE score = 73 - 70 - 70 - 65 = 278
What is the to par of the player with a 73-70-70-65=278 score?
CREATE TABLE table_name_92 (to_par VARCHAR, score VARCHAR)
SELECT tie_no FROM table_name_89 WHERE home_team = "everton"
Which Tie is from everton?
CREATE TABLE table_name_89 (tie_no VARCHAR, home_team VARCHAR)
SELECT COUNT(cuts_made) FROM table_name_74 WHERE top_10 > 1 AND wins > 0 AND top_5 > 2 AND events > 18
How many cuts made when the Top-10 is larger than 1, and the wins greater than 0, and a Top-5 greater than 2, when the events is greater than 18?
CREATE TABLE table_name_74 (cuts_made VARCHAR, events VARCHAR, top_5 VARCHAR, top_10 VARCHAR, wins VARCHAR)
SELECT engine FROM table_name_82 WHERE finish = "2nd"
What engine was used by the team the finished 2nd?
CREATE TABLE table_name_82 (engine VARCHAR, finish VARCHAR)
SELECT MIN(position) FROM table_27781212_1 WHERE points = 31
what is the minimum position with 31 points?
CREATE TABLE table_27781212_1 (position INTEGER, points VARCHAR)
SELECT SUM(channel) FROM table_name_65 WHERE network = "qubo"
What is the sum of channels for qubo network?
CREATE TABLE table_name_65 (channel INTEGER, network VARCHAR)
SELECT categorie FROM table_name_39 WHERE year = 2002 AND awards = "berlin international film festival"
What was the categorie in 2002 at the Berlin international Film Festival that Danielle Darrieux was in?
CREATE TABLE table_name_39 (categorie VARCHAR, year VARCHAR, awards VARCHAR)
SELECT event FROM table_name_32 WHERE city = "copenhagen"
What was the Event in the city of copenhagen?
CREATE TABLE table_name_32 (event VARCHAR, city VARCHAR)
SELECT score FROM table_name_38 WHERE location_attendance = "chicago stadium"
What was the score of the game at the Chicago Stadium?
CREATE TABLE table_name_38 (score VARCHAR, location_attendance VARCHAR)
SELECT COUNT(milepost) FROM table_10568553_1 WHERE street_names = "Anne Street"
How many mileposts are there on Anne Street?
CREATE TABLE table_10568553_1 (milepost VARCHAR, street_names VARCHAR)
SELECT title FROM table_name_54 WHERE role = "chris morrell"
In what movie did John Wayne play the role of Chris Morrell?
CREATE TABLE table_name_54 (title VARCHAR, role VARCHAR)