question
stringlengths 19
162
| table_info
stringlengths 39
951
| sql_query
stringlengths 24
181
|
---|---|---|
What kind is in the year 1978 and a manual of ii/p?
|
CREATE TABLE table_name_79 (
kind VARCHAR,
year VARCHAR,
manuals VARCHAR
)
|
SELECT kind FROM table_name_79 WHERE year LIKE "%1978%" AND manuals LIKE "%ii/p%"
|
What is the highest point total that placed 3rd and has a draw larger than 5?
|
CREATE TABLE table_name_84 (
points INTEGER,
place VARCHAR,
draw VARCHAR
)
|
SELECT MAX(points) FROM table_name_84 WHERE place LIKE "%3rd%" AND draw > 5
|
What is the Medal for the Player in the Light Heavyweight event?
|
CREATE TABLE table_name_25 (
medal VARCHAR,
event VARCHAR
)
|
SELECT medal FROM table_name_25 WHERE event LIKE "%light heavyweight%"
|
What was the surface for events held in 1983?
|
CREATE TABLE table_2151643_3 (
surface VARCHAR,
year VARCHAR
)
|
SELECT surface FROM table_2151643_3 WHERE year LIKE '%1983%'
|
What is the Record of the game on November 24 with a Score of 6 2?
|
CREATE TABLE table_8132 (
"Date" text,
"Visitor" text,
"Score" text,
"Home" text,
"Record" text
)
|
SELECT "Record" FROM table_8132 WHERE "Score" LIKE '%6–2%' AND "Date" LIKE '%november 24%'
|
In game site AOL Arena, who are all the opponents?
|
CREATE TABLE table_25380472_2 (
opponent VARCHAR,
game_site VARCHAR
)
|
SELECT opponent FROM table_25380472_2 WHERE game_site LIKE '%aol arena%'
|
For Pigeon Creek what is the per capita income?
|
CREATE TABLE table_1840495_2 (
per_capita_income VARCHAR,
place VARCHAR
)
|
SELECT per_capita_income FROM table_1840495_2 WHERE place LIKE "%pigeon creek%"
|
What position Jason Fitzgerald played?
|
CREATE TABLE table_63033 (
"Pick" real,
"Player" text,
"Team" text,
"Position" text,
"School" text
)
|
SELECT "Position" FROM table_63033 WHERE "Player" LIKE '%jason fitzgerald%'
|
What is the NHL team for Round 5 and an overall ranking of #154?
|
CREATE TABLE table_8408 (
"Player" text,
"Round" text,
"Overall" text,
"NHL Team" text,
"MWEHL Team" text
)
|
SELECT "NHL Team" FROM table_8408 WHERE "Round" LIKE '%5%' AND "Overall" LIKE '%#154%'
|
Name the least floor exercise for parallel bars more than 9.687 and pommel horse less than 8.45
|
CREATE TABLE table_name_58 (
floor_exercise INTEGER,
pommel_horse VARCHAR,
parallel_bars VARCHAR
)
|
SELECT MIN(floor_exercise) FROM table_name_58 WHERE CAST(pommel_horse AS DECIMAL) < 8.45 AND CAST(parallel_bars AS DECIMAL) > 9.687
|
Which year had playoffs of champion?
|
CREATE TABLE table_53224 (
"Year" real,
"Division" text,
"League" text,
"Reg. Season" text,
"Playoffs" text,
"Open Cup" text
)
|
SELECT AVG("Year") FROM table_53224 WHERE "Playoffs" LIKE '%champion%'
|
Who are the studio analysts for the year 2008-09?
|
CREATE TABLE table_14902507_2 (
studio_analysts VARCHAR,
year VARCHAR
)
|
SELECT studio_analysts FROM table_14902507_2 WHERE year LIKE "%2008-09%"
|
What is the highest number of stories in homes with a height of 42 m.?
|
CREATE TABLE table_6937 (
"Name" text,
"Stories" real,
"Height" text,
"Built" text,
"Purpose" text,
"Status" text
)
|
SELECT MAX("Stories") FROM table_6937 WHERE "Height" LIKE '%42 m.%'
|
Name the numbers for the player with a height in ft of 6-7 for the guard
|
CREATE TABLE table_name_4 (
no_s_ VARCHAR,
height_in_ft VARCHAR,
position VARCHAR
)
|
SELECT no_s_ FROM table_name_4 WHERE height_in_ft LIKE "%6-7%" AND position LIKE "%guard%"
|
What is the most first elected for james c. davis?
|
CREATE TABLE table_1341930_11 (
first_elected INTEGER,
incumbent VARCHAR
)
|
SELECT MAX(first_elected) FROM table_1341930_11 WHERE incumbent LIKE '%james c. davis%'
|
What F Player was previously with the New York Knicks?
|
CREATE TABLE table_name_73 (
player VARCHAR,
pos VARCHAR,
previous_team VARCHAR
)
|
SELECT player FROM table_name_73 WHERE pos LIKE "%f%" AND previous_team LIKE "%new york knicks%"
|
What is the least entry for game if the score is 1-0?
|
CREATE TABLE table_27539535_4 (
game INTEGER,
score VARCHAR
)
|
SELECT MIN(game) FROM table_27539535_4 WHERE score LIKE "%1-0%"
|
What day did St Kilda play as the away team?
|
CREATE TABLE table_name_53 (
date VARCHAR,
away_team VARCHAR
)
|
SELECT date FROM table_name_53 WHERE away_team LIKE "%st kilda%"
|
what is the date when scorers is parkinson?
|
CREATE TABLE table_name_23 (
date VARCHAR,
scorers VARCHAR
)
|
SELECT date FROM table_name_23 WHERE scorers LIKE "%parkinson%"
|
Which margin of victory has cyber agent ladies as the tournament?
|
CREATE TABLE table_name_78 (
margin_of_victory VARCHAR,
tournament VARCHAR
)
|
SELECT margin_of_victory FROM table_name_78 WHERE tournament LIKE "%cyber agent ladies%"
|
Which location has the ecosystem of kelp forest?
|
CREATE TABLE table_20204 (
"Ecosystem" text,
"Date of issue" text,
"Place of issue" text,
"No. stamps in sheet" real,
"Face Value" text,
"Printer" text
)
|
SELECT "Place of issue" FROM table_20204 WHERE "Ecosystem" LIKE '%kelp forest%'
|
What year was a movie with the original title La Leggenda del Santo Bevitore submitted?
|
CREATE TABLE table_10321805_1 (
year__ceremony_ VARCHAR,
original_title VARCHAR
)
|
SELECT year__ceremony_ FROM table_10321805_1 WHERE original_title LIKE '%la leggenda del santo bevitore%'
|
What website has an Ofsted less than 106478 in Atherton?
|
CREATE TABLE table_name_33 (
website VARCHAR,
ofsted VARCHAR,
locality VARCHAR
)
|
SELECT website FROM table_name_33 WHERE CAST(ofsted AS INTEGER) < 106478 AND locality LIKE '%atherton%'
|
What was the lineup that resulted in 1-0 AET W?
|
CREATE TABLE table_name_29 (
lineup VARCHAR,
result VARCHAR
)
|
SELECT lineup FROM table_name_29 WHERE result LIKE "%1-0 aet w%"
|
What is 2001, when 1996 is '0 / 2'?
|
CREATE TABLE table_name_1 (
Id VARCHAR
)
|
SELECT 2001 FROM table_name_1 WHERE 1996 LIKE "%0 / 2%"
|
what is the react when the lane is 3 and heat is 2?
|
CREATE TABLE table_name_98 (
react VARCHAR,
lane VARCHAR,
heat VARCHAR
)
|
SELECT react FROM table_name_98 WHERE lane LIKE '%3%' AND heat LIKE '%2%'
|
What is the race time for emma twigg?
|
CREATE TABLE table_name_29 (
time VARCHAR,
athlete VARCHAR
)
|
SELECT time FROM table_name_29 WHERE athlete LIKE "%emma twigg%"
|
If the player is Marcelo, what is the minimum R?
|
CREATE TABLE table_25567 (
"R" real,
"Player" text,
"Position" text,
"League" real,
"Champions League" real,
"Copa del Rey" real,
"Total" real
)
|
SELECT MIN("R") FROM table_25567 WHERE "Player" LIKE '%marcelo%'
|
How tall is player James Stanton?
|
CREATE TABLE table_name_19 (
height VARCHAR,
name VARCHAR
)
|
SELECT height FROM table_name_19 WHERE name LIKE "%james stanton%"
|
What is the list date of the historic place that was built 1896, 1914?
|
CREATE TABLE table_name_88 (
listed VARCHAR,
built VARCHAR
)
|
SELECT listed FROM table_name_88 WHERE built LIKE "%1896, 1914%"
|
Which player has 79.62 as the strike rate?
|
CREATE TABLE table_64700 (
"Player" text,
"Matches" text,
"Runs" text,
"Balls" text,
"Strike Rate" text,
"Average" text,
"100s" text
)
|
SELECT "Player" FROM table_64700 WHERE "Strike Rate" LIKE '%79.62%'
|
What race is 12 hours in length?
|
CREATE TABLE table_name_52 (
race VARCHAR,
length VARCHAR
)
|
SELECT race FROM table_name_52 WHERE length LIKE "%12 hours%"
|
What is the To par of the Player with a Score of 69-70=139?
|
CREATE TABLE table_name_59 (
to_par VARCHAR,
score VARCHAR
)
|
SELECT to_par FROM table_name_59 WHERE score = '-1'
|
What was the losing bonus that had 53 points?
|
CREATE TABLE table_17941032_2 (
losing_bonus VARCHAR,
points VARCHAR
)
|
SELECT losing_bonus FROM table_17941032_2 WHERE points LIKE "%53%"
|
To what party does Cardiss Collins belong?
|
CREATE TABLE table_1341577_14 (
party VARCHAR,
incumbent VARCHAR
)
|
SELECT party FROM table_1341577_14 WHERE incumbent LIKE "%cardiss collins%"
|
in which state where John Laurance (f) as a vacator?
|
CREATE TABLE table_224840_3 (
state__class_ VARCHAR,
vacator VARCHAR
)
|
SELECT state__class_ FROM table_224840_3 WHERE vacator LIKE "%john laurance (f)%"
|
What was the result in the 2012 for the US Open tournament?
|
CREATE TABLE table_12135 (
"Tournament" text,
"2006" text,
"2007" text,
"2008" text,
"2009" text,
"2011" text,
"2012" text
)
|
SELECT "2012" FROM table_12135 WHERE "Tournament" LIKE '%us open%'
|
What is the average pick in 1983?
|
CREATE TABLE table_12256 (
"Pick" real,
"Player" text,
"Team" text,
"Position" text,
"Year" real
)
|
SELECT AVG("Pick") FROM table_12256 WHERE "Year" LIKE '%1983%'
|
When the home team scored 11.13 (79), what away team were they playing?
|
CREATE TABLE table_54829 (
"Home team" text,
"Home team score" text,
"Away team" text,
"Away team score" text,
"Venue" text,
"Crowd" real,
"Date" text
)
|
SELECT "Away team" FROM table_54829 WHERE "Home team score" LIKE '%11.13 (79)%'
|
What was the maximum number in written when the standard was 2?
|
CREATE TABLE table_19534874_2 (
written INTEGER,
standard VARCHAR
)
|
SELECT MAX(written) FROM table_19534874_2 WHERE standard LIKE '%2%'
|
What is the time/retired for the driver emerson fittipaldi?
|
CREATE TABLE table_name_55 (
time_retired VARCHAR,
driver VARCHAR
)
|
SELECT time_retired FROM table_name_55 WHERE driver LIKE "%emerson fittipaldi%"
|
what are all the people where the entries is peugeot sport polska
|
CREATE TABLE table_30245 (
"Entrant" text,
"Constructor" text,
"Car" text,
"Driver" text,
"Co-driver" text,
"Rounds" text
)
|
SELECT "Driver" FROM table_30245 WHERE "Entrant" LIKE '%peugeot sport polska%'
|
Which kingdom has Suin as its capital?
|
CREATE TABLE table_name_65 (
name_of_kingdom VARCHAR,
capital VARCHAR
)
|
SELECT name_of_kingdom FROM table_name_65 WHERE capital LIKE "%suin%"
|
How many odd of winning have 6th as the division?
|
CREATE TABLE table_20195922_3 (
odds_of_winning__1in_ VARCHAR,
divisions VARCHAR
)
|
SELECT odds_of_winning__1in_ FROM table_20195922_3 WHERE divisions LIKE "%6th%"
|
What station aired a game at 9:00pm?
|
CREATE TABLE table_1672976_6 (
television VARCHAR,
time VARCHAR
)
|
SELECT television FROM table_1672976_6 WHERE time LIKE "%9:00pm%"
|
What is every year born for height of 1.88?
|
CREATE TABLE table_23670057_7 (
year_born VARCHAR,
height__m_ VARCHAR
)
|
SELECT year_born FROM table_23670057_7 WHERE height__m_ LIKE "%1.88%"
|
Who had the high assists against detroit?
|
CREATE TABLE table_27712702_11 (
high_assists VARCHAR,
team VARCHAR
)
|
SELECT high_assists FROM table_27712702_11 WHERE team LIKE "%detroit%"
|
What type of school had an enrollment in 2009 of 224?
|
CREATE TABLE table_2076595_1 (
type VARCHAR,
enrollment__2009_ VARCHAR
)
|
SELECT type FROM table_2076595_1 WHERE enrollment__2009_ = '224'
|
What was average attendance when total attendance was 541380?
|
CREATE TABLE table_28884858_2 (
average_attendance VARCHAR,
total_attendance VARCHAR
)
|
SELECT average_attendance FROM table_28884858_2 WHERE total_attendance LIKE '%541380%'
|
Name the branding for forum communications
|
CREATE TABLE table_14623167_1 (
branding VARCHAR,
owner VARCHAR
)
|
SELECT branding FROM table_14623167_1 WHERE owner LIKE "%forum communications%"
|
What was the date when the home team was Dallas?
|
CREATE TABLE table_name_28 (
date VARCHAR,
home VARCHAR
)
|
SELECT date FROM table_name_28 WHERE home LIKE "%dallas%"
|
What was the aggregate for the celebrity who was known for being a singer and had 7 dances?
|
CREATE TABLE table_25931938_1 (
aggregate VARCHAR,
dances VARCHAR,
known_for VARCHAR
)
|
SELECT aggregate FROM table_25931938_1 WHERE dances = '7' AND known_for LIKE '%singer%'
|
Can you tell me the Date that has the Week smaller than 13, and the Opponent of green bay packers?
|
CREATE TABLE table_name_16 (
date VARCHAR,
week VARCHAR,
opponent VARCHAR
)
|
SELECT date FROM table_name_16 WHERE week < '13' AND opponent LIKE '%green bay packers%'
|
Name the most households
|
CREATE TABLE table_21310575_2 (
households INTEGER
)
|
SELECT MAX(households) FROM table_21310575_2
|
WHAT IS THE TITLE WITH CATEGORY OF best r&b song?
|
CREATE TABLE table_name_95 (
title VARCHAR,
category VARCHAR
)
|
SELECT title FROM table_name_95 WHERE category LIKE "%best r&b song%"
|
What is the result for Gold Coast when Melbourne and Adelaide are yes, but Perth is no?
|
CREATE TABLE table_name_73 (
gold_coast VARCHAR,
adelaide VARCHAR,
melbourne VARCHAR,
perth VARCHAR
)
|
SELECT gold_coast FROM table_name_73 WHERE melbourne LIKE "%yes%" AND perth LIKE "%no%" AND adelaide LIKE "%yes%"
|
what is the number of countries in each team ?
|
CREATE TABLE table_203_526 (
id number,
"team 1" text,
"agg." text,
"team 2" text,
"1st leg" text,
"2nd leg" text
)
|
SELECT COUNT("team 1") FROM table_203_526
|
How many laps did car 23 do?
|
CREATE TABLE table_name_17 (
laps VARCHAR,
car_no VARCHAR
)
|
SELECT laps FROM table_name_17 WHERE car_no LIKE "%23%"
|
What's the result for the game held on December 27, 2004 with a week greater than 2?
|
CREATE TABLE table_name_4 (
result VARCHAR,
week VARCHAR,
date VARCHAR
)
|
SELECT result FROM table_name_4 WHERE week > '2' AND date LIKE '%december 27, 2004%'
|
When in round of 16 it was did not advance what was it in round of 32?
|
CREATE TABLE table_18602462_21 (
round_of_32 VARCHAR,
round_of_16 VARCHAR
)
|
SELECT round_of_32 FROM table_18602462_21 WHERE round_of_16 LIKE "%did not advance%"
|
What construction completed on 08/10/2007?
|
CREATE TABLE table_name_46 (
listed VARCHAR,
construction_completed VARCHAR
)
|
SELECT listed FROM table_name_46 WHERE construction_completed LIKE "%08/10/2007%"
|
What is the highest number of points for a position less than 3 and less than 1 loss?
|
CREATE TABLE table_name_19 (
points INTEGER,
position VARCHAR,
lost VARCHAR
)
|
SELECT MAX(points) FROM table_name_19 WHERE position LIKE '%3%' AND lost LIKE '%1%'
|
What is 2010-11, when 2006/07 is UR?
|
CREATE TABLE table_76587 (
"2006/ 07" text,
"2008/ 09" text,
"2010/ 11" text,
"2011/ 12" text,
"2012/ 13" text
)
|
SELECT "2010/ 11" FROM table_76587 WHERE "2006/ 07" LIKE '%ur%'
|
How many parties were for candidates newt gingrich (r) 59.1% dock h. davis (d) 40.9%?
|
CREATE TABLE table_1341640_11 (
party VARCHAR,
candidates VARCHAR
)
|
SELECT COUNT(party) FROM table_1341640_11 WHERE candidates LIKE "%newt gingrich (r) 59.1% dock h. davis (d) 40.9%"
|
Which departments have M.Phil(Maths)?
|
CREATE TABLE table_17384764_1 (
department VARCHAR,
qualification VARCHAR
)
|
SELECT department FROM table_17384764_1 WHERE qualification LIKE "%m.phil(maths)%"
|
What is the lowest attendance for week 11?
|
CREATE TABLE table_44621 (
"Week" real,
"Date" text,
"Opponent" text,
"Result" text,
"Attendance" real
)
|
SELECT MIN("Attendance") FROM table_44621 WHERE "Week" = 11
|
HOW MANY ROUNDS HAD A PICK OF 7?
|
CREATE TABLE table_8756 (
"Round" real,
"Pick" text,
"Player" text,
"Position" text,
"School/Club Team" text
)
|
SELECT COUNT("Round") FROM table_8756 WHERE "Pick" LIKE '%7%'
|
Result of w 24 21, and a Week smaller than 6 had what sum of attendance?
|
CREATE TABLE table_name_9 (
attendance INTEGER,
result VARCHAR,
week VARCHAR
)
|
SELECT SUM(attendance) FROM table_name_9 WHERE result LIKE "%w 24–21%" AND week < 6
|
Tell me the total number of prom for height less than 615
|
CREATE TABLE table_name_59 (
prom__m_ VARCHAR,
height__m_ INTEGER
)
|
SELECT COUNT(prom__m_) FROM table_name_59 WHERE height__m_ < 615
|
What is the location for the 23-17 record?
|
CREATE TABLE table_47979 (
"Game" real,
"Date" text,
"Opponent" text,
"Score" text,
"Location" text,
"Record" text
)
|
SELECT "Location" FROM table_47979 WHERE "Record" LIKE '%23-17%'
|
What is the average December, when Game is '36'?
|
CREATE TABLE table_45688 (
"Game" real,
"December" real,
"Opponent" text,
"Score" text,
"Record" text
)
|
SELECT AVG("December") FROM table_45688 WHERE "Game" LIKE '%36%'
|
In what round was a defensive tackle drafted with an overall pick smaller than 149?
|
CREATE TABLE table_4599 (
"Round" real,
"Overall" real,
"Player" text,
"Position" text,
"College" text
)
|
SELECT COUNT("Round") FROM table_4599 WHERE "Position" LIKE '%defensive tackle%' AND "Overall" < 149
|
Who did the team lose to on September 8?
|
CREATE TABLE table_14745 (
"Date" text,
"Opponent" text,
"Score" text,
"Loss" text,
"Record" text
)
|
SELECT "Loss" FROM table_14745 WHERE "Date" LIKE '%september 8%'
|
How many innings are there when the average is 32.3?
|
CREATE TABLE table_26041144_10 (
innings INTEGER,
average VARCHAR
)
|
SELECT MIN(innings) FROM table_26041144_10 WHERE average LIKE '%32.3%'
|
For the week of August 6, who is the finalist?
|
CREATE TABLE table_name_26 (
finalist VARCHAR,
week VARCHAR
)
|
SELECT finalist FROM table_name_26 WHERE week LIKE "%august 6%"
|
What was the 1st leg that had a 4-2 aggregate?
|
CREATE TABLE table_name_33 (
aggregate VARCHAR
)
|
SELECT 1 AS st_leg FROM table_name_33 WHERE aggregate LIKE "%4-2%"
|
Which opponent was present on March 28?
|
CREATE TABLE table_38850 (
"Game" real,
"March" real,
"Opponent" text,
"Score" text,
"Record" text,
"Points" real
)
|
SELECT "Opponent" FROM table_38850 WHERE "March" = 28
|
Which muzzle devices are on the Colt 603?
|
CREATE TABLE table_19901_1 (
muzzle_device VARCHAR,
colt_model_no VARCHAR
)
|
SELECT muzzle_device FROM table_19901_1 WHERE colt_model_no LIKE "%603%"
|
Name the school/club team for jawann oldham
|
CREATE TABLE table_15621965_14 (
school_club_team VARCHAR,
player VARCHAR
)
|
SELECT school_club_team FROM table_15621965_14 WHERE player LIKE "%jawann oldham%"
|
Name the award for nominated result and year after 2011
|
CREATE TABLE table_name_38 (
award VARCHAR,
result VARCHAR,
year VARCHAR
)
|
SELECT award FROM table_name_38 WHERE result LIKE "%nominated%" AND year > "2011"
|
Where is the City of Douala?
|
CREATE TABLE table_33251 (
"City" text,
"Country" text,
"IATA" text,
"ICAO" text,
"Airport" text
)
|
SELECT "Country" FROM table_33251 WHERE "City" LIKE '%douala%'
|
Who did the argonauts play against during the game that had 19,423 fans in attendance?
|
CREATE TABLE table_name_45 (
opponent VARCHAR,
attendance VARCHAR
)
|
SELECT opponent FROM table_name_45 WHERE attendance LIKE "%19,423%"
|
Which stadium has FC Seoul?
|
CREATE TABLE table_name_65 (
stadium VARCHAR,
club VARCHAR
)
|
SELECT stadium FROM table_name_65 WHERE club LIKE "%fc seoul%"
|
How many of those who stayed in the southeast had 19,600 emigrated or forcibly removed?
|
CREATE TABLE table_name_58 (
number_stayed_in_southeast VARCHAR,
total_number_emigrated_or_forcibly_removed VARCHAR
)
|
SELECT number_stayed_in_southeast FROM table_name_58 WHERE total_number_emigrated_or_forcibly_removed LIKE "%19,600%"
|
What score has a year later than 1974, with hawthorn as the champion?
|
CREATE TABLE table_12646 (
"Year" real,
"Champion" text,
"Runner-Up" text,
"Score" text,
"Venue" text
)
|
SELECT "Score" FROM table_12646 WHERE "Year" > 1974 AND "Champion" LIKE '%hawthorn%'
|
Which line after 1959 had the highest amount of points?
|
CREATE TABLE table_70837 (
"Year" real,
"Entrant" text,
"Chassis" text,
"Engine" text,
"Points" real
)
|
SELECT MAX("Points") FROM table_70837 WHERE "Year" > 1959
|
What was the 2nd leg for team #1 River Plate?
|
CREATE TABLE table_24426072_1 (
team__number1 VARCHAR
)
|
SELECT 2 AS nd_leg FROM table_24426072_1 WHERE team__number1 LIKE "%river plate%"
|
What years have 9 (3) as the finals?
|
CREATE TABLE table_64569 (
"Name" text,
"Years" text,
"A-League" text,
"Finals" text,
"Total" text
)
|
SELECT "Years" FROM table_64569 WHERE "Finals" LIKE '%9 (3)%'
|
Which Opponent had a Surface of hard, and a Partner of maria elena camerin?
|
CREATE TABLE table_name_26 (
opponent VARCHAR,
surface VARCHAR,
partner VARCHAR
)
|
SELECT opponent FROM table_name_26 WHERE surface LIKE "%hard%" AND partner LIKE "%maria elena camerin%"
|
Who was the home team in the match against Luton Town?
|
CREATE TABLE table_77169 (
"Tie no" text,
"Home team" text,
"Score" text,
"Away team" text,
"Date" text
)
|
SELECT "Home team" FROM table_77169 WHERE "Away team" LIKE '%luton town%'
|
What in 2007 has a 2008 of sf, and a 2010 of f?
|
CREATE TABLE table_name_95 (
Id VARCHAR
)
|
SELECT 2007 FROM table_name_95 WHERE 2008 LIKE "%sf%" AND 2010 LIKE "%f%"
|
In the country United Arab Emirates, what is the number of imports?
|
CREATE TABLE table_26160007_1 (
imports VARCHAR,
country VARCHAR
)
|
SELECT imports FROM table_26160007_1 WHERE country LIKE "%united arab emirates%"
|
What years have 10 (0) in the finals?
|
CREATE TABLE table_name_33 (
years VARCHAR,
finals VARCHAR
)
|
SELECT years FROM table_name_33 WHERE finals LIKE "%10 (0)%"
|
Which Artist has an Issue Price of $1,541.95?
|
CREATE TABLE table_name_20 (
artist VARCHAR,
issue_price VARCHAR
)
|
SELECT artist FROM table_name_20 WHERE issue_price LIKE "%$1,541.95%"
|
What is the name if the appearance is 2 and the position is FW?
|
CREATE TABLE table_24807406_1 (
name VARCHAR,
position VARCHAR,
appearances VARCHAR
)
|
SELECT name FROM table_24807406_1 WHERE position LIKE "%fw%" AND appearances = 2
|
Which country has a Lead of sarah wazney?
|
CREATE TABLE table_name_50 (
country VARCHAR,
lead VARCHAR
)
|
SELECT country FROM table_name_50 WHERE lead LIKE "%sarah wazney%"
|
What is the L when the W is 4?
|
CREATE TABLE table_29565120_2 (
l INTEGER,
w VARCHAR
)
|
SELECT MIN(l) FROM table_29565120_2 WHERE w LIKE '%4%'
|
what is the team geraint williams is the replacement?
|
CREATE TABLE table_name_20 (
team VARCHAR,
replaced_by VARCHAR
)
|
SELECT team FROM table_name_20 WHERE replaced_by LIKE "%geraint williams%"
|
What is the name in the UK, with a release date of December 1966?
|
CREATE TABLE table_44703 (
"Name" text,
"Location" text,
"Format" text,
"Record Label" text,
"Release Date" text
)
|
SELECT "Name" FROM table_44703 WHERE "Location" LIKE '%uk%' AND "Release Date" LIKE '%december 1966%'
|
For what tournament is the 1990 0 / 4?
|
CREATE TABLE table_name_83 (
tournament VARCHAR
)
|
SELECT tournament FROM table_name_83 WHERE "1990" LIKE '%0 / 4%'
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.