question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What is the Airport in Oslo?
CREATE TABLE table_name_64 (airport VARCHAR, city VARCHAR)
SELECT airport FROM table_name_64 WHERE city = "oslo"
Name the host for prime
CREATE TABLE table_16884579_1 (host_s_ VARCHAR, network VARCHAR)
SELECT host_s_ FROM table_16884579_1 WHERE network = "Prime"
How many dvd titled "series 5" were released having a release date or a non available date in region 2?
CREATE TABLE table_17697980_1 (region_2 VARCHAR, dvd_title VARCHAR)
SELECT COUNT(region_2) FROM table_17697980_1 WHERE dvd_title = "Series 5"
What's the rank when the start is 10 and the laps are fewer than 192?
CREATE TABLE table_name_90 (rank VARCHAR, start VARCHAR, laps VARCHAR)
SELECT rank FROM table_name_90 WHERE start = "10" AND laps < 192
Which week led to a record of 4-10?
CREATE TABLE table_name_87 (week VARCHAR, record VARCHAR)
SELECT week FROM table_name_87 WHERE record = "4-10"
What teams did the player vadim sharifijanov play for?
CREATE TABLE table_1013129_1 (college_junior_club_team VARCHAR, player VARCHAR)
SELECT college_junior_club_team FROM table_1013129_1 WHERE player = "Vadim Sharifijanov"
What are the birthdays of people in ascending order of height?
CREATE TABLE People (Birth_Date VARCHAR, Height VARCHAR)
SELECT Birth_Date FROM People ORDER BY Height
Which Year has a Community Award of jarrod harbrow?
CREATE TABLE table_name_85 (year INTEGER, community_award VARCHAR)
SELECT SUM(year) FROM table_name_85 WHERE community_award = "jarrod harbrow"
What horse has a 65.863 result?
CREATE TABLE table_name_18 (horse VARCHAR, result VARCHAR)
SELECT horse FROM table_name_18 WHERE result = "65.863"
What is the attendance of the match on October 26?
CREATE TABLE table_name_16 (attendance VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_16 WHERE date = "october 26"
WHAT IS THE LKF CUP WITH euroleague group stage AND bbl elite division finalist?
CREATE TABLE table_name_69 (lkf_cup VARCHAR, europe VARCHAR, regional_competitions VARCHAR)
SELECT lkf_cup FROM table_name_69 WHERE europe = "euroleague group stage" AND regional_competitions = "bbl elite division finalist"
What is the average cuts made at the top 25, less than 10, and at the Top 10 more than 3?
CREATE TABLE table_name_65 (cuts_made INTEGER, top_25 VARCHAR, top_10 VARCHAR)
SELECT AVG(cuts_made) FROM table_name_65 WHERE top_25 < 10 AND top_10 > 3
How many contestants were there when the runner-up was Monique Evans?
CREATE TABLE table_25214321_1 (contestants INTEGER, runner_up VARCHAR)
SELECT MAX(contestants) FROM table_25214321_1 WHERE runner_up = "Monique Evans"
What is the Country of the Player with a To par of +1 and a Score of 72-71=143?
CREATE TABLE table_name_99 (country VARCHAR, to_par VARCHAR, score VARCHAR)
SELECT country FROM table_name_99 WHERE to_par = "+1" AND score = 72 - 71 = 143
What are the titles and directors of the movies whose star is greater than the average stars of the movies directed by James Cameron?
CREATE TABLE Rating (mID VARCHAR, stars INTEGER); CREATE TABLE Movie (title VARCHAR, director VARCHAR, mID VARCHAR)
SELECT T2.title, T2.director FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID WHERE T1.stars > (SELECT AVG(T1.stars) FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID WHERE T2.director = "James Cameron")
Show the names of cities in counties that have a crime rate less than 100.
CREATE TABLE county_public_safety (name VARCHAR, county_id VARCHAR, Crime_rate INTEGER); CREATE TABLE city (name VARCHAR, county_id VARCHAR, Crime_rate INTEGER)
SELECT name FROM city WHERE county_id IN (SELECT county_id FROM county_public_safety WHERE Crime_rate < 100)
What county placed t2 and scored 68-69-68-72=277?
CREATE TABLE table_name_95 (country VARCHAR, place VARCHAR, score VARCHAR)
SELECT country FROM table_name_95 WHERE place = "t2" AND score = 68 - 69 - 68 - 72 = 277
What was the lowest round for a tight end position?
CREATE TABLE table_name_94 (round INTEGER, position VARCHAR)
SELECT MIN(round) FROM table_name_94 WHERE position = "tight end"
How many losses occurred with less than 8 games played and less than 3 wins?
CREATE TABLE table_name_75 (losses VARCHAR, games_played VARCHAR, wins VARCHAR)
SELECT COUNT(losses) FROM table_name_75 WHERE games_played < 8 AND wins < 3
What's the smallest number of podiums having more than 6 starts and 5 finishes?
CREATE TABLE table_name_82 (podiums INTEGER, finishes VARCHAR, starts VARCHAR)
SELECT MIN(podiums) FROM table_name_82 WHERE finishes = 5 AND starts > 6
What number in season is the episode directed by Gene Stupnitsky?
CREATE TABLE table_17482534_1 (no_in_season VARCHAR, directed_by VARCHAR)
SELECT no_in_season FROM table_17482534_1 WHERE directed_by = "Gene Stupnitsky"
What is the total of cuts made where the top 25 is less than 6 and the top-5 is more than 0?
CREATE TABLE table_name_90 (cuts_made INTEGER, top_25 VARCHAR, top_5 VARCHAR)
SELECT SUM(cuts_made) FROM table_name_90 WHERE top_25 < 6 AND top_5 > 0
What was the away team when the result was 2–1 and home team was the bohemians?
CREATE TABLE table_24949975_1 (away_team VARCHAR, result VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_24949975_1 WHERE result = "2–1" AND home_team = "Bohemians"
How many Against has a Ballarat FL of darley and Wins larger than 8?
CREATE TABLE table_name_4 (against VARCHAR, ballarat_fl VARCHAR, wins VARCHAR)
SELECT COUNT(against) FROM table_name_4 WHERE ballarat_fl = "darley" AND wins > 8
what is the name of the role that has co-protagonist in the notes field and the years of 2008-2009?
CREATE TABLE table_name_8 (role VARCHAR, notes VARCHAR, year VARCHAR)
SELECT role FROM table_name_8 WHERE notes = "co-protagonist" AND year = "2008-2009"
For the call sign w242at what's the city the license plate is registered to?
CREATE TABLE table_name_78 (city_of_license VARCHAR, call_sign VARCHAR)
SELECT city_of_license FROM table_name_78 WHERE call_sign = "w242at"
What is Posititon, when Hometown/School is "Westlake, California"?
CREATE TABLE table_name_15 (position VARCHAR, hometown_school VARCHAR)
SELECT position FROM table_name_15 WHERE hometown_school = "westlake, california"
What's the lowest attendance recorded for week 15?
CREATE TABLE table_name_88 (attendance INTEGER, week VARCHAR)
SELECT MIN(attendance) FROM table_name_88 WHERE week = 15
Which Player has a Position of number 8, and a Club/province of scarlets?
CREATE TABLE table_name_92 (player VARCHAR, position VARCHAR, club_province VARCHAR)
SELECT player FROM table_name_92 WHERE position = "number 8" AND club_province = "scarlets"
what class is Braxton Kelley in?
CREATE TABLE table_14966667_19 (class VARCHAR, name VARCHAR)
SELECT COUNT(class) FROM table_14966667_19 WHERE name = "Braxton Kelley"
What was Footscray's Home team score?
CREATE TABLE table_name_62 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_62 WHERE home_team = "footscray"
Which Surface is on 23 january 2011?
CREATE TABLE table_name_79 (surface VARCHAR, date VARCHAR)
SELECT surface FROM table_name_79 WHERE date = "23 january 2011"
Who directed the episode with production code 208?
CREATE TABLE table_23403578_3 (directed_by VARCHAR, prod_code VARCHAR)
SELECT directed_by FROM table_23403578_3 WHERE prod_code = "208"
What is the Home Team in Game 2?
CREATE TABLE table_name_80 (home_team VARCHAR, game VARCHAR)
SELECT home_team FROM table_name_80 WHERE game = "game 2"
What is the NCBI Accession Number (mRNA/Protein) for the mus musculus Species?
CREATE TABLE table_name_36 (ncbi_accession_number__mrna_protein_ VARCHAR, species VARCHAR)
SELECT ncbi_accession_number__mrna_protein_ FROM table_name_36 WHERE species = "mus musculus"
What is the average yards for Jimmie Giles in a game larger than 15 and reception larger than 2?
CREATE TABLE table_name_81 (yards INTEGER, player VARCHAR, games VARCHAR, reception VARCHAR)
SELECT AVG(yards) FROM table_name_81 WHERE games > 15 AND reception > 2 AND player = "jimmie giles"
What were the amount of rebounds in game 2?
CREATE TABLE table_23248910_11 (high_rebounds VARCHAR, game VARCHAR)
SELECT high_rebounds FROM table_23248910_11 WHERE game = 2
What is the total number of lyricist where the lyrics theme is romance and the song lasts 3:50?
CREATE TABLE table_10416547_1 (lyricist VARCHAR, lyrics_theme_style VARCHAR, duration VARCHAR)
SELECT COUNT(lyricist) FROM table_10416547_1 WHERE lyrics_theme_style = "Romance" AND duration = "3:50"
How many bronze medals for the nation with fewer than 3 gold, 1 silver and rank of 3?
CREATE TABLE table_name_29 (bronze VARCHAR, rank VARCHAR, total VARCHAR, gold VARCHAR, silver VARCHAR)
SELECT COUNT(bronze) FROM table_name_29 WHERE gold < 3 AND silver = 1 AND total < 3 AND rank = 3
What are the average points for the Project Indy team that has the Ford xb engine?
CREATE TABLE table_name_42 (points INTEGER, engine VARCHAR, team VARCHAR)
SELECT AVG(points) FROM table_name_42 WHERE engine = "ford xb" AND team = "project indy"
Name the number of first elected for thomas maxwell (j) 60.1% david woodcock (aj) 39.9%
CREATE TABLE table_2668243_17 (first_elected VARCHAR, candidates VARCHAR)
SELECT COUNT(first_elected) FROM table_2668243_17 WHERE candidates = "Thomas Maxwell (J) 60.1% David Woodcock (AJ) 39.9%"
What date has 104-113 as the score?
CREATE TABLE table_name_17 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_17 WHERE score = "104-113"
Name the mountains classification which has a young rider classification of francesco casagrande and integiro classification of not awarded with stage of 2
CREATE TABLE table_name_82 (mountains_classification VARCHAR, stage VARCHAR, young_rider_classification VARCHAR, intergiro_classification VARCHAR)
SELECT mountains_classification FROM table_name_82 WHERE young_rider_classification = "francesco casagrande" AND intergiro_classification = "not awarded" AND stage = "2"
How many bypass boosters are there on the engine with slit exhaust ports and SPI is yes?
CREATE TABLE table_16731248_1 (bypass_boosters VARCHAR, spi VARCHAR, exhaust_ports VARCHAR)
SELECT bypass_boosters FROM table_16731248_1 WHERE spi = "Yes" AND exhaust_ports = "Slit"
What is the part 3 of the word in class 7a?
CREATE TABLE table_1745843_8 (part_3 VARCHAR, class VARCHAR)
SELECT part_3 FROM table_1745843_8 WHERE class = "7a"
Which player is the NHL right, who was born in Downers Grove, Illinois?
CREATE TABLE table_name_7 (nhl_rights VARCHAR, _if_any VARCHAR, birthplace VARCHAR)
SELECT nhl_rights, _if_any FROM table_name_7 WHERE birthplace = "downers grove, illinois"
What is Fitzroy's home field?
CREATE TABLE table_name_82 (venue VARCHAR, home_team VARCHAR)
SELECT venue FROM table_name_82 WHERE home_team = "fitzroy"
What is the High points with a Game that is 56?
CREATE TABLE table_name_31 (high_points VARCHAR, game VARCHAR)
SELECT high_points FROM table_name_31 WHERE game = 56
Who played San Lorenzo?
CREATE TABLE table_17282875_3 (team__number2 VARCHAR, team__number1 VARCHAR)
SELECT team__number2 FROM table_17282875_3 WHERE team__number1 = "San Lorenzo"
Where total goals is 1 and total apps is 33, what is the smallest no.?
CREATE TABLE table_20848569_9 (no INTEGER, total_goals VARCHAR, total_apps VARCHAR)
SELECT MIN(no) FROM table_20848569_9 WHERE total_goals = 1 AND total_apps = 33
In episode 7 what was the highest amount of money requested by Jerry Mantalvanos & Paul Merker ?
CREATE TABLE table_name_24 (money_requested__ INTEGER, episode VARCHAR, entrepreneur_s_ VARCHAR)
SELECT MAX(money_requested__) AS £_ FROM table_name_24 WHERE episode = "episode 7" AND entrepreneur_s_ = "jerry mantalvanos & paul merker"
What is every code name for the model Radeon HD 6650m?
CREATE TABLE table_25005714_3 (code_name VARCHAR, model VARCHAR)
SELECT code_name FROM table_25005714_3 WHERE model = "Radeon HD 6650M"
Which Cuts made has a Tournament of totals, and Wins smaller than 11?
CREATE TABLE table_name_25 (cuts_made INTEGER, tournament VARCHAR, wins VARCHAR)
SELECT AVG(cuts_made) FROM table_name_25 WHERE tournament = "totals" AND wins < 11
Which second's skip is Chris Plys?
CREATE TABLE table_name_10 (second VARCHAR, skip VARCHAR)
SELECT second FROM table_name_10 WHERE skip = "chris plys"
What is the catalog number of the title called "super callanetics"?
CREATE TABLE table_11222744_3 (catalog_number VARCHAR, title VARCHAR)
SELECT catalog_number FROM table_11222744_3 WHERE title = "Super Callanetics"
What is the baseline extended and main profiles when level is 1.3?
CREATE TABLE table_237036_2 (_extended_and_main_profiles VARCHAR, baseline INTEGER, level VARCHAR)
SELECT MIN(baseline), _extended_and_main_profiles FROM table_237036_2 WHERE level = "1.3"
Which Courtside reporter has a Channel of fsn new england in 2006-07?
CREATE TABLE table_name_43 (courtside_reporter VARCHAR, channel VARCHAR, year VARCHAR)
SELECT courtside_reporter FROM table_name_43 WHERE channel = "fsn new england" AND year = "2006-07"
What is the average Attendance at Venue A on 16 October 2004?
CREATE TABLE table_name_57 (attendance INTEGER, venue VARCHAR, date VARCHAR)
SELECT AVG(attendance) FROM table_name_57 WHERE venue = "a" AND date = "16 october 2004"
Of the series that last aired August 20, 2010, what is the lowest number of seasons?
CREATE TABLE table_name_42 (season INTEGER, last_aired VARCHAR)
SELECT MIN(season) FROM table_name_42 WHERE last_aired = "august 20, 2010"
What is the maximum memory for the model discontinued in November 2001?
CREATE TABLE table_10528691_4 (maximum_memory VARCHAR, discontinued VARCHAR)
SELECT maximum_memory FROM table_10528691_4 WHERE discontinued = "November 2001"
How many car models are produced in the usa?
CREATE TABLE CAR_MAKERS (Id VARCHAR, Country VARCHAR); CREATE TABLE COUNTRIES (CountryId VARCHAR, CountryName VARCHAR); CREATE TABLE MODEL_LIST (Maker VARCHAR)
SELECT COUNT(*) FROM MODEL_LIST AS T1 JOIN CAR_MAKERS AS T2 ON T1.Maker = T2.Id JOIN COUNTRIES AS T3 ON T2.Country = T3.CountryId WHERE T3.CountryName = 'usa'
Name the district for reason for change being died july 4, 1939
CREATE TABLE table_2160008_4 (district VARCHAR, reason_for_change VARCHAR)
SELECT district FROM table_2160008_4 WHERE reason_for_change = "Died July 4, 1939"
What is the Producer on December 25, 2006?
CREATE TABLE table_name_77 (producer VARCHAR, year VARCHAR)
SELECT producer FROM table_name_77 WHERE year = "december 25, 2006"
Which League from has a NHL team of san jose sharks (from carolina) 3?
CREATE TABLE table_name_13 (league_from VARCHAR, nhl_team VARCHAR)
SELECT league_from FROM table_name_13 WHERE nhl_team = "san jose sharks (from carolina) 3"
How many accounts do we have?
CREATE TABLE Accounts (Id VARCHAR)
SELECT COUNT(*) FROM Accounts
What was the score for Footscray when they were the away team?
CREATE TABLE table_name_66 (away_team VARCHAR)
SELECT away_team AS score FROM table_name_66 WHERE away_team = "footscray"
When did season 9 originally air?
CREATE TABLE table_15824796_4 (original_air_date VARCHAR, season__number VARCHAR)
SELECT original_air_date FROM table_15824796_4 WHERE season__number = 9
What average year contains the title of machineries of joy vol. 4?
CREATE TABLE table_name_54 (year INTEGER, title VARCHAR)
SELECT AVG(year) FROM table_name_54 WHERE title = "machineries of joy vol. 4"
Show names of climbers and the names of mountains they climb.
CREATE TABLE mountain (Name VARCHAR, Mountain_ID VARCHAR); CREATE TABLE climber (Name VARCHAR, Mountain_ID VARCHAR)
SELECT T1.Name, T2.Name FROM climber AS T1 JOIN mountain AS T2 ON T1.Mountain_ID = T2.Mountain_ID
Which Away captain has a Date of 2,3,4,5 january 1999?
CREATE TABLE table_name_69 (away_captain VARCHAR, date VARCHAR)
SELECT away_captain FROM table_name_69 WHERE date = "2,3,4,5 january 1999"
What are the titles of episodes with 5.66 million US viewers?
CREATE TABLE table_2866514_1 (title VARCHAR, us_viewers__million_ VARCHAR)
SELECT title FROM table_2866514_1 WHERE us_viewers__million_ = "5.66"
In what Year is there a Role of (cameo)?
CREATE TABLE table_name_55 (year VARCHAR, role VARCHAR)
SELECT year FROM table_name_55 WHERE role = "(cameo)"
Name the Date and an Opponent which has a f Position and Career Games of 123 games?
CREATE TABLE table_name_4 (date_and_opponent VARCHAR, position VARCHAR, career_games VARCHAR)
SELECT date_and_opponent FROM table_name_4 WHERE position = "f" AND career_games = "123 games"
On what day did tommy ellis drive?
CREATE TABLE table_28178756_1 (date VARCHAR, driver VARCHAR)
SELECT date FROM table_28178756_1 WHERE driver = "Tommy Ellis"
What game number was played at amway arena?
CREATE TABLE table_name_86 (game VARCHAR, location_attendance VARCHAR)
SELECT game FROM table_name_86 WHERE location_attendance = "amway arena"
What is the Time/Retired value for Driver Johnny Herbert with Constructor Benetton - Renault
CREATE TABLE table_name_38 (time_retired VARCHAR, constructor VARCHAR, driver VARCHAR)
SELECT time_retired FROM table_name_38 WHERE constructor = "benetton - renault" AND driver = "johnny herbert"
When was episode 2x11 aired for the first time?
CREATE TABLE table_19930660_2 (first_broadcast VARCHAR, episode VARCHAR)
SELECT first_broadcast FROM table_19930660_2 WHERE episode = "2x11"
What player has The United States as the country with 70 as the score?
CREATE TABLE table_name_91 (player VARCHAR, country VARCHAR, score VARCHAR)
SELECT player FROM table_name_91 WHERE country = "united states" AND score = 70
What is the name of the Senator in the O District who assumed office in 2013?
CREATE TABLE table_name_81 (name VARCHAR, assumed_office VARCHAR, district VARCHAR)
SELECT name FROM table_name_81 WHERE assumed_office = 2013 AND district = "o"
What is the number of the player who went to Southern University?
CREATE TABLE table_11734041_9 (no_s_ VARCHAR, school_club_team_country VARCHAR)
SELECT no_s_ FROM table_11734041_9 WHERE school_club_team_country = "Southern University"
Who were the winning riders of the championship in Euer Valley, CA and whose horse was Magic Sirocco?
CREATE TABLE table_27833186_1 (rider_names VARCHAR, location VARCHAR, horse_name VARCHAR)
SELECT rider_names FROM table_27833186_1 WHERE location = "Euer Valley, CA" AND horse_name = "Magic Sirocco"
What was the result when home was fc luzern (asl)?
CREATE TABLE table_name_22 (result VARCHAR, home VARCHAR)
SELECT result FROM table_name_22 WHERE home = "fc luzern (asl)"
What is the canton of grande dixence?
CREATE TABLE table_10020178_1 (canton VARCHAR, name VARCHAR)
SELECT canton FROM table_10020178_1 WHERE name = "Grande Dixence"
Which term had a Democratic representative from district 7?
CREATE TABLE table_name_22 (term VARCHAR, district VARCHAR, party VARCHAR)
SELECT term FROM table_name_22 WHERE district = "7" AND party = "democratic"
Which Intra-molecular structure has a Comparative of no, and a Name of mitarget?
CREATE TABLE table_name_76 (intra_molecular_structure VARCHAR, comparative VARCHAR, name VARCHAR)
SELECT intra_molecular_structure FROM table_name_76 WHERE comparative = "no" AND name = "mitarget"
what's the try bonus with club being abercwmboi rfc
CREATE TABLE table_13940275_5 (try_bonus VARCHAR, club VARCHAR)
SELECT try_bonus FROM table_13940275_5 WHERE club = "Abercwmboi RFC"
who is team 1 when team 2 is usl dunkerque (d2)?
CREATE TABLE table_name_87 (team_1 VARCHAR, team_2 VARCHAR)
SELECT team_1 FROM table_name_87 WHERE team_2 = "usl dunkerque (d2)"
What is the monounsaturated fat with 15g of saturated fat?
CREATE TABLE table_name_22 (monounsaturated_fat VARCHAR, saturated_fat VARCHAR)
SELECT monounsaturated_fat FROM table_name_22 WHERE saturated_fat = "15g"
What was the Bhofen #1 score and rank for the player whose Bhofen #2 score and rank was 231.2 (8)?
CREATE TABLE table_14948647_1 (bhofen_number1__rk_ VARCHAR, bhofen_number2__rk_ VARCHAR)
SELECT bhofen_number1__rk_ FROM table_14948647_1 WHERE bhofen_number2__rk_ = "231.2 (8)"
What are the birth dates of employees living in Edmonton?
CREATE TABLE EMPLOYEE (BirthDate VARCHAR, City VARCHAR)
SELECT BirthDate FROM EMPLOYEE WHERE City = "Edmonton"
Which IATA's ICAO is rjss?
CREATE TABLE table_name_17 (iata VARCHAR, icao VARCHAR)
SELECT iata FROM table_name_17 WHERE icao = "rjss"
Name the least podiums for 49 points
CREATE TABLE table_20398823_1 (podiums INTEGER, points VARCHAR)
SELECT MIN(podiums) FROM table_20398823_1 WHERE points = "49"
What venue had an away team of south melbourne?
CREATE TABLE table_name_32 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_32 WHERE away_team = "south melbourne"
What is Expected End Date, when Trial Start Date is Nov 2007?
CREATE TABLE table_name_65 (expected_end_date VARCHAR, trial_start_date VARCHAR)
SELECT expected_end_date FROM table_name_65 WHERE trial_start_date = "nov 2007"
What is the original title of the film for which Dersu Uzala was nominated?
CREATE TABLE table_name_10 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT original_title FROM table_name_10 WHERE film_title_used_in_nomination = "dersu uzala"
Which type has list entry number of 1356677?
CREATE TABLE table_name_52 (type VARCHAR, list_entry_number VARCHAR)
SELECT type FROM table_name_52 WHERE list_entry_number = 1356677
Who was the bronze medal when the Asian Games were held in Busan?
CREATE TABLE table_name_81 (bronze VARCHAR, location VARCHAR)
SELECT bronze FROM table_name_81 WHERE location = "busan"
what's the record with date being january 13
CREATE TABLE table_13480122_5 (record VARCHAR, date VARCHAR)
SELECT record FROM table_13480122_5 WHERE date = "January 13"
What's the name of the structure at Egypt, Arkansas?
CREATE TABLE table_name_53 (name VARCHAR, town VARCHAR)
SELECT name FROM table_name_53 WHERE town = "egypt, arkansas"
What is the average crowd size for Richmond home games?
CREATE TABLE table_name_2 (crowd INTEGER, home_team VARCHAR)
SELECT AVG(crowd) FROM table_name_2 WHERE home_team = "richmond"