question
stringlengths 19
162
| table_info
stringlengths 39
951
| sql_query
stringlengths 24
181
|
---|---|---|
In what year did the #14 FitzBradshaw Racing compete? | CREATE TABLE table_1909647_2 (
year VARCHAR,
team_s_ VARCHAR
) | SELECT year FROM table_1909647_2 WHERE team_s_ LIKE '%#14 fitzbradshaw racing%' |
What city is the school that had less than 17 titles in boys basketball with the last title being after 2005? | CREATE TABLE table_name_86 (
city VARCHAR,
sport VARCHAR,
_number_of_titles VARCHAR,
last VARCHAR
) | SELECT city FROM table_name_86 WHERE CAST(_number_of_titles AS INTEGER) < 17 AND CAST(last AS INTEGER) > 2005 AND sport LIKE '%boys basketball%' |
When the Venue is mcg what is the Home team? | CREATE TABLE table_name_47 (
home_team VARCHAR,
venue VARCHAR
) | SELECT home_team FROM table_name_47 WHERE venue LIKE "%mcg%" |
What is the date of the match with a 28-15 record? | CREATE TABLE table_name_24 (
date VARCHAR,
record VARCHAR
) | SELECT date FROM table_name_24 WHERE record LIKE "%28-15%" |
What is the sum of Total for 0 gold and less than 2, silver with a rank of 6? | CREATE TABLE table_name_11 (
total INTEGER,
rank VARCHAR,
gold VARCHAR,
silver VARCHAR
) | SELECT SUM(total) FROM table_name_11 WHERE gold = '0' AND silver < '2' AND rank LIKE '%6%' |
Who was the away team at MCG? | CREATE TABLE table_name_12 (
away_team VARCHAR,
venue VARCHAR
) | SELECT away_team FROM table_name_12 WHERE venue LIKE "%mcg%" |
What was the score on April 18? | CREATE TABLE table_69245 (
"Date" text,
"Opponent" text,
"Score" text,
"Loss" text,
"Attendance" text,
"Record" text
) | SELECT "Score" FROM table_69245 WHERE "Date" LIKE '%april 18%' |
what is the result when the round is less than 7 and the opponent is melbourne storm? | CREATE TABLE table_name_76 (
result VARCHAR,
round VARCHAR,
opponent VARCHAR
) | SELECT result FROM table_name_76 WHERE CAST(round AS INTEGER) < 7 AND opponent LIKE '%melbourne storm%' |
What is the Record with a Score with 80 87, and a Visitor with bucks? | CREATE TABLE table_57896 (
"Date" text,
"Visitor" text,
"Score" text,
"Home" text,
"Leading scorer" text,
"Record" text
) | SELECT "Record" FROM table_57896 WHERE "Score" LIKE '%80–87%' AND "Visitor" LIKE '%bucks%' |
What is the Location with a county of 30 Hancock? | CREATE TABLE table_name_28 (
location VARCHAR,
county VARCHAR
) | SELECT location FROM table_name_28 WHERE county LIKE "%30 hancock%" |
What is the nationality of Duke? | CREATE TABLE table_name_95 (
nationality VARCHAR,
school_club_team VARCHAR
) | SELECT nationality FROM table_name_95 WHERE school_club_team LIKE "%duke%" |
What is the earliest year when action was the genre? | CREATE TABLE table_name_35 (
year INTEGER,
genre VARCHAR
) | SELECT MIN(year) FROM table_name_35 WHERE genre LIKE '%action%' |
How many grid numbers had a lap number bigger than 54? | CREATE TABLE table_name_89 (
grid VARCHAR,
laps INTEGER
) | SELECT COUNT(grid) FROM table_name_89 WHERE laps > 54 |
What is the title of the episode with production code 406? | CREATE TABLE table_2453243_5 (
title VARCHAR,
production_code VARCHAR
) | SELECT title FROM table_2453243_5 WHERE production_code LIKE '%406%' |
Which player did the green bay packers pick? | CREATE TABLE table_2508633_5 (
player VARCHAR,
nfl_team VARCHAR
) | SELECT player FROM table_2508633_5 WHERE nfl_team LIKE "%green bay packers%" |
What is the Date of Tie no 21? | CREATE TABLE table_name_13 (
date VARCHAR,
tie_no VARCHAR
) | SELECT date FROM table_name_13 WHERE tie_no LIKE "%21%" |
Who was the home team when the venue was Junction Oval? | CREATE TABLE table_52626 (
"Home team" text,
"Home team score" text,
"Away team" text,
"Away team score" text,
"Venue" text,
"Crowd" real,
"Date" text
) | SELECT "Home team" FROM table_52626 WHERE "Venue" LIKE '%junction oval%' |
What is the total number of Premier, when Second is '55'? | CREATE TABLE table_61388 (
"Season" text,
"Premier" real,
"First" real,
"Second" real,
"Total" real
) | SELECT COUNT("Premier") FROM table_61388 WHERE "Second" = 55 |
what was the result where the candidates are sam m. gibbons (d) unopposed? | CREATE TABLE table_1341663_10 (
result VARCHAR,
candidates VARCHAR
) | SELECT result FROM table_1341663_10 WHERE candidates LIKE "%sam m. gibbons (d) unopposed%" |
On which date was Essendon the home team? | CREATE TABLE table_name_13 (
date VARCHAR,
home_team VARCHAR
) | SELECT date FROM table_name_13 WHERE home_team LIKE "%essendon%" |
What is the highest NBR number that corresponds to the J class and the road number of 1211? | CREATE TABLE table_name_29 (
nbr_number INTEGER,
class VARCHAR,
road_number VARCHAR
) | SELECT MAX(nbr_number) FROM table_name_29 WHERE class LIKE "%j%" AND road_number LIKE "%1211%" |
when was the next coach appointed after niger tornadoes fired their coach? | CREATE TABLE table_28164986_4 (
date_of_appointment VARCHAR,
manner_of_departure VARCHAR,
team VARCHAR
) | SELECT date_of_appointment FROM table_28164986_4 WHERE manner_of_departure LIKE "%fired%" AND team LIKE "%niger tornadoes%" |
What was the name of the race in Bordeaux? | CREATE TABLE table_16774 (
"Race Name" text,
"Circuit" text,
"Date" text,
"Winning driver" text,
"Constructor" text,
"Report" text
) | SELECT "Race Name" FROM table_16774 WHERE "Circuit" LIKE '%bordeaux%' |
What party did candidate george mcduffie (j) represent? | CREATE TABLE table_28881 (
"District" text,
"Incumbent" text,
"Party" text,
"First elected" text,
"Result" text,
"Candidates" text
) | SELECT "Party" FROM table_28881 WHERE "Candidates" LIKE '%george mcduffie (j)%' |
Name the air date for uk17 | CREATE TABLE table_19897294_5 (
original_air_date VARCHAR,
no_overall VARCHAR
) | SELECT original_air_date FROM table_19897294_5 WHERE no_overall LIKE '%uk17%' |
What was the Result F A on 21 February 2009, when the league position was 1st? | CREATE TABLE table_name_55 (
result_f_a VARCHAR,
league_position VARCHAR,
date VARCHAR
) | SELECT result_f_a FROM table_name_55 WHERE league_position LIKE "%1st%" AND date LIKE "%21 february 2009%" |
What is the maximum season that has exactly 2 podiums? | CREATE TABLE table_29434211_1 (
season INTEGER,
podiums VARCHAR
) | SELECT MAX(season) FROM table_29434211_1 WHERE podiums LIKE '%2%' |
What is the sum of totals for FA Cup values of 0? | CREATE TABLE table_name_3 (
total INTEGER,
fa_cup INTEGER
) | SELECT SUM(total) FROM table_name_3 WHERE fa_cup < 0 |
what is the continent in which the country russia is listed? | CREATE TABLE table_27435931_1 (
continent VARCHAR,
country VARCHAR
) | SELECT continent FROM table_27435931_1 WHERE country LIKE "%russia%" |
What city had a rank before 3 and primary carrier JetBlue Airways? | CREATE TABLE table_40493 (
"Rank" real,
"City" text,
"Airport" text,
"Passengers" real,
"Carriers" text
) | SELECT "City" FROM table_40493 WHERE "Rank" < 3 AND "Carriers" LIKE '%jetblue airways%' |
What country is charley hoffman from? | CREATE TABLE table_28498999_4 (
country VARCHAR,
player VARCHAR
) | SELECT country FROM table_28498999_4 WHERE player LIKE "%charley hoffman%" |
Which team has Pick 13 in Round 2? | CREATE TABLE table_10391 (
"Round" text,
"Pick" text,
"Player" text,
"Position" text,
"Nationality" text,
"Team" text,
"College" text
) | SELECT "Team" FROM table_10391 WHERE "Round" LIKE '%2%' AND "Pick" LIKE '%13%' |
What is the 2011 value with a 2008 value of 0.3 and is a member state of the European Union? | CREATE TABLE table_name_64 (
member_state VARCHAR
) | SELECT 2011 FROM table_name_64 WHERE 2008 = "0.3" AND member_state LIKE '%european union%' |
WHAT IS THE LOSS WITH AN AVERAGE OF 89.9? | CREATE TABLE table_name_18 (
loss INTEGER,
avg_g VARCHAR
) | SELECT SUM(loss) FROM table_name_18 WHERE avg_g LIKE '%89.9%' |
What is the score for the date of December 7? | CREATE TABLE table_23286112_7 (
score VARCHAR,
date VARCHAR
) | SELECT score FROM table_23286112_7 WHERE date LIKE "%december 7%" |
If the product code is 2t6267, who was the director? | CREATE TABLE table_17467447_1 (
directed_by VARCHAR,
production_code VARCHAR
) | SELECT directed_by FROM table_17467447_1 WHERE production_code LIKE "%2t6267%" |
Which Date has a Road Team of chicago, and a Result of 88-85 (ot)? | CREATE TABLE table_name_33 (
date VARCHAR,
road_team VARCHAR,
result VARCHAR
) | SELECT date FROM table_name_33 WHERE road_team LIKE '%chicago%' AND result LIKE '%88-85 (ot)%' |
how many teams were founded in morwell ? | CREATE TABLE table_203_664 (
id number,
"club" text,
"town" text,
"founded" number,
"nickname" text,
"colours" text,
"home ground" text,
"titles" number,
"website" text
) | SELECT COUNT("club") FROM table_203_664 WHERE "town" LIKE '%morwell%' |
Which Date has a Home of minnesota? | CREATE TABLE table_33911 (
"Date" text,
"Visitor" text,
"Score" text,
"Home" text,
"Decision" text,
"Attendance" real,
"Record" text
) | SELECT "Date" FROM table_33911 WHERE "Home" LIKE '%minnesota%' |
What are all the results where Robert Bauman is the incumbent politician? | CREATE TABLE table_1341690_20 (
result VARCHAR,
incumbent VARCHAR
) | SELECT result FROM table_1341690_20 WHERE incumbent LIKE "%robert bauman%" |
Which Record has a Match Report of recap, and a Result of l 30 20? | CREATE TABLE table_5946 (
"Week" text,
"Date" text,
"Opponent" text,
"Result" text,
"Kickoff" text,
"Game site" text,
"Record" text,
"Match Report" text
) | SELECT "Record" FROM table_5946 WHERE "Match Report" LIKE '%recap%' AND "Result" LIKE '%l 30–20%' |
What's the smallest amount of Laps that had a finish of 7 with a start of 6? | CREATE TABLE table_name_49 (
laps INTEGER,
finish VARCHAR,
start VARCHAR
) | SELECT MIN(laps) FROM table_name_49 WHERE finish LIKE "%7%" AND start LIKE "%6%" |
Who wrote episode number 109 in the series? | CREATE TABLE table_26565936_2 (
written_by VARCHAR,
no_in_series VARCHAR
) | SELECT written_by FROM table_26565936_2 WHERE no_in_series LIKE '%109%' |
Who was pick number 34? | CREATE TABLE table_74434 (
"Pick #" real,
"MLS team" text,
"Player" text,
"Position" text,
"Affiliation" text
) | SELECT "Player" FROM table_74434 WHERE "Pick #" = 34 |
Which party had a Retired Democratic hold? | CREATE TABLE table_name_97 (
party VARCHAR,
result VARCHAR
) | SELECT party FROM table_name_97 WHERE result LIKE "%retired democratic hold%" |
Who was the coach who had 215 losses? | CREATE TABLE table_name_33 (
coach VARCHAR,
losses VARCHAR
) | SELECT coach FROM table_name_33 WHERE losses LIKE '%215%' |
What is the method of opponent georges st-pierre? | CREATE TABLE table_name_22 (
method VARCHAR,
opponent VARCHAR
) | SELECT method FROM table_name_22 WHERE opponent LIKE "%georges st-pierre%" |
What is the total number of top-25s for the major that has 11 top-10s? | CREATE TABLE table_name_95 (
top_25 VARCHAR,
top_10 VARCHAR
) | SELECT COUNT(top_25) FROM table_name_95 WHERE top_10 LIKE '%11%' |
What is the result of the game at kyiv, ukraine? | CREATE TABLE table_61380 (
"Date" text,
"Venue" text,
"Score" text,
"Result" text,
"Competition" text
) | SELECT "Result" FROM table_61380 WHERE "Venue" LIKE '%kyiv, ukraine%' |
How many regions had a life expectancy at birth in 2001-2002 of 75.9? | CREATE TABLE table_25042332_33 (
hdi VARCHAR,
life_expectancy_at_birth__2001_2002_ VARCHAR
) | SELECT COUNT(hdi) FROM table_25042332_33 WHERE life_expectancy_at_birth__2001_2002_ LIKE "%75.9%" |
What is the Call sign for the ERP W 19? | CREATE TABLE table_name_75 (
call_sign VARCHAR,
erp_w VARCHAR
) | SELECT call_sign FROM table_name_75 WHERE erp_w LIKE '%19%' |
how many times did internacional de madrid cf end the season at the top of their division ? | CREATE TABLE table_203_783 (
id number,
"season" text,
"tier" number,
"division" text,
"place" text
) | SELECT COUNT(*) FROM table_203_783 WHERE "place" LIKE '%1%' |
When was there a score of 7-1? | CREATE TABLE table_15625 (
"Date" text,
"Venue" text,
"Score" text,
"Result" text,
"Competition" text
) | SELECT "Date" FROM table_15625 WHERE "Score" LIKE '%7-1%' |
Name the green for otaki | CREATE TABLE table_20217811_1 (
green VARCHAR,
electorate VARCHAR
) | SELECT green FROM table_20217811_1 WHERE electorate LIKE "%otaki%" |
what is the bristol & n. som where the somerset is ashcott and shapwick? | CREATE TABLE table_12043148_2 (
bristol_ VARCHAR,
_n_som VARCHAR,
somerset VARCHAR
) | SELECT bristol_ || _n_som FROM table_12043148_2 WHERE somerset LIKE '%ashcott and shapwick%' |
What is the lowest attendance of a game that has the result of 2-0? | CREATE TABLE table_38002 (
"Date" text,
"Round" text,
"Opponent" text,
"Venue" text,
"Result" text,
"Attendance" real,
"Scorers" text
) | SELECT MIN("Attendance") FROM table_38002 WHERE "Result" LIKE '%2-0%' |
On what date was a game played at Windy Hill? | CREATE TABLE table_name_6 (
date VARCHAR,
venue VARCHAR
) | SELECT date FROM table_name_6 WHERE venue LIKE "%windy hill%" |
Who was the opponent on December 18, 2005? | CREATE TABLE table_name_80 (
opponent VARCHAR,
date VARCHAR
) | SELECT opponent FROM table_name_80 WHERE date LIKE "%december 18, 2005%" |
What 2010 has an A 2006 & 2011? | CREATE TABLE table_name_30 (
Id VARCHAR
) | SELECT 2010 FROM table_name_30 WHERE 2006 LIKE '%a%' AND 2011 LIKE '%a%' |
What is ids of the songs whose resolution is higher than the average resolution of songs in modern genre? | CREATE TABLE song (
f_id VARCHAR,
resolution INTEGER,
genre_is VARCHAR
) | SELECT f_id FROM song WHERE resolution > (SELECT AVG(resolution) FROM song WHERE genre_is LIKE '%modern%') |
On what date was a match played at Lake Oval? | CREATE TABLE table_name_4 (
date VARCHAR,
venue VARCHAR
) | SELECT date FROM table_name_4 WHERE venue LIKE '%lake oval%' |
What Outcome happened on a Date that was 20 november 2011? | CREATE TABLE table_name_61 (
outcome VARCHAR,
date VARCHAR
) | SELECT outcome FROM table_name_61 WHERE date LIKE "%20 november 2011%" |
what was the lowest position ramon gonzalez came in ? | CREATE TABLE table_203_763 (
id number,
"year" number,
"competition" text,
"venue" text,
"position" text,
"notes" text
) | SELECT "position" FROM table_203_763 ORDER BY "position" DESC LIMIT 1 |
Tell me the region for georgia | CREATE TABLE table_name_8 (
region VARCHAR,
state VARCHAR
) | SELECT region FROM table_name_8 WHERE state LIKE "%georgia%" |
Which Score has a Place of t6, and a Player of raymond floyd? | CREATE TABLE table_name_43 (
score VARCHAR,
place VARCHAR,
player VARCHAR
) | SELECT score FROM table_name_43 WHERE place LIKE "%t6%" AND player LIKE "%raymond floyd%" |
What is the attendance for week 11? | CREATE TABLE table_33756 (
"Week" real,
"Date" text,
"Opponent" text,
"Result" text,
"Record" text,
"Attendance" real
) | SELECT "Attendance" FROM table_33756 WHERE "Week" = 11 |
What years did the player play when he scored 78 points and 22 goals? | CREATE TABLE table_33866 (
"Rank" text,
"Player" text,
"Goals" text,
"Assists" text,
"Points" text,
"Years" text
) | SELECT "Years" FROM table_33866 WHERE "Points" LIKE '%78%' AND "Goals" LIKE '%22%' |
In Week 13, who was the opponent? | CREATE TABLE table_name_98 (
opponent VARCHAR,
week VARCHAR
) | SELECT opponent FROM table_name_98 WHERE week LIKE '%13%' |
What is the To Par score for the player from France? | CREATE TABLE table_name_99 (
to_par VARCHAR,
country VARCHAR
) | SELECT to_par FROM table_name_99 WHERE country LIKE "%france%" |
Which zone had m d lina gojnea monica niculescu as the opponent? | CREATE TABLE table_56730 (
"Edition" real,
"Zone" text,
"Round" text,
"Date" text,
"Against" text,
"Surface" text,
"Partner" text,
"Opponents" text,
"Result" text
) | SELECT "Zone" FROM table_56730 WHERE "Opponents" LIKE '%mădălina gojnea monica niculescu%' |
How many times are listed for 31 May for the rider ranked 5? | CREATE TABLE table_27462 (
"Rank" real,
"Rider" text,
"Sat 29 May" text,
"Mon 31 May" text,
"Tues 1 June" text,
"Wed 2 June" text,
"Thurs 3 June" text,
"Fri 4 June" text
) | SELECT COUNT("Mon 31 May") FROM table_27462 WHERE "Rank" = 5 |
Which Opponent had a Surface of hard, and a Partner of maria elena camerin? | CREATE TABLE table_6703 (
"Outcome" text,
"Date" text,
"Tournament" text,
"Surface" text,
"Partner" text,
"Opponent" text,
"Score" text
) | SELECT "Opponent" FROM table_6703 WHERE "Surface" LIKE '%hard%' AND "Partner" LIKE '%maria elena camerin%' |
What was the date when the attendance was n/a and the Man of the Match was unknown? | CREATE TABLE table_name_32 (
date VARCHAR,
attendance VARCHAR,
man_of_the_match VARCHAR
) | SELECT date FROM table_name_32 WHERE attendance LIKE "%n/a%" AND man_of_the_match LIKE "%unknown%" |
What is the Game with a Record of 19-15? | CREATE TABLE table_66647 (
"Game" real,
"Date" text,
"Opponent" text,
"Score" text,
"Location/Attendance" text,
"Record" text
) | SELECT "Game" FROM table_66647 WHERE "Record" LIKE '%19-15%' |
Tell me the country for lane of 6 | CREATE TABLE table_name_66 (
country VARCHAR,
lane VARCHAR
) | SELECT country FROM table_name_66 WHERE lane LIKE '%6%' |
Which Position has a Player of patrick macdonald? | CREATE TABLE table_name_35 (
position VARCHAR,
player VARCHAR
) | SELECT position FROM table_name_35 WHERE player LIKE "%patrick macdonald%" |
What is the College with a Round # that is 290? | CREATE TABLE table_75862 (
"Round #" real,
"Pick #" text,
"Player" text,
"Position" text,
"College" text
) | SELECT "College" FROM table_75862 WHERE "Round #" = 290 |
Name the location of the church for berle kyrkje | CREATE TABLE table_178408_1 (
location_of_the_church VARCHAR,
church_name VARCHAR
) | SELECT location_of_the_church FROM table_178408_1 WHERE church_name LIKE "%berle kyrkje%" |
Show the price ranges of hotels with 5 star ratings. | CREATE TABLE HOTELS (
price_range VARCHAR,
star_rating_code VARCHAR
) | SELECT price_range FROM HOTELS WHERE star_rating_code LIKE "%5%" |
What was the record when Minnesota was the visiting team? | CREATE TABLE table_name_68 (
record VARCHAR,
visitor VARCHAR
) | SELECT record FROM table_name_68 WHERE visitor LIKE "%minnesota%" |
which year is the year with the most titles ? | CREATE TABLE table_201_39 (
id number,
"no" number,
"title" text,
"directed by" text,
"released" number
) | SELECT "released" FROM table_201_39 GROUP BY "released" ORDER BY COUNT("title") DESC LIMIT 1 |
Name the catalogue with song title of love me tonight | CREATE TABLE table_69653 (
"Track" real,
"Recorded" text,
"Catalogue" text,
"Release Date" text,
"Song Title" text,
"Time" text
) | SELECT "Catalogue" FROM table_69653 WHERE "Song Title" LIKE '%love me tonight%' |
what's the minimum species in the peruvian amazon with peru vs. world (percent) value of 7 | CREATE TABLE table_11727969_1 (
species_in_the_peruvian_amazon INTEGER,
peru_vs_world__percent_ VARCHAR
) | SELECT MIN(species_in_the_peruvian_amazon) FROM table_11727969_1 WHERE peru_vs_world__percent_ LIKE '%7%' |
What is the result of the match with an attendance of 73,855? | CREATE TABLE table_name_9 (
result VARCHAR,
attendance VARCHAR
) | SELECT result FROM table_name_9 WHERE attendance LIKE "%73,855%" |
What are the names of the states where at least 3 heads were born? | CREATE TABLE head (
born_state VARCHAR
) | SELECT born_state FROM head GROUP BY born_state HAVING COUNT(*) >= 3 |
What is the Position with a Year with freshman, and a Weight larger than 210? | CREATE TABLE table_77513 (
"Name" text,
"Position" text,
"Height" text,
"Weight" real,
"Year" text,
"Home Town" text,
"High School" text
) | SELECT "Position" FROM table_77513 WHERE "Year" LIKE '%freshman%' AND "Weight" > 210 |
Who had the high points dated march 13? | CREATE TABLE table_886 (
"Game" real,
"Date" text,
"Team" text,
"Score" text,
"High points" text,
"High rebounds" text,
"High assists" text,
"Location Attendance" text,
"Record" text
) | SELECT "High points" FROM table_886 WHERE "Date" LIKE '%march 13%' |
Where delegate is feldman, brian j. brian j. feldman, please specify all the party | CREATE TABLE table_27050336_7 (
party VARCHAR,
delegate VARCHAR
) | SELECT party FROM table_27050336_7 WHERE delegate LIKE "%feldman, brian j. brian j. feldman%" |
what is the final score when the date is 2009-02-26? | CREATE TABLE table_name_62 (
final_score VARCHAR,
date VARCHAR
) | SELECT final_score FROM table_name_62 WHERE date LIKE "%2009-02-26%" |
Who was the Champion in Snellville, GA in 2006? | CREATE TABLE table_name_46 (
champion VARCHAR,
location VARCHAR,
year VARCHAR
) | SELECT champion FROM table_name_46 WHERE location LIKE "%snellville, ga%" AND year = "2006" |
In which years are co-stars mala sinha and amitabh bachchan? | CREATE TABLE table_2528382_2 (
year VARCHAR,
co_stars VARCHAR
) | SELECT year FROM table_2528382_2 WHERE co_stars LIKE '%mala sinha and amitabh bachchan%' |
Who are the foreign players representing Ekaterinburg? | CREATE TABLE table_14015965_1 (
foreign_players__max_2_ VARCHAR,
town VARCHAR
) | SELECT foreign_players__max_2_ FROM table_14015965_1 WHERE town LIKE "%ekaterinburg%" |
Which supercentenarians were born in Manitoba? | CREATE TABLE table_37732 (
"Name" text,
"Birth date" text,
"Age as of 1 February 2014" text,
"Province or Country of birth" text,
"Province of residence" text
) | SELECT "Name" FROM table_37732 WHERE "Province or Country of birth" LIKE '%manitoba%' |
Which pick did Michel Larocque receive? | CREATE TABLE table_2840500_6 (
pick VARCHAR,
player VARCHAR
) | SELECT pick FROM table_2840500_6 WHERE player LIKE "%michel larocque%" |
What is the date of the game that had a visitor of Chicago? | CREATE TABLE table_name_22 (
date VARCHAR,
visitor VARCHAR
) | SELECT date FROM table_name_22 WHERE visitor LIKE '%chicago%' |
What is the 2nd leg for Barcelona Team 2? | CREATE TABLE table_43659 (
"Team 1" text,
"Agg." text,
"Team 2" text,
"1st leg" text,
"2nd leg" text
) | SELECT "2nd leg" FROM table_43659 WHERE "Team 2" LIKE '%barcelona%' |
What are all the places where Birgit Fischer competed? | CREATE TABLE table_14884844_2 (
location VARCHAR,
athletes VARCHAR
) | SELECT location FROM table_14884844_2 WHERE athletes LIKE "%birgit fischer%" |
Who did the Rockies play at the game that had a score of 6 5 (10)? | CREATE TABLE table_name_22 (
opponent VARCHAR,
score VARCHAR
) | SELECT opponent FROM table_name_22 WHERE score LIKE "%6–5 (10)%" |
What is the largest total that has a gold less than 0? | CREATE TABLE table_name_57 (
total INTEGER,
gold INTEGER
) | SELECT MAX(total) FROM table_name_57 WHERE gold < 0 |
Find the names of schools that have some students playing in goalie and mid positions. | CREATE TABLE tryout (
cName VARCHAR,
pPos VARCHAR
) | SELECT cName FROM tryout WHERE pPos LIKE '%goalie%' INTERSECT SELECT cName FROM tryout WHERE pPos LIKE '%mid%' |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.