answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT hometown FROM table_11677691_8 WHERE school = "Friendship Collegiate Charter school"
Where is friendship collegiate charter school located
CREATE TABLE table_11677691_8 (hometown VARCHAR, school VARCHAR)
SELECT MAX(season) FROM table_29471472_1 WHERE team = "Autosport Academy"
What season was the team autosport academy?
CREATE TABLE table_29471472_1 (season INTEGER, team VARCHAR)
SELECT surname FROM table_name_12 WHERE first = "donovan"
What is donovan's surname?
CREATE TABLE table_name_12 (surname VARCHAR, first VARCHAR)
SELECT school FROM table_name_52 WHERE enrollment > 264 AND county = "46 la porte"
Which School has an Enrollment larger than 264, and a County of 46 la porte?
CREATE TABLE table_name_52 (school VARCHAR, enrollment VARCHAR, county VARCHAR)
SELECT COUNT(white__both_hispanic_and_non_hispanic_) FROM table_name_77 WHERE black__both_hispanic_and_non_hispanic_ = 9.9 AND hispanic__of_any_race_ < 99.5
What is the total number of white (Hispanic/Non-Hispanic) having a black (Hispanic/Non-Hispanic) of 9.9 and Hispanic under 99.5?
CREATE TABLE table_name_77 (white__both_hispanic_and_non_hispanic_ VARCHAR, black__both_hispanic_and_non_hispanic_ VARCHAR, hispanic__of_any_race_ VARCHAR)
SELECT females___percentage_ FROM table_14598_9 WHERE india_state_ut = "Maharashtra"
What is the percentage of females where in India and are maharashtra?
CREATE TABLE table_14598_9 (females___percentage_ VARCHAR, india_state_ut VARCHAR)
SELECT winner FROM table_28601467_1 WHERE result = "Scotland won on points table" AND runner_up = "[[|]] 4 points"
What are all the winning records when the result is Scotland won on points table and the Runner-Up result is [[|]] 4 points?
CREATE TABLE table_28601467_1 (winner VARCHAR, result VARCHAR, runner_up VARCHAR)
SELECT podiums FROM table_26473176_1 WHERE position = "12th"
What was the number of podiums in 12th position?
CREATE TABLE table_26473176_1 (podiums VARCHAR, position VARCHAR)
SELECT SUM(number_of_jews__wjc_) FROM table_name_73 WHERE metro_area = "los angeles" AND rank__arda_ > 2
How many number of WJC Jews in the Los Angeles Metro Area has a ARDA rank of more than 2?
CREATE TABLE table_name_73 (number_of_jews__wjc_ INTEGER, metro_area VARCHAR, rank__arda_ VARCHAR)
SELECT COUNT(grid) FROM table_name_10 WHERE driver = "heinz-harald frentzen"
I want the total number of Grids for heinz-harald frentzen
CREATE TABLE table_name_10 (grid VARCHAR, driver VARCHAR)
SELECT COUNT(silver) FROM table_name_61 WHERE rank = 2 AND total < 5
Which country is ranked number 2 and has less than 5 total medals?
CREATE TABLE table_name_61 (silver VARCHAR, rank VARCHAR, total VARCHAR)
SELECT record FROM table_14940519_1 WHERE result = "L 17–50"
Name the record for result of l 17–50
CREATE TABLE table_14940519_1 (record VARCHAR, result VARCHAR)
SELECT T1.first_name, T1.last_name FROM customers AS T1 JOIN invoices AS T2 ON T2.customer_id = T1.id ORDER BY T2.invoice_date DESC LIMIT 5
Find out 5 customers who most recently purchased something. List customers' first and last name.
CREATE TABLE customers (first_name VARCHAR, last_name VARCHAR, id VARCHAR); CREATE TABLE invoices (customer_id VARCHAR, invoice_date VARCHAR)
SELECT score FROM table_name_4 WHERE date = "26 may 1997"
Name the score for 26 may 1997
CREATE TABLE table_name_4 (score VARCHAR, date VARCHAR)
SELECT MIN(year) FROM table_name_71 WHERE venue = "casablanca" AND time = "20.63w"
What's the lowest Year with a Venue of casablanca and has the Time of 20.63w?
CREATE TABLE table_name_71 (year INTEGER, venue VARCHAR, time VARCHAR)
SELECT T2.pilot FROM operate_company AS T1 JOIN flight AS t2 ON T1.id = T2.company_id WHERE T1.principal_activities = 'Cargo' INTERSECT SELECT T2.pilot FROM operate_company AS T1 JOIN flight AS t2 ON T1.id = T2.company_id WHERE T1.principal_activities = 'Catering services'
List the name of the pilots who have flied for both a company that mainly provide 'Cargo' services and a company that runs 'Catering services' activities.
CREATE TABLE operate_company (id VARCHAR, principal_activities VARCHAR); CREATE TABLE flight (Id VARCHAR)
SELECT position FROM table_14342592_5 WHERE touchdowns = 4
Which positions have made 4 touchdowns?
CREATE TABLE table_14342592_5 (position VARCHAR, touchdowns VARCHAR)
SELECT first_name FROM customer WHERE NOT customer_id IN (SELECT customer_id FROM rental WHERE rental_date > '2005-08-23 02:06:01')
What are the first names of customers who have not rented any films after '2005-08-23 02:06:01'?
CREATE TABLE customer (first_name VARCHAR, customer_id VARCHAR, rental_date INTEGER); CREATE TABLE rental (first_name VARCHAR, customer_id VARCHAR, rental_date INTEGER)
SELECT date FROM table_name_23 WHERE attendance = 3686
When was the attendance 3686?
CREATE TABLE table_name_23 (date VARCHAR, attendance VARCHAR)
SELECT division___section FROM table_1816947_2 WHERE season = 2012
In which division did they compete in 2012?
CREATE TABLE table_1816947_2 (division___section VARCHAR, season VARCHAR)
SELECT MIN(week) FROM table_name_63 WHERE opponent = "san jose sabercats"
What was the earliest week that the Storm played the San Jose Sabercats?
CREATE TABLE table_name_63 (week INTEGER, opponent VARCHAR)
SELECT MAX(commenced_operations) FROM table_name_39 WHERE airline = "valuair"
Which Commenced operations have an Airline of valuair?
CREATE TABLE table_name_39 (commenced_operations INTEGER, airline VARCHAR)
SELECT category FROM table_name_99 WHERE year < 1992 AND nominated_work = "yerma"
What categories had a Nominated work of yerma before 1992?
CREATE TABLE table_name_99 (category VARCHAR, year VARCHAR, nominated_work VARCHAR)
SELECT MAX(att) FROM table_name_24 WHERE long = 27 AND yards > 27
Tell me the most Att with a long of 27 with yards longer than 27
CREATE TABLE table_name_24 (att INTEGER, long VARCHAR, yards VARCHAR)
SELECT COUNT(silver) FROM table_name_81 WHERE gold > 0 AND rank = "14" AND bronze > 4
What is number of silver for the country with more than 0 gold, rank of 14, and more than 4 bronze?
CREATE TABLE table_name_81 (silver VARCHAR, bronze VARCHAR, gold VARCHAR, rank VARCHAR)
SELECT position FROM table_1013129_1 WHERE nhl_team = "Hartford Whalers"
What positions do the hartford whalers nhl team have?
CREATE TABLE table_1013129_1 (position VARCHAR, nhl_team VARCHAR)
SELECT tickets_sold___available FROM table_name_26 WHERE gross_revenue__1979_ = "$665,232"
Which venue has Tickets Sold/ Available with a Gross Revenue (1979) of $665,232?
CREATE TABLE table_name_26 (tickets_sold___available VARCHAR, gross_revenue__1979_ VARCHAR)
SELECT jasons_team FROM table_23292220_6 WHERE episode = "6x02"
Name all of Jason's teams that appeared on episode 6x02?
CREATE TABLE table_23292220_6 (jasons_team VARCHAR, episode VARCHAR)
SELECT COUNT(total) FROM table_name_74 WHERE year_won < 1991 AND to_par < 14
What is the total of the player who won before 1991 and has a to par less than 14?
CREATE TABLE table_name_74 (total VARCHAR, year_won VARCHAR, to_par VARCHAR)
SELECT winning_driver FROM table_name_90 WHERE date = "30 may"
Who was the winning driver on 30 May?
CREATE TABLE table_name_90 (winning_driver VARCHAR, date VARCHAR)
SELECT MIN(losses) FROM table_name_9 WHERE ballarat_fl = "lake wendouree" AND wins < 9
What is the fewest losses that Ballarat FL of Lake Wendouree has when the wins are smaller than 9?
CREATE TABLE table_name_9 (losses INTEGER, ballarat_fl VARCHAR, wins VARCHAR)
SELECT venue FROM table_name_94 WHERE score = "1 goal" AND date = "august 27, 1980"
What is the venue when the score is 1 goal, and the date is August 27, 1980?
CREATE TABLE table_name_94 (venue VARCHAR, score VARCHAR, date VARCHAR)
SELECT COUNT(lap_two) FROM table_23018775_3 WHERE name = "Marco Andretti"
How many lap two's did marco andretti do?
CREATE TABLE table_23018775_3 (lap_two VARCHAR, name VARCHAR)
SELECT score FROM table_name_35 WHERE date = "october 9"
Name the score for october 9
CREATE TABLE table_name_35 (score VARCHAR, date VARCHAR)
SELECT wicket FROM table_name_43 WHERE runs__balls_ = "100 (45)"
Which wicket had a 100 (45) Runs (balls) amount?
CREATE TABLE table_name_43 (wicket VARCHAR, runs__balls_ VARCHAR)
SELECT bronze FROM table_name_45 WHERE year < 1994 AND silver = "south korea"
Which Bronze has a Year smaller than 1994, and a Silver of south korea?
CREATE TABLE table_name_45 (bronze VARCHAR, year VARCHAR, silver VARCHAR)
SELECT campus FROM table_name_79 WHERE year_opened = "1977"
What campus was opened in 1977?
CREATE TABLE table_name_79 (campus VARCHAR, year_opened VARCHAR)
SELECT age__as_of_1_february_2014_ FROM table_name_3 WHERE rank < 9 AND death_date = "24 january 2007"
Which Age (as of 1 February 2014) has a Rank smaller than 9, and a Death date of 24 january 2007?
CREATE TABLE table_name_3 (age__as_of_1_february_2014_ VARCHAR, rank VARCHAR, death_date VARCHAR)
SELECT general_classification FROM table_name_99 WHERE stage = "3"
What is the general classification of stage 3
CREATE TABLE table_name_99 (general_classification VARCHAR, stage VARCHAR)
SELECT details FROM table_name_31 WHERE points = 36
During which competition were a total of 36 points scored?
CREATE TABLE table_name_31 (details VARCHAR, points VARCHAR)
SELECT MIN(season) FROM table_26998693_1 WHERE podiums = 9
What was the earliest season where podium was 9?
CREATE TABLE table_26998693_1 (season INTEGER, podiums VARCHAR)
SELECT production_code FROM table_19068566_1 WHERE us_viewers__million_ = "3.39"
When there are 3.39 million u.s viewers what is the production code?
CREATE TABLE table_19068566_1 (production_code VARCHAR, us_viewers__million_ VARCHAR)
SELECT SUM(game) FROM table_name_19 WHERE score = "3–6"
Which Game has a Score of 3–6?
CREATE TABLE table_name_19 (game INTEGER, score VARCHAR)
SELECT MAX(ccbs) FROM table_name_52 WHERE launches_to_date = 4 AND payload_to_gto = "8,900kg"
What is the greatest CCBs with Launches to date of 4, and a Payload to GTO of 8,900kg?
CREATE TABLE table_name_52 (ccbs INTEGER, launches_to_date VARCHAR, payload_to_gto VARCHAR)
SELECT type FROM table_name_69 WHERE moving_from = "gimnàstic"
What is the type when they move from Gimnàstic?
CREATE TABLE table_name_69 (type VARCHAR, moving_from VARCHAR)
SELECT venue FROM table_name_94 WHERE date = "25 may 2008"
Name the venue for 25 may 2008
CREATE TABLE table_name_94 (venue VARCHAR, date VARCHAR)
SELECT intellitrace FROM table_name_10 WHERE extensions = "no" AND windows_phone_development = "no"
Which Intelli Trace has a No Extension and Windows Phone development of no?
CREATE TABLE table_name_10 (intellitrace VARCHAR, extensions VARCHAR, windows_phone_development VARCHAR)
SELECT visitor FROM table_name_78 WHERE score = "0-4"
Which Visitor has a Score of 0-4?
CREATE TABLE table_name_78 (visitor VARCHAR, score VARCHAR)
SELECT icelandic FROM table_name_47 WHERE norwegian__nynorsk_ = "kvitt/kvit"
Which Icelandic has a Norwegian (nynorsk) of kvitt/kvit?
CREATE TABLE table_name_47 (icelandic VARCHAR, norwegian__nynorsk_ VARCHAR)
SELECT duration FROM table_name_86 WHERE lok_sabha = "fifth"
What is the duration when Lok Sabha shows fifth?
CREATE TABLE table_name_86 (duration VARCHAR, lok_sabha VARCHAR)
SELECT COUNT(top_10) FROM table_2463383_2 WHERE avg_start = "37.3"
Name the total number of top 10 for avg start being 37.3
CREATE TABLE table_2463383_2 (top_10 VARCHAR, avg_start VARCHAR)
SELECT tie_no FROM table_name_39 WHERE score = "1–1"
What is the Tie no of the game with a Score of 1–1?
CREATE TABLE table_name_39 (tie_no VARCHAR, score VARCHAR)
SELECT score FROM table_name_37 WHERE points = 22 AND opponent = "capitals"
What is the score of the game with 22 points and the capitals as the opponent?
CREATE TABLE table_name_37 (score VARCHAR, points VARCHAR, opponent VARCHAR)
SELECT SUM(react) FROM table_name_65 WHERE country = "sweden" AND lane > 6
what is the react when the country is sweden and the lane is higher than 6?
CREATE TABLE table_name_65 (react INTEGER, country VARCHAR, lane VARCHAR)
SELECT MAX(year) FROM table_name_50 WHERE venue = "edmonton, canada"
Which Year is the highest one that has a Venue of edmonton, canada?
CREATE TABLE table_name_50 (year INTEGER, venue VARCHAR)
SELECT COUNT(comment) FROM table_17978052_2 WHERE borough_or_census_area = "Bethel (CA)"
How many comments are there in the Bethel (CA) Borough area?
CREATE TABLE table_17978052_2 (comment VARCHAR, borough_or_census_area VARCHAR)
SELECT country FROM table_name_27 WHERE money___$__ < 250 AND player = "henry picard"
Which country has a prize smaller than $250 and the player Henry Picard?
CREATE TABLE table_name_27 (country VARCHAR, money___$__ VARCHAR, player VARCHAR)
SELECT country FROM table_name_88 WHERE score = 70 - 71 - 68 - 72 = 281
what had a score of 70-71-68-72=281?
CREATE TABLE table_name_88 (country VARCHAR, score VARCHAR)
SELECT lowest FROM table_21824695_8 WHERE stadium = "Pohang Steelyard"
What is the lowest when pohang steelyard is the stadium?
CREATE TABLE table_21824695_8 (lowest VARCHAR, stadium VARCHAR)
SELECT school_year FROM table_14603212_1 WHERE class_aAA = Wimberley AND class_a = "Canadian"
If class a is canadian and class aaa is wimberley, which possible school years could this fall on?
CREATE TABLE table_14603212_1 (school_year VARCHAR, class_aAA VARCHAR, Wimberley VARCHAR, class_a VARCHAR)
SELECT date_of_vacancy FROM table_27091128_3 WHERE team = "Kartalspor"
When was the date of vacancy for the manager of Kartalspor?
CREATE TABLE table_27091128_3 (date_of_vacancy VARCHAR, team VARCHAR)
SELECT SUM(starts) FROM table_name_66 WHERE winnings = "$1,636,827" AND avg_start < 37
How many starts had an avg start of less than 37 and won $1,636,827?
CREATE TABLE table_name_66 (starts INTEGER, winnings VARCHAR, avg_start VARCHAR)
SELECT MAX(mccain_number) FROM table_20684390_1
What is the maximum McCain population turnout number?
CREATE TABLE table_20684390_1 (mccain_number INTEGER)
SELECT original_air_date FROM table_24018430_3 WHERE production_code = 216
what is the original air date for production code 216?
CREATE TABLE table_24018430_3 (original_air_date VARCHAR, production_code VARCHAR)
SELECT district FROM table_2668367_21 WHERE incumbent = "Thomas Wilson"
Name the distrct for thomas wilson
CREATE TABLE table_2668367_21 (district VARCHAR, incumbent VARCHAR)
SELECT artist FROM table_name_7 WHERE genre = "rock"
Who is the artist of the rock song?
CREATE TABLE table_name_7 (artist VARCHAR, genre VARCHAR)
SELECT distance FROM table_name_16 WHERE event = "breaststroke" AND location = "beijing, chn"
Which Distance has an Event of breaststroke, and a Location of beijing, chn?
CREATE TABLE table_name_16 (distance VARCHAR, event VARCHAR, location VARCHAR)
SELECT COUNT(tigrinya) FROM table_26919_6 WHERE arabic = "χams-"
Name the tigrinya for χams-
CREATE TABLE table_26919_6 (tigrinya VARCHAR, arabic VARCHAR)
SELECT t3.name FROM record AS t1 JOIN event AS t2 ON t1.event_id = t2.id JOIN stadium AS t3 ON t3.id = t2.stadium_id GROUP BY t2.stadium_id ORDER BY COUNT(*) DESC LIMIT 1
Find the names of stadiums that the most swimmers have been to.
CREATE TABLE record (event_id VARCHAR); CREATE TABLE stadium (name VARCHAR, id VARCHAR); CREATE TABLE event (stadium_id VARCHAR, id VARCHAR)
SELECT restaurant_name FROM table_name_85 WHERE designer = "robin de groot" AND location = "cobourg, on"
What is the name of the Cobourg, ON restaurant that had Robin de Groot as designer?
CREATE TABLE table_name_85 (restaurant_name VARCHAR, designer VARCHAR, location VARCHAR)
SELECT ryusuke_taguchi FROM table_name_53 WHERE jushin_liger = "liger (9:57)"
Name the ryusuke taguchi for Jushin Liger of liger (9:57)
CREATE TABLE table_name_53 (ryusuke_taguchi VARCHAR, jushin_liger VARCHAR)
SELECT home FROM table_name_27 WHERE game__number = 59
Which Home has a Game # of 59?
CREATE TABLE table_name_27 (home VARCHAR, game__number VARCHAR)
SELECT director FROM table_22020724_1 WHERE film_title_used_in_nomination = "Steam of Life"
Who directed the film titled 'Steam of Life'?
CREATE TABLE table_22020724_1 (director VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT home_team FROM table_name_42 WHERE crowd > 25 OFFSET 000
Which home team has a crowd larger than 25,000?
CREATE TABLE table_name_42 (home_team VARCHAR, crowd INTEGER)
SELECT partner FROM table_name_74 WHERE surface = "hard" AND score = "6–4, 6–2"
Who was the Partner in a game with the Score of 6–4, 6–2 on a hard surface?
CREATE TABLE table_name_74 (partner VARCHAR, surface VARCHAR, score VARCHAR)
SELECT AVG(age) FROM visitor WHERE Level_of_membership <= 4
What is the average age of the visitors whose membership level is not higher than 4?
CREATE TABLE visitor (age INTEGER, Level_of_membership VARCHAR)
SELECT MAX(game) FROM table_name_35 WHERE high_assists = "west (8)"
Name the highest game for west (8) high assists
CREATE TABLE table_name_35 (game INTEGER, high_assists VARCHAR)
SELECT image_name, image_url FROM images ORDER BY image_name
List all the image name and URLs in the order of their names.
CREATE TABLE images (image_name VARCHAR, image_url VARCHAR)
SELECT margin FROM table_name_88 WHERE year = 2001 AND championship = "mcdonald's lpga championship"
What was the margin in 2001 at the McDonald's LPGA Championship?
CREATE TABLE table_name_88 (margin VARCHAR, year VARCHAR, championship VARCHAR)
SELECT date FROM table_name_76 WHERE result = "draw"
When did the draw happen?
CREATE TABLE table_name_76 (date VARCHAR, result VARCHAR)
SELECT AVG(rank) FROM table_name_45 WHERE NOT percentage = "56%" AND loss < 4
What's the rank for a team that has a percentage of 56% and a loss smaller than 4?
CREATE TABLE table_name_45 (rank INTEGER, loss VARCHAR, percentage VARCHAR)
SELECT AVG(rank) FROM table_name_26 WHERE studio = "paramount" AND gross = "$200,512,643"
What is the average rank of the movie from Paramount Studios that grossed $200,512,643?
CREATE TABLE table_name_26 (rank INTEGER, studio VARCHAR, gross VARCHAR)
SELECT attendance FROM table_name_68 WHERE visitor = "indiana"
How many people went to the game with Indiana visiting?
CREATE TABLE table_name_68 (attendance VARCHAR, visitor VARCHAR)
SELECT away_team FROM table_name_6 WHERE venue = "punt road oval"
Which team was the away team when the game was at punt road oval?
CREATE TABLE table_name_6 (away_team VARCHAR, venue VARCHAR)
SELECT result FROM table_name_94 WHERE time___et__ = "12:30pm" AND location = "shea stadium"
What is the result of the game at the Shea Stadium at 12:30pm (ET)?
CREATE TABLE table_name_94 (result VARCHAR, time___et__ VARCHAR, location VARCHAR)
SELECT MIN(utility_pv) FROM table_name_87 WHERE hydro > 289.25 AND renewable_total > 520.07
What is the lowest utility PV with hydro great than 289.25 and renweable total larger than 520.07?
CREATE TABLE table_name_87 (utility_pv INTEGER, hydro VARCHAR, renewable_total VARCHAR)
SELECT T1.customer_name FROM customers AS T1 JOIN customer_orders AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id ORDER BY COUNT(*) DESC LIMIT 1
Show the name of the customer who has the most orders.
CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR)
SELECT periselene__km_ FROM table_206217_2 WHERE period__h_ = "4.947432"
What is every value for periselene if period is 4.947432?
CREATE TABLE table_206217_2 (periselene__km_ VARCHAR, period__h_ VARCHAR)
SELECT change FROM table_name_78 WHERE party = "english democrats"
Name the change for english democrats
CREATE TABLE table_name_78 (change VARCHAR, party VARCHAR)
SELECT weight FROM table_name_88 WHERE denomination = "one rupee"
What weight has one rupee as the denomination?
CREATE TABLE table_name_88 (weight VARCHAR, denomination VARCHAR)
SELECT COUNT(grid) FROM table_name_3 WHERE driver = "giancarlo fisichella"
How many grid numbers were there for the driver Giancarlo Fisichella?
CREATE TABLE table_name_3 (grid VARCHAR, driver VARCHAR)
SELECT in_state_area FROM table_name_81 WHERE outlet = "south platte river" AND basin = "big thompson river"
What is the in-state area with an outlet of South Platte River and Big Thompson river as the basin?
CREATE TABLE table_name_81 (in_state_area VARCHAR, outlet VARCHAR, basin VARCHAR)
SELECT COUNT(week) FROM table_name_17 WHERE opponent = "at new orleans saints" AND attendance > 53 OFFSET 448
Which total number of Week has an Opponent of at new orleans saints, and an Attendance larger than 53,448?
CREATE TABLE table_name_17 (week VARCHAR, opponent VARCHAR, attendance VARCHAR)
SELECT first_performance FROM table_name_80 WHERE status = "replacement cast"
When was the first performance with a replacement cast?
CREATE TABLE table_name_80 (first_performance VARCHAR, status VARCHAR)
SELECT published_as_serial FROM table_name_82 WHERE published_as_novel = "october 1917, mcclurg"
Which Published as serial has a Published as novel of october 1917, mcclurg?
CREATE TABLE table_name_82 (published_as_serial VARCHAR, published_as_novel VARCHAR)
SELECT home_team AS score FROM table_name_78 WHERE venue = "lake oval"
What was the home score at Lake Oval?
CREATE TABLE table_name_78 (home_team VARCHAR, venue VARCHAR)
SELECT record FROM table_name_45 WHERE score = "2–0"
What is the record when the score was 2–0?
CREATE TABLE table_name_45 (record VARCHAR, score VARCHAR)
SELECT home_team AS score FROM table_name_4 WHERE home_team = "essendon"
How many points did the home team Essendon score?
CREATE TABLE table_name_4 (home_team VARCHAR)
SELECT COUNT(game) FROM table_name_95 WHERE location = "memorial stadium" AND time = "2:27"
how many games have a location of memorial stadium and a time of 2:27?
CREATE TABLE table_name_95 (game VARCHAR, location VARCHAR, time VARCHAR)
SELECT population FROM table_25200461_9 WHERE city = "Gilroy"
What is the population if the city is Gilroy?
CREATE TABLE table_25200461_9 (population VARCHAR, city VARCHAR)