question
stringlengths 19
162
| table_info
stringlengths 39
951
| sql_query
stringlengths 24
181
|
---|---|---|
Name the average popular votes in years after 1990 with percentage of 4.94% | CREATE TABLE table_name_35 (
popular_votes INTEGER,
percentage VARCHAR,
year VARCHAR
) | SELECT AVG(popular_votes) FROM table_name_35 WHERE percentage LIKE "%4.94%" AND year > "1990" |
What round was the gto winning team #48 greenwood racing? | CREATE TABLE table_18901 (
"Rnd" real,
"Circuit" text,
"GTO Winning Team" text,
"GTU Winning Team" text,
"TO Winning Team" text,
"TU Winning Team" text,
"Results" text
) | SELECT "Rnd" FROM table_18901 WHERE "GTO Winning Team" LIKE '%#48 greenwood racing%' |
Which analog channel has a digital channel of 4.1? | CREATE TABLE table_52792 (
"Analog Channel" text,
"Digital Channel" text,
"Call sign" text,
"Name" text,
"Network" text
) | SELECT "Analog Channel" FROM table_52792 WHERE "Digital Channel" LIKE '%4.1%' |
How many records were made on March 27, 2009? | CREATE TABLE table_1554 (
"Game" real,
"Date" text,
"Opponent" text,
"Score" text,
"Location" text,
"Attendance" real,
"Record" text,
"Points" real
) | SELECT COUNT("Record") FROM table_1554 WHERE "Date" LIKE '%march 27, 2009%' |
What was the chassis when the entrant was Lavazza March, and the points were 0.5? | CREATE TABLE table_name_75 (
chassis VARCHAR,
entrant VARCHAR,
points VARCHAR
) | SELECT chassis FROM table_name_75 WHERE entrant LIKE "%lavazza march%" AND points = '0.5' |
What is 1st Leg, when Team 1 is 'Portol Palma Mallorca'? | CREATE TABLE table_name_45 (
team_1 VARCHAR
) | SELECT 1 AS st_leg FROM table_name_45 WHERE team_1 LIKE "%portol palma mallorca%" |
What was the final score for Aguilar when he played Hans Podlipnik on clay and was runner-up? | CREATE TABLE table_name_47 (
score VARCHAR,
outcome VARCHAR,
surface VARCHAR,
opponent VARCHAR
) | SELECT score FROM table_name_47 WHERE surface LIKE "%clay%" AND opponent LIKE "%hans podlipnik%" AND outcome LIKE "%runner-up%" |
What is the 2011 value of the 2012 grand slam tournaments? | CREATE TABLE table_name_10 (
Id VARCHAR
) | SELECT 2011 FROM table_name_10 WHERE 2012 LIKE "%grand slam tournaments%" |
What is the 2006 sum with a rank 1 and more than 6758845 in 1996? | CREATE TABLE table_name_38 (
rank VARCHAR
) | SELECT SUM(2006) FROM table_name_38 WHERE rank LIKE '%1%' AND 1996 > 6758845 |
What is the day and date of game 2? | CREATE TABLE table_name_20 (
day VARCHAR,
_date VARCHAR,
game VARCHAR
) | SELECT day, _date FROM table_name_20 WHERE game LIKE "%2%" |
what is the highest attendance for week 6? | CREATE TABLE table_13492 (
"Week" real,
"Date" text,
"Opponent" text,
"Result" text,
"Attendance" real
) | SELECT MAX("Attendance") FROM table_13492 WHERE "Week" = 6 |
What is the nationality when the player is randy heath? | CREATE TABLE table_2679061_2 (
nationality VARCHAR,
player VARCHAR
) | SELECT nationality FROM table_2679061_2 WHERE player LIKE "%randy heath%" |
Name the net profit for eps beign 1.19 | CREATE TABLE table_20614109_1 (
net_profit__€m_ VARCHAR,
earnings_per_share__€_ VARCHAR
) | SELECT net_profit__€m_ FROM table_20614109_1 WHERE earnings_per_share__€_ LIKE "%1.19%" |
Who is the opponent at america west arena? | CREATE TABLE table_14280 (
"Game" real,
"Date" text,
"Opponent" text,
"Score" text,
"Location" text,
"Record" text
) | SELECT "Opponent" FROM table_14280 WHERE "Location" LIKE '%america west arena%' |
What is the density when simplified shows ? | CREATE TABLE table_name_33 (
density VARCHAR,
simplified VARCHAR
) | SELECT density FROM table_name_33 WHERE simplified LIKE '%南山区%' |
What is the to par for Gene Littler? | CREATE TABLE table_name_42 (
to_par VARCHAR,
player VARCHAR
) | SELECT to_par FROM table_name_42 WHERE player LIKE "%gene littler%" |
how many different clubs have won ? | CREATE TABLE table_204_99 (
id number,
"#" number,
"club" text,
"winner" number,
"last win" number,
"runner-up" number,
"last losing final" number
) | SELECT COUNT(DISTINCT "club") FROM table_204_99 WHERE "winner" > 0 |
What kind of Takuu has a North Marquesan of /vehine/? | CREATE TABLE table_name_83 (
takuu VARCHAR,
north_marquesan VARCHAR
) | SELECT takuu FROM table_name_83 WHERE north_marquesan LIKE '%/vehine/%' |
In what year was the rank 24? | CREATE TABLE table_66838 (
"Year" text,
"Start" text,
"Qual" text,
"Rank" text,
"Finish" text,
"Laps" real
) | SELECT "Year" FROM table_66838 WHERE "Rank" LIKE '%24%' |
What is every date of Mark Taylor as winning driver? | CREATE TABLE table_73881 (
"Round" real,
"Circuit" text,
"Date" text,
"Pole Position" text,
"Fastest Lap" text,
"Winning driver" text,
"Winning team" text
) | SELECT "Date" FROM table_73881 WHERE "Winning driver" LIKE '%mark taylor%' |
What is the Country with the T3 Place Player with a Score of 71-76-71=218? | CREATE TABLE table_8724 (
"Place" text,
"Player" text,
"Country" text,
"Score" text,
"To par" text
) | SELECT "Country" FROM table_8724 WHERE "Place" LIKE '%t3%' AND "Score" LIKE '%71-76-71=218%' |
What's the total with silver being less than 0, less than 1 gold, and 3 bronze? | CREATE TABLE table_63750 (
"Rank" text,
"Nation" text,
"Gold" real,
"Silver" real,
"Bronze" real,
"Total" real
) | SELECT SUM("Total") FROM table_63750 WHERE "Bronze" = 3 AND "Gold" < 1 AND "Silver" < 0 |
What was the win for 4 matches with a success rate of 25%? | CREATE TABLE table_name_70 (
wins VARCHAR,
matches VARCHAR,
success_rate VARCHAR
) | SELECT wins FROM table_name_70 WHERE matches LIKE "%4%" AND success_rate LIKE "%25%%" |
Which Score has a Away team of walthamstow avenue? | CREATE TABLE table_7609 (
"Tie no" text,
"Home team" text,
"Score" text,
"Away team" text,
"Date" text
) | SELECT "Score" FROM table_7609 WHERE "Away team" LIKE '%walthamstow avenue%' |
How many times was the overall attendance 17807? | CREATE TABLE table_2771237_1 (
overall_attendance VARCHAR,
average_attendance VARCHAR
) | SELECT COUNT(overall_attendance) FROM table_2771237_1 WHERE average_attendance = '17807' |
What is the status(es) of the place with an area of 304.06 km2? | CREATE TABLE table_176521_2 (
status VARCHAR,
area_km_2 VARCHAR
) | SELECT status FROM table_176521_2 WHERE area_km_2 LIKE "%304.06%" |
Which Economic Class has a Barangay of imelda bliss village? | CREATE TABLE table_name_77 (
economic_class VARCHAR,
barangay VARCHAR
) | SELECT economic_class FROM table_name_77 WHERE barangay LIKE "%imelda bliss village%" |
What was in 2007 that is from 2004 0f 2r and 2010 of A? | CREATE TABLE table_40303 (
"Tournament" text,
"1996" text,
"1997" text,
"1998" text,
"1999" text,
"2000" text,
"2001" text,
"2002" text,
"2003" text,
"2004" text,
"2005" text,
"2006" text,
"2007" text,
"2008" text,
"2009" text,
"2010" text,
"2011" text
) | SELECT "2007" FROM table_40303 WHERE "2004" LIKE '%2r%' AND "2010" LIKE '%a%' |
how many games did the 1981 atlanta falcons win ? | CREATE TABLE table_203_257 (
id number,
"week" number,
"date" text,
"opponent" text,
"result" text,
"attendance" number
) | SELECT COUNT(*) FROM table_203_257 WHERE "result" LIKE '%w%' |
What was the compression ration when the engine was Wasp Jr. T1B2? | CREATE TABLE table_1123802_1 (
compression_ratio VARCHAR,
engine VARCHAR
) | SELECT compression_ratio FROM table_1123802_1 WHERE engine LIKE '%wasp jr. t1b2%' |
Which college has a pick number of 155? | CREATE TABLE table_name_19 (
college VARCHAR,
pick__number VARCHAR
) | SELECT college FROM table_name_19 WHERE pick__number LIKE '%155%' |
Name the # country for new palestine | CREATE TABLE table_name_54 (
_number___county VARCHAR,
school VARCHAR
) | SELECT _number___county FROM table_name_54 WHERE school LIKE "%new palestine%" |
How many years was the building with 24 floors the tallest? | CREATE TABLE table_name_14 (
years_as_tallest VARCHAR,
floors VARCHAR
) | SELECT years_as_tallest FROM table_name_14 WHERE floors LIKE '%24%' |
Score of 8 - 1 happened on what day in December? | CREATE TABLE table_name_27 (
december VARCHAR,
score VARCHAR
) | SELECT december FROM table_name_27 WHERE score LIKE "%8 - 1%" |
Position of member, and a Nationality of india is what sum of term ending? | CREATE TABLE table_5252 (
"Name" text,
"Nationality" text,
"Position" text,
"Tenure Began" real,
"Term Ending" real
) | SELECT SUM("Term Ending") FROM table_5252 WHERE "Position" LIKE '%member%' AND "Nationality" LIKE '%india%' |
Which Race has the Toyota Racing Series New Zealand and 0 wins? | CREATE TABLE table_14918 (
"Season" text,
"Series" text,
"Races" text,
"Wins" text,
"Podiums" text,
"Points" text,
"Final Placing" text
) | SELECT "Races" FROM table_14918 WHERE "Series" LIKE '%toyota racing series new zealand%' AND "Wins" = '0' |
Name the incumbent for alabama 6 | CREATE TABLE table_73142 (
"District" text,
"Incumbent" text,
"Party" text,
"First elected" real,
"Result" text,
"Candidates" text
) | SELECT "Incumbent" FROM table_73142 WHERE "District" LIKE '%alabama 6%' |
Which height is associated with Franklin High School? | CREATE TABLE table_name_40 (
height VARCHAR,
school VARCHAR
) | SELECT height FROM table_name_40 WHERE school LIKE "%franklin high school%" |
How much was the in-county tuition per credit hour at the Mercer College by the fall of 2009? | CREATE TABLE table_22308881_2 (
in_county_tuition_per_credit_hour__fall_2009_ VARCHAR,
college VARCHAR
) | SELECT in_county_tuition_per_credit_hour__fall_2009_ FROM table_22308881_2 WHERE college LIKE "%mercer%" |
What were the outcomes of matches with bill tilden florence ballin as opponents? | CREATE TABLE table_2127933_3 (
outcome VARCHAR,
opponents VARCHAR
) | SELECT outcome FROM table_2127933_3 WHERE opponents LIKE "%bill tilden florence ballin%" |
What is the name of the young rider classification when Paolo Tiralongo won? | CREATE TABLE table_30588 (
"Stage" real,
"Winner" text,
"General classification" text,
"Points classification" text,
"Mountains classification" text,
"Young rider classification" text
) | SELECT "Young rider classification" FROM table_30588 WHERE "Winner" LIKE '%paolo tiralongo%' |
What date was the xiv international gold cup? | CREATE TABLE table_name_80 (
date VARCHAR,
race_name VARCHAR
) | SELECT date FROM table_name_80 WHERE race_name LIKE "%xiv international gold cup%" |
What was the BBI for the bowler whose average is 24.50? | CREATE TABLE table_30111 (
"Player" text,
"Matches" real,
"Overs" text,
"Wickets" real,
"Average" text,
"Economy" text,
"BBI" text,
"4wi" real
) | SELECT "BBI" FROM table_30111 WHERE "Average" LIKE '%24.50%' |
What is the leading scorer of the game with the Celtics as the visiting team? | CREATE TABLE table_name_59 (
leading_scorer VARCHAR,
visitor VARCHAR
) | SELECT leading_scorer FROM table_name_59 WHERE visitor LIKE "%celtics%" |
What place did the player from England come in? | CREATE TABLE table_name_50 (
place VARCHAR,
country VARCHAR
) | SELECT place FROM table_name_50 WHERE country LIKE "%england%" |
When north melbourne played as the home team, what was the away team score? | CREATE TABLE table_name_7 (
away_team VARCHAR,
home_team VARCHAR
) | SELECT away_team AS score FROM table_name_7 WHERE home_team LIKE "%north melbourne%" |
What percentage of voters choise McCain in Burlington? | CREATE TABLE table_23638 (
"County" text,
"Obama %" text,
"Obama #" real,
"McCain %" text,
"McCain #" real,
"Others %" text,
"Others #" real
) | SELECT "McCain %" FROM table_23638 WHERE "County" LIKE '%burlington%' |
What is the grand final date for the game with a score or 30-24? | CREATE TABLE table_name_44 (
grand_finaldate VARCHAR,
score VARCHAR
) | SELECT grand_finaldate FROM table_name_44 WHERE score LIKE "%30-24%" |
What is the highest rank of an athlete from Switzerland in a heat larger than 3? | CREATE TABLE table_name_54 (
rank INTEGER,
heat VARCHAR,
nationality VARCHAR
) | SELECT MAX(rank) FROM table_name_54 WHERE heat > 3 AND nationality LIKE "%switzerland%" |
which artists won in 2008 and 2009 respectively ? | CREATE TABLE table_204_655 (
id number,
"year" number,
"winner" text,
"album" text,
"other finalists" text
) | SELECT "winner" FROM table_204_655 WHERE "year" IN (2008, 2009) |
What is the highest birth/2013 when the death/2012 is 14,1? | CREATE TABLE table_25703_1 (
birth_2013 INTEGER,
death_2012 VARCHAR
) | SELECT MAX(birth_2013) FROM table_25703_1 WHERE death_2012 LIKE "%14,1%" |
In which location did the Meca World Vale Tudo 6 event happen? | CREATE TABLE table_name_84 (
location VARCHAR,
event VARCHAR
) | SELECT location FROM table_name_84 WHERE event LIKE "%meca world vale tudo 6%" |
What is the total number of Wins, when Losses is less than 10, when Against is less than 1253, and when Byes is less than 0? | CREATE TABLE table_12645 (
"South West DFL" text,
"Wins" real,
"Byes" real,
"Losses" real,
"Draws" real,
"Against" real
) | SELECT COUNT("Wins") FROM table_12645 WHERE "Losses" < 10 AND "Against" < 1253 AND "Byes" < 0 |
What is listed in p when the type is listed as free agent 1? | CREATE TABLE table_17634290_7 (
p VARCHAR,
type VARCHAR
) | SELECT p FROM table_17634290_7 WHERE type LIKE "%free agent 1%" |
What class year was Vencie Glenn from? | CREATE TABLE table_22982552_9 (
class_year INTEGER,
player VARCHAR
) | SELECT MIN(class_year) FROM table_22982552_9 WHERE player LIKE "%vencie glenn%" |
What was the circumstance that happened on the road to Jalalabad? | CREATE TABLE table_name_89 (
circumstances VARCHAR,
location VARCHAR
) | SELECT circumstances FROM table_name_89 WHERE location LIKE "%road to jalalabad%" |
What is Speed, when Time is 1:24.23.0? | CREATE TABLE table_41046 (
"Place" real,
"Rider" text,
"Country" text,
"Machine" text,
"Speed" text,
"Time" text,
"Points" real
) | SELECT "Speed" FROM table_41046 WHERE "Time" LIKE '%1:24.23.0%' |
Which round was played on 10 May? | CREATE TABLE table_62270 (
"Date" text,
"Tournament" text,
"Round" text,
"Ground" text,
"Opponent" text,
"Score 1" text
) | SELECT "Round" FROM table_62270 WHERE "Date" LIKE '%10 may%' |
what is the score that has tie number 27 | CREATE TABLE table_8421 (
"Tie no" text,
"Home team" text,
"Score" text,
"Away team" text,
"Date" text
) | SELECT "Score" FROM table_8421 WHERE "Tie no" LIKE '%27%' |
What year was 'moped girls' released? | CREATE TABLE table_18710512_3 (
date VARCHAR,
single VARCHAR
) | SELECT date FROM table_18710512_3 WHERE single LIKE "%moped girls%" |
What was the result in 2008? | CREATE TABLE table_name_99 (
result VARCHAR,
year VARCHAR
) | SELECT result FROM table_name_99 WHERE year LIKE "%2008%" |
From which country is the player that won in 1998? | CREATE TABLE table_name_78 (
country VARCHAR,
year_s__won VARCHAR
) | SELECT country FROM table_name_78 WHERE year_s__won LIKE "%1998%" |
What is average round of Auburn College? | CREATE TABLE table_38437 (
"Round" real,
"Pick" real,
"Player" text,
"Position" text,
"College" text
) | SELECT AVG("Round") FROM table_38437 WHERE "College" LIKE '%auburn%' |
What was the date of the game when the record of the series was 0 1? | CREATE TABLE table_name_10 (
date VARCHAR,
series VARCHAR
) | SELECT date FROM table_name_10 WHERE series LIKE "%0–1%" |
What was the result of the games VS the Lions? | CREATE TABLE table_24123547_2 (
final_score VARCHAR,
opponent VARCHAR
) | SELECT final_score FROM table_24123547_2 WHERE opponent LIKE "%lions%" |
Who is the incumbent for the Oregon 5 District that was elected in 1996? | CREATE TABLE table_name_34 (
incumbent VARCHAR,
first_elected VARCHAR,
district VARCHAR
) | SELECT incumbent FROM table_name_34 WHERE first_elected = '1996' AND district LIKE '%oregon 5%' |
Who was the winner when Katsuyuki Hiranaka had the fastest lap? | CREATE TABLE table_4465 (
"Round" real,
"Track" text,
"Date" text,
"Pole Position" text,
"Fastest Lap" text,
"Winner" text,
"Team" text
) | SELECT "Winner" FROM table_4465 WHERE "Fastest Lap" LIKE '%katsuyuki hiranaka%' |
Against which team does Missouri Tigers have a record of mu, 2-1 at a neutral site? | CREATE TABLE table_16201038_4 (
missouri_vs VARCHAR,
at_neutral_site VARCHAR
) | SELECT missouri_vs FROM table_16201038_4 WHERE at_neutral_site LIKE '%mu, 2-1%' |
What is the capacity for the school that has the Owl Athletic Complex baseball stadium? | CREATE TABLE table_23252 (
"School" text,
"Baseball stadium" text,
"Softball stadium" text,
"Basketball arena" text,
"Capacity" text
) | SELECT "Capacity" FROM table_23252 WHERE "Baseball stadium" LIKE '%owl athletic complex%' |
Which tournament had a score of 7 5, 2 6, 7 6? | CREATE TABLE table_name_7 (
tournament VARCHAR,
score VARCHAR
) | SELECT tournament FROM table_name_7 WHERE score LIKE "%7–5, 2–6, 7–6%" |
Name the district for john randolph (dr) | CREATE TABLE table_2668387_18 (
district VARCHAR,
candidates VARCHAR
) | SELECT district FROM table_2668387_18 WHERE candidates LIKE "%john randolph (dr)%" |
What is the stadium for the city of Braga? | CREATE TABLE table_62103 (
"Club" text,
"Season's Last Head Coach" text,
"City" text,
"Stadium" text,
"2004-2005 season" text
) | SELECT "Stadium" FROM table_62103 WHERE "City" LIKE '%braga%' |
Which syndicate is associated with the stars & stripes yacht? | CREATE TABLE table_54697 (
"Sail" text,
"Yacht" text,
"Syndicate" text,
"Yacht Club" text,
"Nation" text
) | SELECT "Syndicate" FROM table_54697 WHERE "Yacht" LIKE '%stars & stripes%' |
who was the opponent in the last game played ? | CREATE TABLE table_204_644 (
id number,
"week" number,
"date" text,
"opponent" text,
"result" text,
"record" text,
"game site" text,
"bye" text
) | SELECT "opponent" FROM table_204_644 ORDER BY "week" DESC LIMIT 1 |
For which country does Keith Fergus play? | CREATE TABLE table_1515346_2 (
country VARCHAR,
player VARCHAR
) | SELECT country FROM table_1515346_2 WHERE player LIKE "%keith fergus%" |
How many episodes were directed by james quinn? | CREATE TABLE table_2618061_1 (
written_by VARCHAR,
directed_by VARCHAR
) | SELECT COUNT(written_by) FROM table_2618061_1 WHERE directed_by LIKE '%james quinn%' |
What was the attendance of the Cup Quarterfinals game? | CREATE TABLE table_67411 (
"Date" text,
"Opponent" text,
"Result" text,
"Game Site" text,
"Attendance" text
) | SELECT "Attendance" FROM table_67411 WHERE "Game Site" LIKE '%cup quarterfinals%' |
What was the highest number of touchdowns by a player? | CREATE TABLE table_25647137_2 (
touchdowns INTEGER
) | SELECT MAX(touchdowns) FROM table_25647137_2 |
What day did they record a score of 1-2 in 1994? | CREATE TABLE table_57315 (
"Year" real,
"Competition" text,
"Date" text,
"Location" text,
"Score" text,
"Result" text
) | SELECT "Date" FROM table_57315 WHERE "Score" LIKE '%1-2%' AND "Year" = 1994 |
What was the max mach when the maximum speed was 3887? | CREATE TABLE table_221315_3 (
max_mach VARCHAR,
max_speed__mph_ VARCHAR
) | SELECT max_mach FROM table_221315_3 WHERE max_speed__mph_ LIKE '%3887%' |
Who is the visiting team when Dipietro received a decision on October 27? | CREATE TABLE table_name_50 (
visitor VARCHAR,
decision VARCHAR,
date VARCHAR
) | SELECT visitor FROM table_name_50 WHERE decision LIKE "%dipietro%" AND date LIKE "%october 27%" |
Who was the Away team at Hawthorn? | CREATE TABLE table_name_24 (
home_team VARCHAR,
away_team VARCHAR
) | SELECT home_team FROM table_name_24 WHERE away_team LIKE "%hawthorn%" |
Name the home with toronto visiting | CREATE TABLE table_name_29 (
home VARCHAR,
visitor VARCHAR
) | SELECT home FROM table_name_29 WHERE visitor LIKE "%toronto%" |
What is the record for May 31? | CREATE TABLE table_name_83 (
record VARCHAR,
date VARCHAR
) | SELECT record FROM table_name_83 WHERE date LIKE "%may 31%" |
Who was the winner of stage 12? | CREATE TABLE table_name_76 (
winner VARCHAR,
stage VARCHAR
) | SELECT winner FROM table_name_76 WHERE stage LIKE "%12%" |
Who is the driver of the entry constructed by Mercedes-Benz? | CREATE TABLE table_1972 (
"Year" real,
"Formula" text,
"Driver" text,
"Constructor" text,
"Location" text,
"Report" text
) | SELECT "Driver" FROM table_1972 WHERE "Constructor" LIKE '%mercedes-benz%' |
What rank was the team from Australia? | CREATE TABLE table_name_77 (
rank VARCHAR,
country VARCHAR
) | SELECT COUNT(rank) FROM table_name_77 WHERE country LIKE "%australia%" |
Which title has the Translation of vesoul? | CREATE TABLE table_54795 (
"Track" real,
"Title" text,
"Translation" text,
"Composer" text,
"Recorded" text
) | SELECT "Title" FROM table_54795 WHERE "Translation" LIKE '%vesoul%' |
What year is the death for a birth of 1873 and higher than rank 28? | CREATE TABLE table_13032 (
"Rank" real,
"Name" text,
"Country" text,
"Birth" real,
"Death" text
) | SELECT "Death" FROM table_13032 WHERE "Birth" = 1873 AND "Rank" > 28 |
how many of the competitions that took place were based in a venue in the united states ? | CREATE TABLE table_203_763 (
id number,
"year" number,
"competition" text,
"venue" text,
"position" text,
"notes" text
) | SELECT COUNT("competition") FROM table_203_763 WHERE "venue" LIKE '%united states%' |
List the name of ships whose nationality is not 'United States'. | CREATE TABLE ship (
Name VARCHAR,
Nationality VARCHAR
) | SELECT Name FROM ship WHERE Nationality NOT LIKE "%united states%" |
Who won the season when Pete Thomas was the At-Home winner? | CREATE TABLE table_name_21 (
the_biggest_loser VARCHAR,
at_home_winner VARCHAR
) | SELECT the_biggest_loser FROM table_name_21 WHERE at_home_winner LIKE "%pete thomas%" |
Name the total number of language of films for m ga-plex taschereau imax | CREATE TABLE table_2461720_1 (
language_of_films VARCHAR,
theatre_name VARCHAR
) | SELECT COUNT(language_of_films) FROM table_2461720_1 WHERE theatre_name LIKE '%méga-plex taschereau imax%' |
Where the audience share is 8%, what is the original airing? | CREATE TABLE table_name_60 (
original_airing VARCHAR,
audience_share__average_ VARCHAR
) | SELECT original_airing FROM table_name_60 WHERE audience_share__average_ LIKE '%8%%' |
What NFL Teams have the player Aaron Williams? | CREATE TABLE table_2508633_11 (
nfl_team VARCHAR,
player VARCHAR
) | SELECT nfl_team FROM table_2508633_11 WHERE player LIKE "%aaron williams%" |
What is Visitor, when Date is 'April 24'? | CREATE TABLE table_12220 (
"Date" text,
"Visitor" text,
"Score" text,
"Home" text,
"Record" text
) | SELECT "Visitor" FROM table_12220 WHERE "Date" LIKE '%april 24%' |
What was the home team score when the VFL played at Western Oval? | CREATE TABLE table_name_65 (
home_team VARCHAR,
venue VARCHAR
) | SELECT home_team AS score FROM table_name_65 WHERE venue LIKE "%western oval%" |
Which mountains classification is listed under stage 3? | CREATE TABLE table_27112708_2 (
mountains_classification VARCHAR,
stage VARCHAR
) | SELECT mountains_classification FROM table_27112708_2 WHERE stage LIKE '%3%' |
Which Tie number had Middlesbrough as the away team? | CREATE TABLE table_45779 (
"Tie no" text,
"Home team" text,
"Score" text,
"Away team" text,
"Date" text
) | SELECT "Tie no" FROM table_45779 WHERE "Away team" LIKE '%middlesbrough%' |
Episode smaller than 210 had what segment c? | CREATE TABLE table_name_67 (
segment_c VARCHAR,
episode INTEGER
) | SELECT segment_c FROM table_name_67 WHERE episode < 210 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.