answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT cross_country FROM table_name_35 WHERE soccer = "ashland" AND volleyball = "wooster" AND school_year = "2006-07" | What is Cross Country, when Soccer is Ashland, when Volleyball is Wooster, and when School Year is 2006-07? | CREATE TABLE table_name_35 (cross_country VARCHAR, school_year VARCHAR, soccer VARCHAR, volleyball VARCHAR) |
SELECT episode_title FROM table_12146637_1 WHERE us_viewers__millions_ = "8.92" | What is the title of the episode that was watched by 8.92 million viewers? | CREATE TABLE table_12146637_1 (episode_title VARCHAR, us_viewers__millions_ VARCHAR) |
SELECT MAX(share_count) FROM TRANSACTIONS WHERE amount_of_transaction < 10000 | Show the maximum share count of transactions where the amount is smaller than 10000 | CREATE TABLE TRANSACTIONS (share_count INTEGER, amount_of_transaction INTEGER) |
SELECT COUNT(writer) FROM table_15026994_3 WHERE director = "David Tucker" | Who wrote the episode that David Tucker directed? | CREATE TABLE table_15026994_3 (writer VARCHAR, director VARCHAR) |
SELECT position FROM table_name_18 WHERE nominated_work = "la quinta esencia" AND award = "best cd coverbox" | What was the position that the nominated work La Quinta Esencia, which also won an award for best CD coverbox, won? | CREATE TABLE table_name_18 (position VARCHAR, nominated_work VARCHAR, award VARCHAR) |
SELECT place FROM table_name_17 WHERE race = "downhill" AND season < 1996 AND date = "11-mar-1995" | What is the place result of the downhill race before the 1996 season on 11-Mar-1995? | CREATE TABLE table_name_17 (place VARCHAR, date VARCHAR, race VARCHAR, season VARCHAR) |
SELECT MIN(_number) FROM table_19982699_1 WHERE producer = "Charles Salmon" AND television_premiere = "January 27, 2007" | How many numbers have Charles Salmon as the producer and January 27, 2007 was the television premiere? | CREATE TABLE table_19982699_1 (_number INTEGER, producer VARCHAR, television_premiere VARCHAR) |
SELECT examples FROM table_name_73 WHERE american = "ɪ, ə" AND semi_closed_initial_unstressed_vowels = "y /ɨ/" | What is the example for the American of ɪ, ə, and a Semi-closed initial unstressed vowels of y /ɨ/? | CREATE TABLE table_name_73 (examples VARCHAR, american VARCHAR, semi_closed_initial_unstressed_vowels VARCHAR) |
SELECT opponent FROM table_name_89 WHERE score = "72-63" | WHAT IS THE OPPONENT WITH A SCORE OF 72-63? | CREATE TABLE table_name_89 (opponent VARCHAR, score VARCHAR) |
SELECT barrel_length FROM table_12834315_5 WHERE colt_model_no = "LE6921SP" | What is the barrel length for a cold model le6921sp? | CREATE TABLE table_12834315_5 (barrel_length VARCHAR, colt_model_no VARCHAR) |
SELECT COUNT(car__number) FROM table_name_68 WHERE make = "chevrolet" AND laps = 363 | What is the car # of the Chevrolet that complete 363 laps? | CREATE TABLE table_name_68 (car__number VARCHAR, make VARCHAR, laps VARCHAR) |
SELECT husband FROM table_name_74 WHERE image = "marie of baden-sponheim" | Who was the husband of marie of baden-sponheim? | CREATE TABLE table_name_74 (husband VARCHAR, image VARCHAR) |
SELECT nation FROM table_name_84 WHERE silver = 0 AND bronze = 1 AND rank = "18" | What nation has 0 as the silver, 1 as the bronze, with 18 as the rank? | CREATE TABLE table_name_84 (nation VARCHAR, rank VARCHAR, silver VARCHAR, bronze VARCHAR) |
SELECT change__2010_to_2011_ FROM table_14752049_2 WHERE international_tourist_arrivals__2011_ = "1.7 million" | What are the changes (2010 to 2011) where the International Tourist Arrivals is 1.7 million? | CREATE TABLE table_14752049_2 (change__2010_to_2011_ VARCHAR, international_tourist_arrivals__2011_ VARCHAR) |
SELECT poles FROM table_20396_1 WHERE season = 2000 | How many poles were there in season 2000? | CREATE TABLE table_20396_1 (poles VARCHAR, season VARCHAR) |
SELECT SUM(goals_for) FROM table_name_24 WHERE points_1 = 38 AND played < 42 | How many goals when the points 1 is 38 and the played number is less than 42? | CREATE TABLE table_name_24 (goals_for INTEGER, points_1 VARCHAR, played VARCHAR) |
SELECT 2004 FROM table_name_19 WHERE 2008 = "wta premier 5 tournaments" | What is 2004, when 2008 is "WTA Premier 5 Tournaments"? | CREATE TABLE table_name_19 (Id VARCHAR) |
SELECT first_appearance FROM table_name_21 WHERE character = "aiden burn csi detective" | Where did the character of Aiden Burn csi detective first appear? | CREATE TABLE table_name_21 (first_appearance VARCHAR, character VARCHAR) |
SELECT MIN(production_code) FROM table_29583441_1 | What is the smallest numbered production code listed? | CREATE TABLE table_29583441_1 (production_code INTEGER) |
SELECT location FROM table_name_40 WHERE tournament = "buick-goodwrench open" | What is the Location for the buick-goodwrench open? | CREATE TABLE table_name_40 (location VARCHAR, tournament VARCHAR) |
SELECT runner_s__up FROM table_name_52 WHERE date = "2 aug 2009" | On the Date of 2 Aug 2009, who was the Runner(s)-up? | CREATE TABLE table_name_52 (runner_s__up VARCHAR, date VARCHAR) |
SELECT id, country, city, name FROM airport ORDER BY name | List the id, country, city and name of the airports ordered alphabetically by the name. | CREATE TABLE airport (id VARCHAR, country VARCHAR, city VARCHAR, name VARCHAR) |
SELECT team FROM table_27734577_2 WHERE date = "October 21" | Which team was the opponent on october 21? | CREATE TABLE table_27734577_2 (team VARCHAR, date VARCHAR) |
SELECT Date_of_ceremony FROM music_festival WHERE Category = "Best Song" AND RESULT = "Awarded" | What are the date of ceremony of music festivals with category "Best Song" and result "Awarded"? | CREATE TABLE music_festival (Date_of_ceremony VARCHAR, Category VARCHAR, RESULT VARCHAR) |
SELECT result FROM table_name_27 WHERE week = 1 | What was the result on week 1? | CREATE TABLE table_name_27 (result VARCHAR, week VARCHAR) |
SELECT ply__uk, _nz, _au_ FROM table_20297668_1 WHERE yarn_type__us_ = "Fingering" | Name the ply (uk, nz, au) for fingering | CREATE TABLE table_20297668_1 (ply__uk VARCHAR, _nz VARCHAR, _au_ VARCHAR, yarn_type__us_ VARCHAR) |
SELECT additional_info FROM table_2528382_1 WHERE music_director = "Datta Naik" | Which song directed by datta naik had the ending stranza written by Johnny Walker? | CREATE TABLE table_2528382_1 (additional_info VARCHAR, music_director VARCHAR) |
SELECT set_1 FROM table_name_67 WHERE set_4 = "28-30" | What is the set 1 with a 28-30 set 4? | CREATE TABLE table_name_67 (set_1 VARCHAR, set_4 VARCHAR) |
SELECT pick__number FROM table_name_50 WHERE position = "d" AND college_junior_club_team = "university of maine (ncaa)" | What is the pick number for position of D from the University of Maine (NCAA)? | CREATE TABLE table_name_50 (pick__number VARCHAR, position VARCHAR, college_junior_club_team VARCHAR) |
SELECT COUNT(pick) FROM table_name_31 WHERE player = "jay bruchak" | How many picks did Jay Bruchak have? | CREATE TABLE table_name_31 (pick VARCHAR, player VARCHAR) |
SELECT date FROM table_name_32 WHERE home = "pittsburgh" AND visitor = "boston" | What is the date of the game with pittsburgh as the home team and boston as the visitor team? | CREATE TABLE table_name_32 (date VARCHAR, home VARCHAR, visitor VARCHAR) |
SELECT MAX(year) FROM table_name_45 WHERE apparatus = "vault" AND rank_final < 9 | What is the highest Year, when Apparatus is "Vault", and when Rank-Final is less than 9? | CREATE TABLE table_name_45 (year INTEGER, apparatus VARCHAR, rank_final VARCHAR) |
SELECT score FROM table_name_35 WHERE date = "may 3" | What was the score on May 3? | CREATE TABLE table_name_35 (score VARCHAR, date VARCHAR) |
SELECT opponent FROM table_14966537_1 WHERE date = "October 25, 1970" | Who was the team's opponent of October 25, 1970? | CREATE TABLE table_14966537_1 (opponent VARCHAR, date VARCHAR) |
SELECT grade FROM table_name_43 WHERE chin_up__reps_ = "3" | If a person does 3 chin-up reps, what grade do they obtain? | CREATE TABLE table_name_43 (grade VARCHAR, chin_up__reps_ VARCHAR) |
SELECT MAX(week) FROM table_name_13 WHERE attendance = 43 OFFSET 430 | In what Week was the Attendance 43,430? | CREATE TABLE table_name_13 (week INTEGER, attendance VARCHAR) |
SELECT COUNT(rank__timeslot_) FROM table_15681686_4 WHERE viewers__millions_ = "9.38" | what is the total number of rank where viewers is 9.38? | CREATE TABLE table_15681686_4 (rank__timeslot_ VARCHAR, viewers__millions_ VARCHAR) |
SELECT rider FROM table_name_39 WHERE grid = 36 | Who was the rider with a grid of 36? | CREATE TABLE table_name_39 (rider VARCHAR, grid VARCHAR) |
SELECT institution FROM table_27816698_2 WHERE location = "Bakersfield, California" | Which institution was located in bakersfield, california? | CREATE TABLE table_27816698_2 (institution VARCHAR, location VARCHAR) |
SELECT result FROM table_name_56 WHERE attendance = "41,650" | What was the result of the game that was attended by 41,650 people? | CREATE TABLE table_name_56 (result VARCHAR, attendance VARCHAR) |
SELECT score FROM table_name_49 WHERE result = "won" AND date = "december 14, 2004" | What score has won as the result on the date of December 14, 2004? | CREATE TABLE table_name_49 (score VARCHAR, result VARCHAR, date VARCHAR) |
SELECT COUNT(founded) FROM table_11318462_29 WHERE enrolment = 850 | How many schools have an enrollment of 850? | CREATE TABLE table_11318462_29 (founded VARCHAR, enrolment VARCHAR) |
SELECT density__hab__km²__ FROM table_name_22 WHERE extension_km² = "380,64" | What is the density (hab/ km²) when the extension km² is 380,64? | CREATE TABLE table_name_22 (density__hab__km²__ VARCHAR, extension_km² VARCHAR) |
SELECT hdtv FROM table_name_21 WHERE television_service = "mtv rocks" | What is HDTV, when Television Service is MTV Rocks? | CREATE TABLE table_name_21 (hdtv VARCHAR, television_service VARCHAR) |
SELECT source FROM table_name_67 WHERE cartridge = ".375 remington ultra magnum" | What is Source, when Cartridge is .375 remington ultra magnum? | CREATE TABLE table_name_67 (source VARCHAR, cartridge VARCHAR) |
SELECT SUM(gold) FROM table_name_87 WHERE silver < 0 | I want the sum of gold for silver being less than 0 | CREATE TABLE table_name_87 (gold INTEGER, silver INTEGER) |
SELECT league FROM table_name_17 WHERE play_off = "–" AND year = "2008–09" | Which League that has no playoffs in the Year of 2008–09? | CREATE TABLE table_name_17 (league VARCHAR, play_off VARCHAR, year VARCHAR) |
SELECT result FROM table_name_75 WHERE home = "ssv ulm 1846" | What is the result for SSV ULM 1846? | CREATE TABLE table_name_75 (result VARCHAR, home VARCHAR) |
SELECT COUNT(candidates) FROM table_1341930_38 WHERE incumbent = "Alvin Bush" | How many incumbents come from alvin bush's district? | CREATE TABLE table_1341930_38 (candidates VARCHAR, incumbent VARCHAR) |
SELECT party FROM table_name_34 WHERE incumbent = "ken cuccinelli" | Which party has Ken Cuccinelli as an incumbent? | CREATE TABLE table_name_34 (party VARCHAR, incumbent VARCHAR) |
SELECT surface FROM table_name_95 WHERE week = "march 1" | Which Surface has a Week of march 1? | CREATE TABLE table_name_95 (surface VARCHAR, week VARCHAR) |
SELECT MAX(top_10) FROM table_name_92 WHERE cuts_made < 12 AND top_5 < 2 AND events < 14 | Which top ten, having less than 12 cuts less than 2 top five, and events smaller than 14, is the highest? | CREATE TABLE table_name_92 (top_10 INTEGER, events VARCHAR, cuts_made VARCHAR, top_5 VARCHAR) |
SELECT MIN(losses) FROM table_name_68 WHERE draws = 0 AND wins < 4 AND byes < 0 | What is the lowest losses for a team that has 0 draws, fewer than 4 wins, and no Byes? | CREATE TABLE table_name_68 (losses INTEGER, byes VARCHAR, draws VARCHAR, wins VARCHAR) |
SELECT athlete FROM table_name_9 WHERE time = "30:48" | What is the name of the athlete with a time of 30:48? | CREATE TABLE table_name_9 (athlete VARCHAR, time VARCHAR) |
SELECT flight_down FROM table_245801_1 WHERE crew = "Vladimir Vasyutin , Alexander Volkov" | Name the flight down for vladimir vasyutin , alexander volkov | CREATE TABLE table_245801_1 (flight_down VARCHAR, crew VARCHAR) |
SELECT AVG(carries) FROM table_name_36 WHERE touchdowns > 72 | What is the average number of carries that have more than 72 touchdowns? | CREATE TABLE table_name_36 (carries INTEGER, touchdowns INTEGER) |
SELECT record FROM table_name_79 WHERE decision = "ellis" AND visitor = "vancouver" | What is the record of the game with a decision of Ellis and Vancouver as the visitor? | CREATE TABLE table_name_79 (record VARCHAR, decision VARCHAR, visitor VARCHAR) |
SELECT team_record FROM table_27893892_2 WHERE opponent = "at Scottish Claymores" | what was the achievement for the rival at scottish claymores | CREATE TABLE table_27893892_2 (team_record VARCHAR, opponent VARCHAR) |
SELECT surface FROM table_name_51 WHERE score = "4–6, 6–4, [8–10]" | On what surface was the game played that had a score of 4–6, 6–4, [8–10]? | CREATE TABLE table_name_51 (surface VARCHAR, score VARCHAR) |
SELECT competition FROM table_name_95 WHERE date = "october 7, 2011" | What competition was played on October 7, 2011? | CREATE TABLE table_name_95 (competition VARCHAR, date VARCHAR) |
SELECT SUM(grant_amount) FROM Grants AS T1 JOIN Organisations AS T2 ON T1.organisation_id = T2.organisation_id JOIN organisation_Types AS T3 ON T2.organisation_type = T3.organisation_type WHERE T3.organisation_type_description = 'Research' | What is the total grant amount of the organisations described as research? | CREATE TABLE organisation_Types (organisation_type VARCHAR, organisation_type_description VARCHAR); CREATE TABLE Grants (organisation_id VARCHAR); CREATE TABLE Organisations (organisation_id VARCHAR, organisation_type VARCHAR) |
SELECT away_team FROM table_name_44 WHERE home_team = "wrexham" | What away team has wrexham as the home team? | CREATE TABLE table_name_44 (away_team VARCHAR, home_team VARCHAR) |
SELECT SUM(rating) FROM table_name_69 WHERE viewers__m_ = 13.47 AND overall_rank > 6 | What is the rating of the episode with 13.47 million viewers and overall rank larger than 6? | CREATE TABLE table_name_69 (rating INTEGER, viewers__m_ VARCHAR, overall_rank VARCHAR) |
SELECT MAX(pick) FROM table_name_41 WHERE year > 2010 AND round > 1 | What is the highest pick for a year after 2010 and a round larger than 1? | CREATE TABLE table_name_41 (pick INTEGER, year VARCHAR, round VARCHAR) |
SELECT position FROM table_11734041_11 WHERE years_for_rockets = "2006" | What is the position for the player that played in 2006? | CREATE TABLE table_11734041_11 (position VARCHAR, years_for_rockets VARCHAR) |
SELECT T3.title FROM albums AS T1 JOIN tracklists AS T2 ON T1.aid = T2.albumid JOIN songs AS T3 ON T2.songid = T3.songid WHERE t1.label = "Universal Music Group" | What are all the songs in albums under label "Universal Music Group"? | CREATE TABLE songs (title VARCHAR, songid VARCHAR); CREATE TABLE albums (aid VARCHAR); CREATE TABLE tracklists (albumid VARCHAR, songid VARCHAR) |
SELECT pop_density__km_2__ FROM table_1828368_1 WHERE area__km_2__ = "28.3" | What are the population densities of all communes with an are of 28.3 sq.km.? | CREATE TABLE table_1828368_1 (pop_density__km_2__ VARCHAR, area__km_2__ VARCHAR) |
SELECT laps FROM table_name_67 WHERE rank = "14" AND start = "16" | Name the laps for rank of 14 and start of 16 | CREATE TABLE table_name_67 (laps VARCHAR, rank VARCHAR, start VARCHAR) |
SELECT COUNT(no_in_series) FROM table_11058032_1 WHERE us_viewers__millions_ = "16.03" | How many episodes had 16.03 million viewers? | CREATE TABLE table_11058032_1 (no_in_series VARCHAR, us_viewers__millions_ VARCHAR) |
SELECT song_choice FROM table_12310814_1 WHERE original_artist = "Rickie Lee Jones" | Which one of the songs was originally performed by Rickie Lee Jones? | CREATE TABLE table_12310814_1 (song_choice VARCHAR, original_artist VARCHAR) |
SELECT label FROM table_name_57 WHERE catalogue__number = "cad 2014 cd" | What is the label for CAD 2014 CD? | CREATE TABLE table_name_57 (label VARCHAR, catalogue__number VARCHAR) |
SELECT MAX(br_no) FROM table_name_39 WHERE secr_no = 765 | What is the highest BR number with a SECR number of 765? | CREATE TABLE table_name_39 (br_no INTEGER, secr_no VARCHAR) |
SELECT away_team AS score FROM table_name_85 WHERE venue = "kardinia park" | What did the away team score at Kardinia Park? | CREATE TABLE table_name_85 (away_team VARCHAR, venue VARCHAR) |
SELECT name FROM table_name_35 WHERE laps = 50 AND grid > 9 AND team = "jim beam racing" AND time_retired = "+ 18.0s" | What is Name, when Laps is "50", when Grid is greater than 9, when Team is "Jim Beam Racing", and when Time/Retired is "+ 18.0s"? | CREATE TABLE table_name_35 (name VARCHAR, time_retired VARCHAR, team VARCHAR, laps VARCHAR, grid VARCHAR) |
SELECT SUM(date) FROM table_name_71 WHERE catalog = "nebbc003" | What is the total number of Dates during which the Catalog nebbc003 was given? | CREATE TABLE table_name_71 (date INTEGER, catalog VARCHAR) |
SELECT SUM(viewers_)[live] AS __m_ FROM table_name_77 WHERE share > 5 | What is the sum of the live viewers for episodes with share over 5? | CREATE TABLE table_name_77 (live VARCHAR, share INTEGER, viewers_ INTEGER) |
SELECT area__km²_ FROM table_23887174_1 WHERE province__ashkharh_ = "Persarmenia" | How big (in km2) is Persarmenia? | CREATE TABLE table_23887174_1 (area__km²_ VARCHAR, province__ashkharh_ VARCHAR) |
SELECT player FROM table_name_44 WHERE date = "31 jan. 2008" AND transfer_fee = "£3.87m" | Which Player had a Date of 31 jan. 2008, and a Transfer fee of £3.87m? | CREATE TABLE table_name_44 (player VARCHAR, date VARCHAR, transfer_fee VARCHAR) |
SELECT AVG(wins) FROM table_name_91 WHERE goal_difference > 12 AND club = "granada cf" AND played > 30 | Which Wins have a Goal Difference larger than 12, and a Club of granada cf, and Played larger than 30? | CREATE TABLE table_name_91 (wins INTEGER, played VARCHAR, goal_difference VARCHAR, club VARCHAR) |
SELECT destination FROM table_1569516_1 WHERE service_pattern = "Sydenham then fast to Norwood Junction" | Where is the service pattern sydenham then fast to norwood junction? | CREATE TABLE table_1569516_1 (destination VARCHAR, service_pattern VARCHAR) |
SELECT MIN(place) FROM table_name_95 WHERE language = "croatian" | what is the lowest place when the language is croatian? | CREATE TABLE table_name_95 (place INTEGER, language VARCHAR) |
SELECT iata FROM table_name_7 WHERE airport = "shahjalal international airport" | What is the IATA code for SHahjalal International Airport? | CREATE TABLE table_name_7 (iata VARCHAR, airport VARCHAR) |
SELECT away_team FROM table_name_89 WHERE venue = "arden street oval" | Which away team plays at Arden Street Oval? | CREATE TABLE table_name_89 (away_team VARCHAR, venue VARCHAR) |
SELECT COUNT(episode_number) FROM table_1590967_6 WHERE coat_of_cash_wearing_celebrity = "Matt Di Angelo" | Name the total number of episodes for coat of cash wearing celebrity is matt di angelo | CREATE TABLE table_1590967_6 (episode_number VARCHAR, coat_of_cash_wearing_celebrity VARCHAR) |
SELECT finished FROM table_name_84 WHERE celebrity = "camilla dallerup" | When did camilla dallerup finish? | CREATE TABLE table_name_84 (finished VARCHAR, celebrity VARCHAR) |
SELECT AVG(bronze) FROM table_name_32 WHERE total < 1 | Name the average bronze for total less than 1 | CREATE TABLE table_name_32 (bronze INTEGER, total INTEGER) |
SELECT SUM(accidentally_achieved) FROM table_name_19 WHERE orbital_regime = "medium earth" AND successes > 3 | What is the total of medium earth orbital regime, accidentally achieved and successes greater than 3? | CREATE TABLE table_name_19 (accidentally_achieved INTEGER, orbital_regime VARCHAR, successes VARCHAR) |
SELECT visitor FROM table_name_14 WHERE date = "february 21" | Which visitor visited on February 21? | CREATE TABLE table_name_14 (visitor VARCHAR, date VARCHAR) |
SELECT subj_pres FROM table_name_78 WHERE plur_pret = "u" AND sing_pret = "ou" AND sing_pres = "û" | What is the subjunctive present that is associated with a plural preterite of u, a singular preterite of ou, and a singular present of û? | CREATE TABLE table_name_78 (subj_pres VARCHAR, sing_pres VARCHAR, plur_pret VARCHAR, sing_pret VARCHAR) |
SELECT position FROM table_name_65 WHERE drawn < "2" AND difference = "2" | What is the Position when the Drawn is less than 2, with a Difference of 2? | CREATE TABLE table_name_65 (position VARCHAR, drawn VARCHAR, difference VARCHAR) |
SELECT COUNT(date_of_vacancy) FROM table_14406743_5 WHERE manner_of_departure = "Resigned" AND outgoing_manager = "Geninho" | Name the total number of date of vacancy for manner of departure being resigned and outgoing manager is geninho | CREATE TABLE table_14406743_5 (date_of_vacancy VARCHAR, manner_of_departure VARCHAR, outgoing_manager VARCHAR) |
SELECT player FROM table_name_78 WHERE round = 17 | what player score is higher than 17 | CREATE TABLE table_name_78 (player VARCHAR, round VARCHAR) |
SELECT college_junior_club_team FROM table_2679061_6 WHERE player = "Don Barber" | What is the college/junior/club team for player don barber? | CREATE TABLE table_2679061_6 (college_junior_club_team VARCHAR, player VARCHAR) |
SELECT season FROM table_name_7 WHERE races < 16 | What is Season, when Races is less than 16? | CREATE TABLE table_name_7 (season VARCHAR, races INTEGER) |
SELECT COUNT(pinyin) FROM table_1216675_1 WHERE chinese = "釋蟲" | How many pinyin transaltions are available for the chinese phrase 釋蟲? | CREATE TABLE table_1216675_1 (pinyin VARCHAR, chinese VARCHAR) |
SELECT COUNT(ep) FROM table_20967430_4 WHERE prod_code = "5M13" | How many episodes had a production code of 5m13? | CREATE TABLE table_20967430_4 (ep VARCHAR, prod_code VARCHAR) |
SELECT crowd FROM table_name_28 WHERE home_team = "footscray" | What is the size of the crowd for the home team of Footscray? | CREATE TABLE table_name_28 (crowd VARCHAR, home_team VARCHAR) |
SELECT outcome FROM table_name_52 WHERE year > 1998 AND tournament = "malaysia satellite" | Which Malaysia Satellite tournaments were played after 1998? | CREATE TABLE table_name_52 (outcome VARCHAR, year VARCHAR, tournament VARCHAR) |
SELECT tie_no FROM table_name_87 WHERE away_team = "huddersfield town" | Which tie did Huddersfield Town play as an away team? | CREATE TABLE table_name_87 (tie_no VARCHAR, away_team VARCHAR) |
SELECT incumbent FROM table_1342331_5 WHERE district = "Arkansas 1" | who is the the incumbent with dbeingtrict being arkansas 1 | CREATE TABLE table_1342331_5 (incumbent VARCHAR, district VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.