question
stringlengths 19
162
| table_info
stringlengths 39
951
| sql_query
stringlengths 24
181
|
---|---|---|
Who was the Semi-Finalist #2 in 2001? | CREATE TABLE table_57216 (
"Year" text,
"Champion" text,
"Score" text,
"Runner-Up" text,
"Location" text,
"Semi-Finalist #1" text,
"Semi-Finalist #2" text
) | SELECT "Semi-Finalist #2" FROM table_57216 WHERE "Year" LIKE '%2001%' |
what is the highest number where people got done at 31.1 | CREATE TABLE table_1354805_6 (
competition_finish INTEGER,
average VARCHAR
) | SELECT MAX(competition_finish) FROM table_1354805_6 WHERE average LIKE '%31.1%' |
When did the show directed by Michael Dimartino first air? | CREATE TABLE table_19530 (
"No. in series" real,
"Title" text,
"Directed by" text,
"Written by" text,
"Original air date" text,
"Production code" text
) | SELECT "Original air date" FROM table_19530 WHERE "Directed by" LIKE '%michael dimartino%' |
which game had the most attendance ? | CREATE TABLE table_203_344 (
id number,
"#" number,
"date" text,
"opponent" text,
"score" text,
"win" text,
"loss" text,
"save" text,
"attendance" number,
"record" text,
"other info" text
) | SELECT "#" FROM table_203_344 ORDER BY "attendance" DESC LIMIT 1 |
What is the B Score when the total is more than 16.125, and position is 3rd? | CREATE TABLE table_name_70 (
b_score INTEGER,
total VARCHAR,
position VARCHAR
) | SELECT SUM(b_score) FROM table_name_70 WHERE total > '16.125' AND position LIKE '%3rd%' |
How many total League goals does Player John O'Flynn have? | CREATE TABLE table_name_45 (
league_goals INTEGER,
player VARCHAR
) | SELECT SUM(league_goals) FROM table_name_45 WHERE player LIKE "%john o'flynn%" |
Difference of - 20, and a Position smaller than 17 is the highest against? | CREATE TABLE table_37850 (
"Position" real,
"Team" text,
"Points" real,
"Played" real,
"Drawn" real,
"Lost" real,
"Against" real,
"Difference" text
) | SELECT MAX("Against") FROM table_37850 WHERE "Difference" LIKE '%- 20%' AND "Position" < 17 |
Name the highest year with points more than 0 | CREATE TABLE table_name_90 (
year INTEGER,
points INTEGER
) | SELECT MAX(year) FROM table_name_90 WHERE points > 0 |
Who was the athlete with react of 0.185? | CREATE TABLE table_name_79 (
athlete VARCHAR,
react VARCHAR
) | SELECT athlete FROM table_name_79 WHERE react = '0.185' |
Which Team has a Pick # of 148? | CREATE TABLE table_name_59 (
team_from VARCHAR,
pick__number VARCHAR
) | SELECT team_from FROM table_name_59 WHERE pick__number LIKE '%148%' |
Who is the player from the United States with a t6 place and a 71-70-76-72=289 score? | CREATE TABLE table_name_67 (
player VARCHAR,
country VARCHAR,
place VARCHAR,
score VARCHAR
) | SELECT player FROM table_name_67 WHERE country LIKE '%united states%' AND place LIKE '%t6%' AND score = '289' |
What are the average, maximum and total revenues of all companies? | CREATE TABLE manufacturers (
revenue INTEGER
) | SELECT AVG(revenue), MAX(revenue), SUM(revenue) FROM manufacturers |
what is the total years on the chart | CREATE TABLE table_204_620 (
id number,
"title" text,
"year" number,
"language" text,
"role" text,
"notes" text
) | SELECT COUNT(DISTINCT "year") FROM table_204_620 |
What was the score of the match played against away team Arsenal? | CREATE TABLE table_name_96 (
score VARCHAR,
away_team VARCHAR
) | SELECT score FROM table_name_96 WHERE away_team LIKE "%arsenal%" |
Name the location attendance for l 105 123 (ot) | CREATE TABLE table_27733258_6 (
location_attendance VARCHAR,
score VARCHAR
) | SELECT location_attendance FROM table_27733258_6 WHERE score LIKE '%l 105–123 (ot)%' |
What is the builder launched 30 october 1944? | CREATE TABLE table_1206583_2 (
builder VARCHAR,
launched VARCHAR
) | SELECT builder FROM table_1206583_2 WHERE launched LIKE '%30 october 1944%' |
Which episode title featured a visit to the country of Cuba? | CREATE TABLE table_37128 (
"Episode No." text,
"Episode Title" text,
"UK Broadcast Date" text,
"Presenter" text,
"Details of Journey" text,
"Countries Visited" text
) | SELECT "Episode Title" FROM table_37128 WHERE "Countries Visited" LIKE '%cuba%' |
What is the attendance of week 1 | CREATE TABLE table_32610 (
"Week" real,
"Date" text,
"Opponent" text,
"Result" text,
"Attendance" real
) | SELECT "Attendance" FROM table_32610 WHERE "Week" = 1 |
Which name had 6 goals? | CREATE TABLE table_51575 (
"Nat." text,
"Name" text,
"Since" text,
"Goals" real,
"Transfer fee" text
) | SELECT "Name" FROM table_51575 WHERE "Goals" = 6 |
When did the first payment happen? | CREATE TABLE payment (
payment_date VARCHAR
) | SELECT payment_date FROM payment ORDER BY payment_date LIMIT 1 |
What is every value for Croats if the value of Roma is 3.1%? | CREATE TABLE table_2374338_2 (
croats VARCHAR,
roma VARCHAR
) | SELECT croats FROM table_2374338_2 WHERE roma LIKE "%3.1%" |
What home team played the away team of Richmond? | CREATE TABLE table_name_75 (
home_team VARCHAR,
away_team VARCHAR
) | SELECT home_team FROM table_name_75 WHERE away_team LIKE "%richmond%" |
What is the Latitude of the Alajen Vallis named after 1997? | CREATE TABLE table_name_86 (
latitude VARCHAR,
year_named VARCHAR,
name VARCHAR
) | SELECT latitude FROM table_name_86 WHERE year_named > '1997' AND name LIKE '%alajen vallis%' |
What is the title of the production with a number of 1039? | CREATE TABLE table_name_83 (
title VARCHAR,
production_number VARCHAR
) | SELECT title FROM table_name_83 WHERE production_number LIKE "%1039%" |
Who was the away team at Junction Oval? | CREATE TABLE table_name_63 (
away_team VARCHAR,
venue VARCHAR
) | SELECT away_team FROM table_name_63 WHERE venue LIKE '%junction oval%' |
Who won with a majority more than 6,181 and J W Andrews as runner up? | CREATE TABLE table_10896 (
"Electorate" text,
"Incumbent" text,
"Winner" text,
"Majority" real,
"Runner up" text
) | SELECT "Winner" FROM table_10896 WHERE "Majority" > 6181 AND "Runner up" LIKE '%j w andrews%' |
What was the record at the game that had a loss of Brandon (4 8)? | CREATE TABLE table_15204 (
"Date" text,
"Opponent" text,
"Score" text,
"Loss" text,
"Record" text
) | SELECT "Record" FROM table_15204 WHERE "Loss" LIKE '%brandon (4–8)%' |
What round on average was a defensive tackle selected? | CREATE TABLE table_name_87 (
round INTEGER,
position VARCHAR
) | SELECT AVG(round) FROM table_name_87 WHERE position LIKE "%defensive tackle%" |
What's the location when the notes area is notes? | CREATE TABLE table_38836 (
"Distance" text,
"Time" text,
"Date" text,
"Location" text,
"Notes" text
) | SELECT "Location" FROM table_38836 WHERE "Notes" LIKE '%notes%' |
How many picks did Central State have before round 2? | CREATE TABLE table_name_29 (
pick VARCHAR,
school VARCHAR,
round VARCHAR
) | SELECT COUNT(pick) FROM table_name_29 WHERE school LIKE "%central state%" AND round < 2 |
what's the minimum species in the peruvian amazon with taxonomy s fern ( pteridophyta ) | CREATE TABLE table_11727969_1 (
species_in_the_peruvian_amazon INTEGER,
taxonomy VARCHAR
) | SELECT MIN(species_in_the_peruvian_amazon) FROM table_11727969_1 WHERE taxonomy LIKE '%s fern ( pteridophyta )%' |
What is the latest Year with Marianne Jean-Baptiste as the Golden Globe Actor? | CREATE TABLE table_name_50 (
year INTEGER,
actor VARCHAR
) | SELECT MAX(year) FROM table_name_50 WHERE actor LIKE "%marianne jean-baptiste%" |
Which Date has a Score of 102 113? | CREATE TABLE table_name_63 (
date VARCHAR,
score VARCHAR
) | SELECT date FROM table_name_63 WHERE score LIKE "%102–113%" |
what team lost the most points | CREATE TABLE table_name_56 (
lost VARCHAR
) | SELECT lost FROM table_name_56 WHERE "points" LIKE '%points%' |
What is the current affiliation when the years owned is between 1955 1995? | CREATE TABLE table_name_62 (
current_affiliation VARCHAR,
years_owned VARCHAR
) | SELECT current_affiliation FROM table_name_62 WHERE years_owned LIKE "%1955–1995%" |
what is the grid when the driver is mario andretti and the laps is less than 54? | CREATE TABLE table_name_39 (
grid INTEGER,
driver VARCHAR,
laps VARCHAR
) | SELECT MAX(grid) FROM table_name_39 WHERE driver LIKE "%mario andretti%" AND laps < "54" |
What position and school/club team of Oklahoma state has an overall less than 410 and a round smaller than 5? | CREATE TABLE table_4717 (
"Round" real,
"Overall" real,
"Player" text,
"Position" text,
"School/Club Team" text
) | SELECT "Position" FROM table_4717 WHERE "Overall" < 410 AND "Round" < 5 AND "School/Club Team" LIKE '%oklahoma state%' |
What are the record(s) for the team with a winning percentage of .464? | CREATE TABLE table_15313204_1 (
records VARCHAR,
pct VARCHAR
) | SELECT records FROM table_15313204_1 WHERE pct LIKE "%.464%" |
What country has the most height in the northwestern peak of rysy? | CREATE TABLE table_24285393_1 (
country_or_region VARCHAR,
highest_point VARCHAR
) | SELECT country_or_region FROM table_24285393_1 WHERE highest_point LIKE '%northwestern peak of rysy%' |
On what date was the venue of Glenferrie Oval? | CREATE TABLE table_name_12 (
date VARCHAR,
venue VARCHAR
) | SELECT date FROM table_name_12 WHERE venue LIKE "%glenferrie oval%" |
What's amount of L2 Cache on a device that has a Frequency of 1500mhz? | CREATE TABLE table_name_78 (
l2_cache VARCHAR,
frequency VARCHAR
) | SELECT l2_cache FROM table_name_78 WHERE frequency LIKE "%1500mhz%" |
Which Angle from center/ has a Taper/ft smaller than 0.6000000000000001? | CREATE TABLE table_name_97 (
angle_from_center_ VARCHAR,
taper VARCHAR,
ft VARCHAR
) | SELECT COUNT(angle_from_center_) AS ° FROM table_name_97 WHERE CAST(taper AS FLOAT) / CAST(ft AS FLOAT) < 0.6000000000000001 |
What is the To par of the Player with a Score of 73-67-68=208? | CREATE TABLE table_name_89 (
to_par VARCHAR,
score VARCHAR
) | SELECT to_par FROM table_name_89 WHERE score = '-137' |
What is the date for catalog RCD 10160? | CREATE TABLE table_59717 (
"Country" text,
"Date" text,
"Label" text,
"Format" text,
"Catalog" text
) | SELECT "Date" FROM table_59717 WHERE "Catalog" LIKE '%rcd 10160%' |
What was his record when he went over 1 round? | CREATE TABLE table_name_81 (
record VARCHAR,
round INTEGER
) | SELECT record FROM table_name_81 WHERE round > 1 |
Which Frequency has a Facility ID of 13598? | CREATE TABLE table_name_71 (
frequency VARCHAR,
facility_id VARCHAR
) | SELECT frequency FROM table_name_71 WHERE facility_id LIKE '%13598%' |
What is the location of the match against Martinis Knyzelis? | CREATE TABLE table_name_75 (
location VARCHAR,
opponent VARCHAR
) | SELECT location FROM table_name_75 WHERE opponent LIKE "%martinis knyzelis%" |
what are the total number of wins for tom boonen overall ? | CREATE TABLE table_204_4 (
id number,
"date" text,
"race" text,
"competition" text,
"rider" text,
"country" text,
"location" text
) | SELECT COUNT(*) FROM table_204_4 WHERE "rider" LIKE '%tom boonen%' |
What is the frequency of the Classic Country Krki-fm booster station? | CREATE TABLE table_134987_3 (
frequency VARCHAR,
format VARCHAR
) | SELECT frequency FROM table_134987_3 WHERE format LIKE "%classic country krki-fm booster%" |
Who was the winner in the Indian Wells? | CREATE TABLE table_name_67 (
winner VARCHAR,
tournament VARCHAR
) | SELECT winner FROM table_name_67 WHERE tournament LIKE "%indian wells%" |
Name the least wins for 5 losses | CREATE TABLE table_18607260_6 (
wins INTEGER,
losses VARCHAR
) | SELECT MIN(wins) FROM table_18607260_6 WHERE losses LIKE '%5%' |
Which conference is Belmont in? | CREATE TABLE table_72772 (
"School" text,
"Record" text,
"Conference" text,
"Conf. record" text,
"Regular season finish" text,
"Regular season second place" text
) | SELECT "Conference" FROM table_72772 WHERE "School" LIKE '%belmont%' |
What is the Location when the team was seve ballesteros & manuel pi ero? | CREATE TABLE table_name_61 (
location VARCHAR,
team VARCHAR
) | SELECT location FROM table_name_61 WHERE team LIKE "%seve ballesteros & manuel piñero%" |
Who is the runner-up in 1990? | CREATE TABLE table_49571 (
"Location" text,
"Year" real,
"Champion" text,
"Runner-up" text,
"Score" text
) | SELECT "Runner-up" FROM table_49571 WHERE "Year" = 1990 |
Tell me the pitcher on september 6, 2006 | CREATE TABLE table_name_8 (
pitcher VARCHAR,
date VARCHAR
) | SELECT pitcher FROM table_name_8 WHERE date LIKE "%september 6, 2006%" |
What is largest series number for the episode that aired February 16, 1957? | CREATE TABLE table_25800134_1 (
series__number INTEGER,
airdate VARCHAR
) | SELECT MAX(series__number) FROM table_25800134_1 WHERE airdate LIKE "%february 16, 1957%" |
What category was in 1964? | CREATE TABLE table_name_14 (
category VARCHAR,
year VARCHAR
) | SELECT category FROM table_name_14 WHERE year LIKE '%1964%' |
which weights more a ut507 salvage tug or a ut515 salvage tug ? | CREATE TABLE table_203_201 (
id number,
"class" text,
"type" text,
"ships" text,
"displacement" text,
"note" text
) | SELECT "class" FROM table_203_201 WHERE "class" LIKE '%ut507 class%' OR "class" LIKE '%ut515 class%' ORDER BY "displacement" DESC LIMIT 1 |
What is the 2012 value with a 1.3 in 2010 and a 3.6 in 2008? | CREATE TABLE table_name_67 (
Id VARCHAR
) | SELECT 2012 FROM table_name_67 WHERE 2010 LIKE '%1.3%' AND 2008 LIKE '%3.6%' |
WHAT IS THE NAME OF THE MIXED DOUBLES PLAYER WHEN THE WOMENS SINGLE PLAYER IS KAIRI VIILUP? | CREATE TABLE table_14903627_1 (
mixed_doubles VARCHAR,
womens_singles VARCHAR
) | SELECT mixed_doubles FROM table_14903627_1 WHERE womens_singles LIKE "%kairi viilup%" |
Who was the winning team on the circuit Zolder? | CREATE TABLE table_18095719_2 (
winning_team VARCHAR,
circuit VARCHAR
) | SELECT winning_team FROM table_18095719_2 WHERE circuit LIKE "%zolder%" |
What is the type when yes votes are 546255? | CREATE TABLE table_256286_61 (
type VARCHAR,
yes_votes VARCHAR
) | SELECT type FROM table_256286_61 WHERE yes_votes = '546255' |
How many backgrounds are there represented from Memphis, Tennessee? | CREATE TABLE table_1289860_2 (
background VARCHAR,
hometown VARCHAR
) | SELECT COUNT(background) FROM table_1289860_2 WHERE hometown LIKE "%memphis, tennessee%" |
What is every song title for 2007? | CREATE TABLE table_21500850_1 (
song_title VARCHAR,
year VARCHAR
) | SELECT song_title FROM table_21500850_1 WHERE year LIKE '%2007%' |
In what format was the release from the Nebt068 catalog on April 11, 2005 in? | CREATE TABLE table_39880 (
"Region" text,
"Date" text,
"Label" text,
"Format" text,
"Catalog" text
) | SELECT "Format" FROM table_39880 WHERE "Date" LIKE '%april 11, 2005%' AND "Catalog" LIKE '%nebt068%' |
Which pinyin have a population of 374047? | CREATE TABLE table_1204998_2 (
pinyin VARCHAR,
population VARCHAR
) | SELECT pinyin FROM table_1204998_2 WHERE population LIKE '%374047%' |
What is the week where the game site is Shea Stadium? | CREATE TABLE table_17861179_1 (
week INTEGER,
game_site VARCHAR
) | SELECT MIN(week) FROM table_17861179_1 WHERE game_site LIKE '%shea stadium%' |
What was the record at the game with a score of 21-16? | CREATE TABLE table_66581 (
"Week" real,
"Date" text,
"Opponent" text,
"Result" text,
"Score" text,
"Record" text
) | SELECT "Record" FROM table_66581 WHERE "Score" LIKE '%21-16%' |
How many wins have 24 points? | CREATE TABLE table_18703133_6 (
wins VARCHAR,
points VARCHAR
) | SELECT wins FROM table_18703133_6 WHERE points LIKE '%24%' |
Which title has the Translation of vesoul? | CREATE TABLE table_name_28 (
title VARCHAR,
translation VARCHAR
) | SELECT title FROM table_name_28 WHERE translation LIKE "%vesoul%" |
Which position does the player from Muscle Shoals, Alabama play? | CREATE TABLE table_name_68 (
position VARCHAR,
hometown VARCHAR
) | SELECT position FROM table_name_68 WHERE hometown LIKE "%muscle shoals, alabama%" |
When there are 9.28 million viewers what is the share (18-49)? | CREATE TABLE table_28980706_4 (
share__18_49_ VARCHAR,
viewers__millions_ VARCHAR
) | SELECT share__18_49_ FROM table_28980706_4 WHERE viewers__millions_ LIKE "%9.28%" |
What are the children per donor in the country where the allowed recipients are married or in cohabitation? | CREATE TABLE table_16175217_1 (
children_per_donor VARCHAR,
allowed_recipients VARCHAR
) | SELECT children_per_donor FROM table_16175217_1 WHERE allowed_recipients LIKE "%married or in cohabitation%" |
What driver has 19 as the zan 1? | CREATE TABLE table_name_13 (
driver VARCHAR,
zan_1 VARCHAR
) | SELECT driver FROM table_name_13 WHERE zan_1 LIKE "%19%" |
Which Water (sqmi) has a County of benson, and an ANSI code smaller than 1759243? | CREATE TABLE table_name_13 (
water__sqmi_ INTEGER,
county VARCHAR,
ansi_code VARCHAR
) | SELECT MIN(water__sqmi_) FROM table_name_13 WHERE county LIKE "%benson%" AND ansi_code < '1759243' |
Name the loss with record of 14-19 | CREATE TABLE table_68892 (
"Date" text,
"Opponent" text,
"Score" text,
"Loss" text,
"Record" text
) | SELECT "Loss" FROM table_68892 WHERE "Record" LIKE '%14-19%' |
What was the losing hand where the winning hand was 7h 7s? | CREATE TABLE table_12454156_1 (
losing_hand VARCHAR,
winning_hand VARCHAR
) | SELECT losing_hand FROM table_12454156_1 WHERE winning_hand LIKE "%7h 7s%" |
Name the least game for march 20 | CREATE TABLE table_23186738_9 (
game INTEGER,
date VARCHAR
) | SELECT MIN(game) FROM table_23186738_9 WHERE date LIKE "%march 20%" |
Who won the men's ski jump when the FIS Nordic World Ski Championships was 1980? | CREATE TABLE table_name_34 (
winner VARCHAR,
fis_nordic_world_ski_championships VARCHAR
) | SELECT winner FROM table_name_34 WHERE fis_nordic_world_ski_championships LIKE "%1980%" |
at least how many times was Pierre Vermeulen at a game? | CREATE TABLE table_24565004_22 (
appearances¹ INTEGER,
name VARCHAR
) | SELECT MIN(appearances¹) FROM table_24565004_22 WHERE name LIKE '%pierre vermeulen%' |
What is the 1994 finish for the Miami tournament? | CREATE TABLE table_name_14 (
tournament VARCHAR
) | SELECT 1994 FROM table_name_14 WHERE tournament LIKE '%miami%' |
Where the wins are 46, what is the win%? | CREATE TABLE table_name_9 (
win_percentage VARCHAR,
wins VARCHAR
) | SELECT win_percentage FROM table_name_9 WHERE wins LIKE "%46%" |
Name the district for tim lee hall | CREATE TABLE table_1341672_14 (
district VARCHAR,
incumbent VARCHAR
) | SELECT district FROM table_1341672_14 WHERE incumbent LIKE "%tim lee hall%" |
What was the highest amount of episodes for the season with 5.74 million viewers? | CREATE TABLE table_22837363_1 (
episodes INTEGER,
viewers__in_millions_ VARCHAR
) | SELECT MAX(episodes) FROM table_22837363_1 WHERE viewers__in_millions_ LIKE '%5.74%' |
What date was week 2? | CREATE TABLE table_14971788_1 (
date VARCHAR,
week VARCHAR
) | SELECT date FROM table_14971788_1 WHERE week LIKE '%2%' |
THe audio book with ISBN 978-1-4084-6879-1 is read by whom? | CREATE TABLE table_2950964_5 (
read_by VARCHAR,
isbn VARCHAR
) | SELECT read_by FROM table_2950964_5 WHERE isbn LIKE "%isbn 978-1-4084-6879-1%" |
Who was the coach in 1953? | CREATE TABLE table_name_19 (
coach VARCHAR,
year VARCHAR
) | SELECT coach FROM table_name_19 WHERE year LIKE "%1953%" |
I want the lowest Laps for time/retired of engine and driver of charles de tornaco | CREATE TABLE table_name_22 (
laps INTEGER,
time_retired VARCHAR,
driver VARCHAR
) | SELECT MIN(laps) FROM table_name_22 WHERE time_retired LIKE '%engine%' AND driver LIKE '%charles de tornaco%' |
Who was second runner up when Janina San Miguel won Binibining Pilipinas-World? | CREATE TABLE table_1825751_4 (
second_runner_up VARCHAR,
binibining_pilipinas_world VARCHAR
) | SELECT second_runner_up FROM table_1825751_4 WHERE binibining_pilipinas_world LIKE "%janina san miguel%" |
Which source date has an Internet Explorer usage of 60.2%? | CREATE TABLE table_name_52 (
source VARCHAR,
internet_explorer VARCHAR
) | SELECT source FROM table_name_52 WHERE internet_explorer LIKE "%60.2%" |
What is the score for set 2 when set 3 was 15 6? | CREATE TABLE table_55013 (
"Date" text,
"Score" text,
"Set 1" text,
"Set 2" text,
"Set 3" text,
"Total" text
) | SELECT "Set 2" FROM table_55013 WHERE "Set 3" LIKE '%15–6%' |
What was the score when the Tie no less than 2? | CREATE TABLE table_name_11 (
score VARCHAR,
tie_no INTEGER
) | SELECT score FROM table_name_11 WHERE tie_no < 2 |
What is the power for the years 1975-84? | CREATE TABLE table_name_40 (
power VARCHAR,
years VARCHAR
) | SELECT power FROM table_name_40 WHERE years LIKE "%1975-84%" |
Which player went to Vanderbilt? | CREATE TABLE table_43493 (
"Round" real,
"Pick #" real,
"Player" text,
"Position" text,
"College" text
) | SELECT "Player" FROM table_43493 WHERE "College" LIKE '%vanderbilt%' |
Name the place where adelaide oval is | CREATE TABLE table_57556 (
"Runs" text,
"Against" text,
"City/Country" text,
"Venue" text,
"Result" text,
"Year" text
) | SELECT "City/Country" FROM table_57556 WHERE "Venue" LIKE '%adelaide oval%' |
What college did delray brooks go to? | CREATE TABLE table_name_23 (
college VARCHAR,
player VARCHAR
) | SELECT college FROM table_name_23 WHERE player LIKE "%delray brooks%" |
What is the date of the game with Detroit as the visitor team? | CREATE TABLE table_name_23 (
date VARCHAR,
visitor VARCHAR
) | SELECT date FROM table_name_23 WHERE visitor LIKE "%detroit%" |
Who was the cast on the English (Manga UK) version if K Nishimura acted on the original Japanese? | CREATE TABLE table_2160215_1 (
english___manga_uk__ VARCHAR,
original_japanese VARCHAR
) | SELECT english___manga_uk__ FROM table_2160215_1 WHERE original_japanese LIKE "%kō nishimura%" |
What is the name of the Leading scorer when the Home was the Trail blazers? | CREATE TABLE table_name_61 (
leading_scorer VARCHAR,
home VARCHAR
) | SELECT leading_scorer FROM table_name_61 WHERE home LIKE "%trail blazers%" |
What was the score of the 7:00pm game at Scotiabank Place against the Philadelphia Flyers? | CREATE TABLE table_name_12 (
score VARCHAR,
opponent VARCHAR,
time VARCHAR,
location VARCHAR
) | SELECT score FROM table_name_12 WHERE time LIKE "%7:00pm%" AND location LIKE "%scotiabank place%" AND opponent LIKE "%philadelphia flyers%" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.