question stringlengths 12 244 | create_table_statement stringlengths 97 895 | sql_query stringlengths 27 479 | wiki_sql_table_id stringlengths 8 14 |
|---|---|---|---|
Name the phoneme when the realizationis [ɑ] | CREATE TABLE "tamazight_vowel_allophony" (
"phoneme" text,
"realization" text,
"environment" text,
"example" text,
"gloss" text
); | SELECT "phoneme" FROM "tamazight_vowel_allophony" WHERE "realization"='[ɑ]'; | 2-12052170-4 |
What is the power of the engine with an engine code m44b19? | CREATE TABLE "engines_and_performance" (
"name" text,
"power" text,
"torque" text,
"size" text,
"engine_code" text,
"0_100km_h_s" real,
"top_speed" text,
"years" text
); | SELECT "power" FROM "engines_and_performance" WHERE "engine_code"='m44b19'; | 2-1180976-1 |
What is the highest numbered grid for piercarlo ghinzani with over 3 laps? | CREATE TABLE "classification" (
"driver" text,
"constructor" text,
"laps" real,
"time_retired" text,
"grid" real
); | SELECT MAX("grid") FROM "classification" WHERE "driver"='piercarlo ghinzani' AND "laps">3; | 2-1122961-1 |
How many laps for a grid of over 18 and retired due to electrical failure? | CREATE TABLE "classification" (
"driver" text,
"constructor" text,
"laps" real,
"time_retired" text,
"grid" real
); | SELECT SUM("laps") FROM "classification" WHERE "grid">18 AND "time_retired"='electrical'; | 2-1122961-1 |
What was the crowd attendance for the game with an away team score of 14.10 (94)? | CREATE TABLE "round_2" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT SUM("crowd") FROM "round_2" WHERE "away_team_score"='14.10 (94)'; | 2-10807253-2 |
What was the average crowd attendance for the Junction Oval venue? | CREATE TABLE "round_2" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT AVG("crowd") FROM "round_2" WHERE "venue"='junction oval'; | 2-10807253-2 |
What is the home team for the Princes Park venue? | CREATE TABLE "round_2" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT "home_team" FROM "round_2" WHERE "venue"='princes park'; | 2-10807253-2 |
What is the average home team score for Footscray? | CREATE TABLE "round_2" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT "home_team_score" FROM "round_2" WHERE "home_team"='footscray'; | 2-10807253-2 |
Which home teams had Geelong as the away team? | CREATE TABLE "round_2" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT "home_team" FROM "round_2" WHERE "away_team"='geelong'; | 2-10807253-2 |
When did the Rockies play the Giants with an attendance over 24,100? | CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"attendance" real,
"record" text
); | SELECT "date" FROM "game_log" WHERE "opponent"='giants' AND "attendance">'24,100'; | 2-11513685-6 |
What is the date of the game when the Rockies had a record of 61–66? | CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"attendance" real,
"record" text
); | SELECT "date" FROM "game_log" WHERE "record"='61–66'; | 2-11513685-6 |
How many seasons has John Mcfadden coached? | CREATE TABLE "data_prior_to_the_2012_ncaa_tournament" (
"coach" text,
"years" text,
"seasons" real,
"lost" real,
"pct" real
); | SELECT COUNT("seasons") FROM "data_prior_to_the_2012_ncaa_tournament" WHERE "coach"='john mcfadden'; | 2-11868708-2 |
What is the station with the most riders that has an annaul ridership of 4,445,100 and line smaller than 1?? | CREATE TABLE "see_also" (
"annual_ridership_2012" real,
"rider_per_mile" real,
"opened" real,
"stations" real,
"lines" real
); | SELECT MAX("stations") FROM "see_also" WHERE "annual_ridership_2012"='4,445,100' AND "lines"<1; | 2-10978010-1 |
What is the number of annual ridership with a station that has more than 13 stations and larger than 4 lines? | CREATE TABLE "see_also" (
"annual_ridership_2012" real,
"rider_per_mile" real,
"opened" real,
"stations" real,
"lines" real
); | SELECT SUM("annual_ridership_2012") FROM "see_also" WHERE "stations"=13 AND "lines">4; | 2-10978010-1 |
How many lines have fewer than 44 stations and fewer than 881 riders per mile? | CREATE TABLE "see_also" (
"annual_ridership_2012" real,
"rider_per_mile" real,
"opened" real,
"stations" real,
"lines" real
); | SELECT COUNT("lines") FROM "see_also" WHERE "stations"<44 AND "rider_per_mile"<881; | 2-10978010-1 |
Which station has 3,871 riders per mile, and an annual ridership in 2012 of larger than 15,399,400? | CREATE TABLE "see_also" (
"annual_ridership_2012" real,
"rider_per_mile" real,
"opened" real,
"stations" real,
"lines" real
); | SELECT MAX("stations") FROM "see_also" WHERE "rider_per_mile"='3,871' AND "annual_ridership_2012">'15,399,400'; | 2-10978010-1 |
What is the highest season for the 7th position? | CREATE TABLE "season_to_season" (
"season" real,
"level" text,
"division" text,
"administration" text,
"position" text
); | SELECT MAX("season") FROM "season_to_season" WHERE "position"='7th'; | 2-10970003-2 |
Who is the opponent in the final of the Tournament of Blenheim? | CREATE TABLE "singles_titles" (
"date" text,
"tournament" text,
"surface" text,
"opponent_in_the_final" text,
"score" text
); | SELECT "opponent_in_the_final" FROM "singles_titles" WHERE "tournament"='blenheim'; | 2-12022912-2 |
Who is the opponent in the final on August 14, 2006? | CREATE TABLE "singles_titles" (
"date" text,
"tournament" text,
"surface" text,
"opponent_in_the_final" text,
"score" text
); | SELECT "opponent_in_the_final" FROM "singles_titles" WHERE "date"='august 14, 2006'; | 2-12022912-2 |
Who is the opponent in the final with a clay surface at the Tournament of Lyneham? | CREATE TABLE "singles_titles" (
"date" text,
"tournament" text,
"surface" text,
"opponent_in_the_final" text,
"score" text
); | SELECT "opponent_in_the_final" FROM "singles_titles" WHERE "surface"='clay' AND "tournament"='lyneham'; | 2-12022912-2 |
On what surface was the score 6–2, 6–1? | CREATE TABLE "singles_titles" (
"date" text,
"tournament" text,
"surface" text,
"opponent_in_the_final" text,
"score" text
); | SELECT "surface" FROM "singles_titles" WHERE "score"='6–2, 6–1'; | 2-12022912-2 |
What is the score for the Tournament of Cordenons? | CREATE TABLE "singles_titles" (
"date" text,
"tournament" text,
"surface" text,
"opponent_in_the_final" text,
"score" text
); | SELECT "score" FROM "singles_titles" WHERE "tournament"='cordenons'; | 2-12022912-2 |
On what date was the surface clay with Cyril Saulnier as the opponent in the final? | CREATE TABLE "singles_titles" (
"date" text,
"tournament" text,
"surface" text,
"opponent_in_the_final" text,
"score" text
); | SELECT "date" FROM "singles_titles" WHERE "surface"='clay' AND "opponent_in_the_final"='cyril saulnier'; | 2-12022912-2 |
Which artist has a Mintage of 500? | CREATE TABLE "provincial_coat_of_arms" (
"year" real,
"theme" text,
"artist" text,
"composition" text,
"mintage" real,
"issue_price" text
); | SELECT "artist" FROM "provincial_coat_of_arms" WHERE "mintage"=500; | 2-11916083-69 |
Which Artist has an Issue Price of $1,541.95? | CREATE TABLE "provincial_coat_of_arms" (
"year" real,
"theme" text,
"artist" text,
"composition" text,
"mintage" real,
"issue_price" text
); | SELECT "artist" FROM "provincial_coat_of_arms" WHERE "issue_price"='$1,541.95'; | 2-11916083-69 |
Who is the opponent in the final on a hard surface with a score of 6–3 7–6(5)? | CREATE TABLE "singles_titles" (
"date" text,
"tournament" text,
"surface" text,
"opponent_in_the_final" text,
"score" text
); | SELECT "opponent_in_the_final" FROM "singles_titles" WHERE "surface"='hard' AND "score"='6–3 7–6(5)'; | 2-11976006-2 |
Who is the opponent in the Tournament of Lahore final? | CREATE TABLE "singles_titles" (
"date" text,
"tournament" text,
"surface" text,
"opponent_in_the_final" text,
"score" text
); | SELECT "opponent_in_the_final" FROM "singles_titles" WHERE "tournament"='lahore'; | 2-11976006-2 |
On what date did the opponent in the Toshiaki Sakai final play on a grass surface? | CREATE TABLE "singles_titles" (
"date" text,
"tournament" text,
"surface" text,
"opponent_in_the_final" text,
"score" text
); | SELECT "date" FROM "singles_titles" WHERE "opponent_in_the_final"='toshiaki sakai' AND "surface"='grass'; | 2-11976006-2 |
On what surface did a score of 4–6 6–3 6–4 occur at the Tournament of Lahore? | CREATE TABLE "singles_titles" (
"date" text,
"tournament" text,
"surface" text,
"opponent_in_the_final" text,
"score" text
); | SELECT "surface" FROM "singles_titles" WHERE "tournament"='lahore' AND "score"='4–6 6–3 6–4'; | 2-11976006-2 |
Which tournament had Toshiaki Sakai as an opponent in the final on a grass surface? | CREATE TABLE "singles_titles" (
"date" text,
"tournament" text,
"surface" text,
"opponent_in_the_final" text,
"score" text
); | SELECT "tournament" FROM "singles_titles" WHERE "opponent_in_the_final"='toshiaki sakai' AND "surface"='grass'; | 2-11976006-2 |
what was the score on the game that happened on May 15? | CREATE TABLE "eastern_conference_semi_finals_vs_4_wash" (
"date" text,
"visitor" text,
"score" text,
"home" text,
"record" text
); | SELECT "score" FROM "eastern_conference_semi_finals_vs_4_wash" WHERE "date"='may 15'; | 2-11293024-3 |
What is the status of bel with a Transfer window of winter? | CREATE TABLE "loaned_out" (
"name" text,
"country" text,
"status" text,
"moving_to" text,
"transfer_window" text,
"transfer_fee" text
); | SELECT "status" FROM "loaned_out" WHERE "country"='bel' AND "transfer_window"='winter'; | 2-12098629-4 |
What is the union moving name and is from cmr? | CREATE TABLE "loaned_out" (
"name" text,
"country" text,
"status" text,
"moving_to" text,
"transfer_window" text,
"transfer_fee" text
); | SELECT "name" FROM "loaned_out" WHERE "moving_to"='union' AND "country"='cmr'; | 2-12098629-4 |
What is the transfer window for bel? | CREATE TABLE "loaned_out" (
"name" text,
"country" text,
"status" text,
"moving_to" text,
"transfer_window" text,
"transfer_fee" text
); | SELECT "transfer_window" FROM "loaned_out" WHERE "country"='bel'; | 2-12098629-4 |
What is the transfer period for habarugira? | CREATE TABLE "loaned_out" (
"name" text,
"country" text,
"status" text,
"moving_to" text,
"transfer_window" text,
"transfer_fee" text
); | SELECT "transfer_window" FROM "loaned_out" WHERE "name"='habarugira'; | 2-12098629-4 |
How big was the crowd in game that featured the visiting team of north melbourne? | CREATE TABLE "round_11" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT "crowd" FROM "round_11" WHERE "away_team"='north melbourne'; | 2-10823719-11 |
How many bronze medals for the nation with less than 1 total? | CREATE TABLE "medals_table" (
"rank" real,
"nation" text,
"gold" real,
"silver" real,
"bronze" real,
"total" real
); | SELECT MAX("bronze") FROM "medals_table" WHERE "total"<1; | 2-11691613-1 |
How many bronze medals for the nation ranked above 2, and under 0 golds? | CREATE TABLE "medals_table" (
"rank" real,
"nation" text,
"gold" real,
"silver" real,
"bronze" real,
"total" real
); | SELECT COUNT("bronze") FROM "medals_table" WHERE "rank"<2 AND "gold"<0; | 2-11691613-1 |
How many silvers for japan (1 gold)? | CREATE TABLE "medals_table" (
"rank" real,
"nation" text,
"gold" real,
"silver" real,
"bronze" real,
"total" real
); | SELECT SUM("silver") FROM "medals_table" WHERE "nation"='japan' AND "gold">1; | 2-11691613-1 |
Which authority had a role of 651? | CREATE TABLE "papakura_local_board" (
"name" text,
"years" text,
"gender" text,
"area" text,
"authority" text,
"decile" real,
"roll" real
); | SELECT "authority" FROM "papakura_local_board" WHERE "roll"=651; | 2-12017602-20 |
For the roll of 651, what was the lowest Decile? | CREATE TABLE "papakura_local_board" (
"name" text,
"years" text,
"gender" text,
"area" text,
"authority" text,
"decile" real,
"roll" real
); | SELECT MIN("decile") FROM "papakura_local_board" WHERE "roll"=651; | 2-12017602-20 |
What were the years for Redhill school, authority of state? | CREATE TABLE "papakura_local_board" (
"name" text,
"years" text,
"gender" text,
"area" text,
"authority" text,
"decile" real,
"roll" real
); | SELECT "years" FROM "papakura_local_board" WHERE "authority"='state' AND "name"='redhill school'; | 2-12017602-20 |
What was the sum roll of Karaka area? | CREATE TABLE "papakura_local_board" (
"name" text,
"years" text,
"gender" text,
"area" text,
"authority" text,
"decile" real,
"roll" real
); | SELECT SUM("roll") FROM "papakura_local_board" WHERE "area"='karaka'; | 2-12017602-20 |
What home team played North Melbourne? | CREATE TABLE "round_16" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT "home_team" FROM "round_16" WHERE "away_team"='north melbourne'; | 2-10808089-16 |
What is the average crowd where the home team scored 8.15 (63)? | CREATE TABLE "round_9" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT AVG("crowd") FROM "round_9" WHERE "home_team_score"='8.15 (63)'; | 2-10809142-9 |
What is the nationality of the player with a round after 4 and plays right wing? | CREATE TABLE "draft_picks" (
"round" real,
"player" text,
"position" text,
"nationality" text,
"college_junior_club_team_league" text
); | SELECT "nationality" FROM "draft_picks" WHERE "round">4 AND "position"='right wing'; | 2-11801912-19 |
What is the college/junior/club team (league) of left wing Ondrej Roman? | CREATE TABLE "draft_picks" (
"round" real,
"player" text,
"position" text,
"nationality" text,
"college_junior_club_team_league" text
); | SELECT "college_junior_club_team_league" FROM "draft_picks" WHERE "position"='left wing' AND "player"='ondrej roman'; | 2-11801912-19 |
Who played in lake oval while away? | CREATE TABLE "round_14" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT "away_team" FROM "round_14" WHERE "venue"='lake oval'; | 2-10809529-14 |
What was the home score when the away team scored 16.11 (107)? | CREATE TABLE "round_14" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT "home_team" FROM "round_14" WHERE "away_team_score"='16.11 (107)'; | 2-10809529-14 |
What was the home score when the away team scored 5.9 (39)? | CREATE TABLE "round_14" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT "home_team" FROM "round_14" WHERE "away_team_score"='5.9 (39)'; | 2-10809529-14 |
When did the away team score 17.11 (113)? | CREATE TABLE "round_14" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT "date" FROM "round_14" WHERE "away_team_score"='17.11 (113)'; | 2-10809529-14 |
What is the low crowd size when the away team scored 17.11 (113)? | CREATE TABLE "round_14" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT MIN("crowd") FROM "round_14" WHERE "away_team_score"='17.11 (113)'; | 2-10809529-14 |
What week number saw a w 31-16 result? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"attendance" text
); | SELECT MIN("week") FROM "schedule" WHERE "result"='w 31-16'; | 2-11389657-1 |
When was the game before week 8 with a result of bye? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"attendance" text
); | SELECT "date" FROM "schedule" WHERE "week"<8 AND "result"='bye'; | 2-11389657-1 |
What week number had the New York Giants as opponent? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"attendance" text
); | SELECT COUNT("week") FROM "schedule" WHERE "opponent"='new york giants'; | 2-11389657-1 |
Who built the under grid 6 car with under 49 laps? | CREATE TABLE "race" (
"driver" text,
"constructor" text,
"laps" real,
"time_retired" text,
"grid" real
); | SELECT "constructor" FROM "race" WHERE "grid"<6 AND "laps"<49; | 2-1123418-2 |
Who built the grid 2 car? | CREATE TABLE "race" (
"driver" text,
"constructor" text,
"laps" real,
"time_retired" text,
"grid" real
); | SELECT "constructor" FROM "race" WHERE "grid"=2; | 2-1123418-2 |
Who built the car that retired due to suspension before 65 laps? | CREATE TABLE "race" (
"driver" text,
"constructor" text,
"laps" real,
"time_retired" text,
"grid" real
); | SELECT "constructor" FROM "race" WHERE "laps"<65 AND "time_retired"='suspension'; | 2-1123418-2 |
What Valley Vista has a Dysart of 1668? | CREATE TABLE "high_schools_in_dysart_usd" (
"information" text,
"dysart" text,
"shadow_ridge" text,
"valley_vista" text,
"willow_canyon" text
); | SELECT "valley_vista" FROM "high_schools_in_dysart_usd" WHERE "dysart"='1668'; | 2-11340432-1 |
What Valley Vista has a Willow Canyon of 2169? | CREATE TABLE "high_schools_in_dysart_usd" (
"information" text,
"dysart" text,
"shadow_ridge" text,
"valley_vista" text,
"willow_canyon" text
); | SELECT "valley_vista" FROM "high_schools_in_dysart_usd" WHERE "willow_canyon"='2169'; | 2-11340432-1 |
How many people were in the crowd at Lake Oval? | CREATE TABLE "round_14" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT "crowd" FROM "round_14" WHERE "venue"='lake oval'; | 2-10823950-14 |
Where was the game played when Geelong was the away team? | CREATE TABLE "round_14" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT "venue" FROM "round_14" WHERE "away_team"='geelong'; | 2-10823950-14 |
What team was the home team on 27 june 1981, at vfl park? | CREATE TABLE "round_14" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT "home_team" FROM "round_14" WHERE "date"='27 june 1981' AND "venue"='vfl park'; | 2-10823950-14 |
What is the tyre with a 56 chassis? | CREATE TABLE "teams_and_drivers" (
"entrant" text,
"constructor" text,
"chassis" text,
"engine" text,
"tyre" text,
"driver" text,
"rounds" text
); | SELECT "tyre" FROM "teams_and_drivers" WHERE "chassis"='56'; | 2-1140112-2 |
Which country has a GDP (nominal) of $29.9 billion? | CREATE TABLE "prospective_members" (
"country" text,
"population" text,
"area_km" text,
"gdp_nominal" text,
"gdp_per_capita_nominal" text
); | SELECT "country" FROM "prospective_members" WHERE "gdp_nominal"='$29.9 billion'; | 2-11780179-1 |
Which country has a GDP (nominal) of $29.9 billion? | CREATE TABLE "prospective_members" (
"country" text,
"population" text,
"area_km" text,
"gdp_nominal" text,
"gdp_per_capita_nominal" text
); | SELECT "country" FROM "prospective_members" WHERE "gdp_nominal"='$29.9 billion'; | 2-11780179-1 |
Which GDP (nominal) has a Population of 5,550,239? | CREATE TABLE "prospective_members" (
"country" text,
"population" text,
"area_km" text,
"gdp_nominal" text,
"gdp_per_capita_nominal" text
); | SELECT "gdp_nominal" FROM "prospective_members" WHERE "population"='5,550,239'; | 2-11780179-1 |
Which population has a GDP (nominal) of $6.4 billion? | CREATE TABLE "prospective_members" (
"country" text,
"population" text,
"area_km" text,
"gdp_nominal" text,
"gdp_per_capita_nominal" text
); | SELECT "population" FROM "prospective_members" WHERE "gdp_nominal"='$6.4 billion'; | 2-11780179-1 |
Which country has a GDP (nominal) of $29.9 billion? | CREATE TABLE "prospective_members" (
"country" text,
"population" text,
"area_km" text,
"gdp_nominal" text,
"gdp_per_capita_nominal" text
); | SELECT "country" FROM "prospective_members" WHERE "gdp_nominal"='$29.9 billion'; | 2-11780179-1 |
What is the GDP (nominal) with Population of 5,125,693? | CREATE TABLE "prospective_members" (
"country" text,
"population" text,
"area_km" text,
"gdp_nominal" text,
"gdp_per_capita_nominal" text
); | SELECT "gdp_per_capita_nominal" FROM "prospective_members" WHERE "population"='5,125,693'; | 2-11780179-1 |
What is the earliest year for 9 points? | CREATE TABLE "complete_formula_one_results" (
"year" real,
"chassis" text,
"engine" text,
"tyres" text,
"points" real
); | SELECT MIN("year") FROM "complete_formula_one_results" WHERE "points"=9; | 2-1118425-1 |
What is the low score for the jaguar r3 chasis? | CREATE TABLE "complete_formula_one_results" (
"year" real,
"chassis" text,
"engine" text,
"tyres" text,
"points" real
); | SELECT MIN("points") FROM "complete_formula_one_results" WHERE "chassis"='jaguar r3'; | 2-1118425-1 |
What is the notes when the displacement is 220cid (3,604cc)? | CREATE TABLE "engines" (
"years" text,
"engine" text,
"displacement" text,
"power" text,
"torque" text,
"notes" text
); | SELECT "notes" FROM "engines" WHERE "displacement"='220cid (3,604cc)'; | 2-1105695-13 |
What is then engine when the notes state srt8? | CREATE TABLE "engines" (
"years" text,
"engine" text,
"displacement" text,
"power" text,
"torque" text,
"notes" text
); | SELECT "engine" FROM "engines" WHERE "notes"='srt8'; | 2-1105695-13 |
What is the power when the displacement is 182cid (2,988cc) and the notes are eu spec? | CREATE TABLE "engines" (
"years" text,
"engine" text,
"displacement" text,
"power" text,
"torque" text,
"notes" text
); | SELECT "power" FROM "engines" WHERE "displacement"='182cid (2,988cc)' AND "notes"='eu spec'; | 2-1105695-13 |
What is the engine for year 2012-? | CREATE TABLE "engines" (
"years" text,
"engine" text,
"displacement" text,
"power" text,
"torque" text,
"notes" text
); | SELECT "engine" FROM "engines" WHERE "years"='2012-'; | 2-1105695-13 |
What is the record of the match with Columbus as the home team on March 7? | CREATE TABLE "march" (
"date" text,
"visitor" text,
"score" text,
"home" text,
"decision" text,
"attendance" real,
"record" text
); | SELECT "record" FROM "march" WHERE "home"='columbus' AND "date"='march 7'; | 2-11775918-8 |
What is the record of the game on March 18? | CREATE TABLE "march" (
"date" text,
"visitor" text,
"score" text,
"home" text,
"decision" text,
"attendance" real,
"record" text
); | SELECT "record" FROM "march" WHERE "date"='march 18'; | 2-11775918-8 |
Which height has a College of wyoming, and a Name of guy frazier? | CREATE TABLE "nfl_professionals" (
"name" text,
"position" text,
"height" text,
"weight_lbs" real,
"born" text,
"college" text,
"drafted" text
); | SELECT "height" FROM "nfl_professionals" WHERE "college"='wyoming' AND "name"='guy frazier'; | 2-1198175-1 |
Which season's winner is Panathinaikos and is located in Athens? | CREATE TABLE "finals" (
"season" text,
"date" text,
"winners" text,
"score" text,
"runners_up" text,
"venue" text,
"location" text
); | SELECT "season" FROM "finals" WHERE "location"='athens' AND "winners"='panathinaikos'; | 2-11107697-1 |
What date did an Away team score 14.16 (100)? | CREATE TABLE "round_4" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT "date" FROM "round_4" WHERE "away_team_score"='14.16 (100)'; | 2-10806592-4 |
What is the score of the Away team that played against a Home team that scored 17.19 (121)? | CREATE TABLE "round_4" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT "away_team_score" FROM "round_4" WHERE "home_team_score"='17.19 (121)'; | 2-10806592-4 |
What Away team scored 14.17 (101) and had a crowd attendance larger than 14,000? | CREATE TABLE "round_4" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT "away_team" FROM "round_4" WHERE "crowd">'14,000' AND "home_team_score"='14.17 (101)'; | 2-10806592-4 |
What is the date recorded of Hate? | CREATE TABLE "track_listing" (
"track" real,
"title" text,
"translation" text,
"composer" text,
"recorded" text
); | SELECT "recorded" FROM "track_listing" WHERE "translation"='hate'; | 2-1186988-1 |
Who is the composer on the tracks less than 4? | CREATE TABLE "track_listing" (
"track" real,
"title" text,
"translation" text,
"composer" text,
"recorded" text
); | SELECT "composer" FROM "track_listing" WHERE "track"<4; | 2-1186988-1 |
What is the title of track 7? | CREATE TABLE "track_listing" (
"track" real,
"title" text,
"translation" text,
"composer" text,
"recorded" text
); | SELECT "title" FROM "track_listing" WHERE "track"=7; | 2-1186988-1 |
What is the recorded date of track 8? | CREATE TABLE "track_listing" (
"track" real,
"title" text,
"translation" text,
"composer" text,
"recorded" text
); | SELECT "recorded" FROM "track_listing" WHERE "track"=8; | 2-1186988-1 |
How many number Builts had unit numbers of 375301-310? | CREATE TABLE "fleet_details" (
"class" text,
"type" text,
"operator" text,
"no_built" real,
"year_built" text,
"cars_per_set" real,
"unit_nos" text
); | SELECT SUM("no_built") FROM "fleet_details" WHERE "unit_nos"='375301-310'; | 2-1112802-1 |
What was the score of the game where Montreal was the home team and the Devils had a record of 40–24–6? | CREATE TABLE "march" (
"date" text,
"visitor" text,
"score" text,
"home" text,
"decision" text,
"attendance" real,
"record" text
); | SELECT "score" FROM "march" WHERE "home"='montreal' AND "record"='40–24–6'; | 2-11902366-8 |
Which location has 140 stores? | CREATE TABLE "statistics" (
"mall_name" text,
"location" text,
"retail_space_sq_feet_m" text,
"stores" text,
"year_opened" real
); | SELECT "location" FROM "statistics" WHERE "stores"='140'; | 2-1155748-2 |
Which year did the Short Pump Town Center Mall open? | CREATE TABLE "statistics" (
"mall_name" text,
"location" text,
"retail_space_sq_feet_m" text,
"stores" text,
"year_opened" real
); | SELECT "year_opened" FROM "statistics" WHERE "mall_name"='short pump town center'; | 2-1155748-2 |
What is the retail space of the Stony Point Fashion Park Mall? | CREATE TABLE "statistics" (
"mall_name" text,
"location" text,
"retail_space_sq_feet_m" text,
"stores" text,
"year_opened" real
); | SELECT "retail_space_sq_feet_m" FROM "statistics" WHERE "mall_name"='stony point fashion park'; | 2-1155748-2 |
Which Mall has 140 stores? | CREATE TABLE "statistics" (
"mall_name" text,
"location" text,
"retail_space_sq_feet_m" text,
"stores" text,
"year_opened" real
); | SELECT "mall_name" FROM "statistics" WHERE "stores"='140'; | 2-1155748-2 |
What match was on 30 january 1938? | CREATE TABLE "list_of_derby_del_sole_results" (
"season" text,
"match" text,
"result" text,
"league" text,
"date" text
); | SELECT "match" FROM "list_of_derby_del_sole_results" WHERE "date"='30 january 1938'; | 2-12036377-1 |
What was the result of the napoli-roma match? | CREATE TABLE "list_of_derby_del_sole_results" (
"season" text,
"match" text,
"result" text,
"league" text,
"date" text
); | SELECT "result" FROM "list_of_derby_del_sole_results" WHERE "match"='napoli-roma'; | 2-12036377-1 |
What is the player that is from seattle prep? | CREATE TABLE "2006_boys_team" (
"player" text,
"height" text,
"school" text,
"hometown" text,
"college" text
); | SELECT "player" FROM "2006_boys_team" WHERE "school"='seattle prep'; | 2-11677760-14 |
What is the hometown of the player which has a height of 6-0? | CREATE TABLE "2006_boys_team" (
"player" text,
"height" text,
"school" text,
"hometown" text,
"college" text
); | SELECT "hometown" FROM "2006_boys_team" WHERE "height"='6-0'; | 2-11677760-14 |
What is the hometown for the player that went to the college of washington | CREATE TABLE "2006_boys_team" (
"player" text,
"height" text,
"school" text,
"hometown" text,
"college" text
); | SELECT "hometown" FROM "2006_boys_team" WHERE "college"='washington'; | 2-11677760-14 |
What was the away team's score at Princes Park? | CREATE TABLE "round_15" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT "away_team" FROM "round_15" WHERE "venue"='princes park'; | 2-10789881-15 |
When did Richmond play an away game against Collingwood? | CREATE TABLE "round_15" (
"home_team" text,
"home_team_score" text,
"away_team" text,
"away_team_score" text,
"venue" text,
"crowd" real,
"date" text
); | SELECT "date" FROM "round_15" WHERE "away_team"='richmond'; | 2-10789881-15 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.