question
stringlengths 19
162
| table_info
stringlengths 39
951
| sql_query
stringlengths 24
181
|
---|---|---|
What is the average building year for Superb?
|
CREATE TABLE table_78347 (
"Name" text,
"Builder" text,
"Wheel arrangement" text,
"Works Number" real,
"Built" real
)
|
SELECT AVG("Built") FROM table_78347 WHERE "Name" LIKE '%superb%'
|
What structure is in Chile?
|
CREATE TABLE table_45835 (
"Continent" text,
"Structure" text,
"Height" text,
"Year" real,
"Country" text
)
|
SELECT "Structure" FROM table_45835 WHERE "Country" LIKE '%chile%'
|
What is the least total votes?
|
CREATE TABLE table_19763199_3 (
total_votes INTEGER
)
|
SELECT MIN(total_votes) FROM table_19763199_3
|
Which college has a pick number of 155?
|
CREATE TABLE table_42437 (
"Round" real,
"Pick #" real,
"Player" text,
"Position" text,
"College" text
)
|
SELECT "College" FROM table_42437 WHERE "Pick #" = 155
|
How many materials are there for output power of ~0.1 pw per cycle (calculated)?
|
CREATE TABLE table_30057479_1 (
material VARCHAR,
output_power VARCHAR
)
|
SELECT COUNT(material) FROM table_30057479_1 WHERE output_power LIKE '%~0.1 pw per cycle (calculated)%'
|
Name the number in series for in the ward family and the wren family
|
CREATE TABLE table_19897294_8 (
no_in_series INTEGER,
family_families VARCHAR
)
|
SELECT MAX(no_in_series) FROM table_19897294_8 WHERE family_families LIKE "%the ward family and the wren family%"
|
Which Save is on June 15?
|
CREATE TABLE table_38925 (
"Date" text,
"Opponent" text,
"Score" text,
"Loss" text,
"Save" text
)
|
SELECT "Save" FROM table_38925 WHERE "Date" LIKE '%june 15%'
|
Which home team plays at victoria park?
|
CREATE TABLE table_name_40 (
home_team VARCHAR,
venue VARCHAR
)
|
SELECT home_team FROM table_name_40 WHERE venue LIKE "%victoria park%"
|
When william b. campbell (u) is the successor what is the district?
|
CREATE TABLE table_2147588_4 (
district VARCHAR,
successor VARCHAR
)
|
SELECT district FROM table_2147588_4 WHERE successor LIKE "%william b. campbell (u)%"
|
What is the most total goals for a player having 0 FA Cup goals and 41 League appearances?
|
CREATE TABLE table_name_98 (
total_goals INTEGER,
fa_cup_goals VARCHAR,
league_apps VARCHAR
)
|
SELECT MAX(total_goals) FROM table_name_98 WHERE fa_cup_goals LIKE '0' AND league_apps LIKE '%41%'
|
In week 9 who were the opponent?
|
CREATE TABLE table_14608759_1 (
opponent VARCHAR,
week VARCHAR
)
|
SELECT opponent FROM table_14608759_1 WHERE week LIKE '%9%'
|
What years have 9 (0) as the finals and 133 (1) as the A-League?
|
CREATE TABLE table_name_12 (
years VARCHAR,
finals VARCHAR,
a_league VARCHAR
)
|
SELECT years FROM table_name_12 WHERE finals LIKE "%9 (0)%" AND a_league LIKE "%133 (1)%"
|
Which Average has a Tally of 2-12, and a Total larger than 18?
|
CREATE TABLE table_name_23 (
average INTEGER,
tally VARCHAR,
total VARCHAR
)
|
SELECT AVG(average) FROM table_name_23 WHERE tally LIKE "%2-12%" AND total > "18"
|
Where is the University that is also called Hawks?
|
CREATE TABLE table_19210115_1 (
location VARCHAR,
nickname VARCHAR
)
|
SELECT location FROM table_19210115_1 WHERE nickname LIKE "%hawks%"
|
The order # is what for the week # Top 10?
|
CREATE TABLE table_26250253_1 (
order__number VARCHAR,
week__number VARCHAR
)
|
SELECT order__number FROM table_26250253_1 WHERE week__number LIKE '%top 10%'
|
Who was the winner in the match that had John Higgins as runner-up?
|
CREATE TABLE table_name_63 (
winner VARCHAR,
runner_up VARCHAR
)
|
SELECT winner FROM table_name_63 WHERE runner_up LIKE "%john higgins%"
|
what are all the location where date is 5 april
|
CREATE TABLE table_1137704_2 (
location VARCHAR,
date VARCHAR
)
|
SELECT location FROM table_1137704_2 WHERE date LIKE "%5 april%"
|
What place is the golfer in who is from Spain?
|
CREATE TABLE table_60341 (
"Place" text,
"Player" text,
"Country" text,
"Score" text,
"To par" text
)
|
SELECT "Place" FROM table_60341 WHERE "Country" LIKE '%spain%'
|
which model is a diesel , the tour or the aspect ?
|
CREATE TABLE table_203_42 (
id number,
"model" text,
"class" text,
"length" text,
"fuel" text,
"starting price" text
)
|
SELECT "model" FROM table_203_42 WHERE "model" LIKE '%tour%' OR "model" LIKE '%aspect%' AND "fuel" LIKE '%diesel%'
|
What is the team of april 25?
|
CREATE TABLE table_11960196_3 (
team VARCHAR,
date VARCHAR
)
|
SELECT team FROM table_11960196_3 WHERE date LIKE "%april 25%"
|
What couple had less than 2.0 points from the public?
|
CREATE TABLE table_23241 (
"Rank" real,
"Couple" text,
"Judges" real,
"Public" real,
"Total" real,
"Vote percentage" text,
"Result" text
)
|
SELECT "Couple" FROM table_23241 WHERE "Public" < 2.0
|
who is the the president with date of inauguration being 4june1979
|
CREATE TABLE table_12134383_1 (
president VARCHAR,
date_of_inauguration VARCHAR
)
|
SELECT president FROM table_12134383_1 WHERE date_of_inauguration LIKE "%4june1979%"
|
Who is week 3 if week 1 is Amanda Batt?
|
CREATE TABLE table_61295 (
"Week 1" text,
"Week 2" text,
"Week 3" text,
"Week 4" text,
"Week 5" text
)
|
SELECT "Week 3" FROM table_61295 WHERE "Week 1" LIKE '%amanda batt%'
|
What is the average crowd when footscray is at home?
|
CREATE TABLE table_name_99 (
crowd INTEGER,
home_team VARCHAR
)
|
SELECT AVG(crowd) FROM table_name_99 WHERE home_team LIKE "%footscray%"
|
What was the speed of 200feet Giant Drop attraction?
|
CREATE TABLE table_71834 (
"Park" text,
"Tower height" text,
"Drop height*" text,
"Speed" text,
"Model" text,
"Opened" text,
"Height requirement" text
)
|
SELECT "Speed" FROM table_71834 WHERE "Model" LIKE '%giant drop%' AND "Drop height*" LIKE '%200feet%'
|
What is the final score at Melbourne Cricket Ground?
|
CREATE TABLE table_name_79 (
result VARCHAR,
venue VARCHAR
)
|
SELECT result FROM table_name_79 WHERE venue LIKE "%melbourne cricket ground%"
|
Which Opponent has a Result of l 14 10?
|
CREATE TABLE table_76946 (
"Week" real,
"Date" text,
"Opponent" text,
"Result" text,
"Attendance" text
)
|
SELECT "Opponent" FROM table_76946 WHERE "Result" LIKE '%l 14–10%'
|
Name the team with Laps of 333
|
CREATE TABLE table_name_92 (
team VARCHAR,
laps VARCHAR
)
|
SELECT team FROM table_name_92 WHERE laps LIKE '%333%'
|
What is the away team with a 2 tie no.?
|
CREATE TABLE table_47298 (
"Tie no" text,
"Home team" text,
"Score" text,
"Away team" text,
"Date" text
)
|
SELECT "Away team" FROM table_47298 WHERE "Tie no" LIKE '%2%'
|
How many rushing yards are listed when the passing yards are 244?
|
CREATE TABLE table_28697228_4 (
rushing_yards VARCHAR,
passing_yards VARCHAR
)
|
SELECT rushing_yards FROM table_28697228_4 WHERE passing_yards LIKE '%244%'
|
What is the total number of patient portayers for the episode directed by Craig Zisk and written by Brad Falchuk?
|
CREATE TABLE table_73968 (
"No." real,
"#" real,
"Title" text,
"Directed by" text,
"Written by" text,
"Patient Portrayer" text,
"Original air date" text,
"Production code" text
)
|
SELECT COUNT("Patient Portrayer") FROM table_73968 WHERE "Directed by" LIKE '%craig zisk%' AND "Written by" LIKE '%brad falchuk%'
|
what is the circuit when the date is 4 june?
|
CREATE TABLE table_name_94 (
circuit VARCHAR,
date VARCHAR
)
|
SELECT circuit FROM table_name_94 WHERE date LIKE "%4 june%"
|
What's the lowest attendance recorded for week 15?
|
CREATE TABLE table_44323 (
"Week" real,
"Date" text,
"Opponent" text,
"Result" text,
"Attendance" real
)
|
SELECT MIN("Attendance") FROM table_44323 WHERE "Week" = 15
|
How many games are played for all students?
|
CREATE TABLE Sportsinfo (
gamesplayed INTEGER
)
|
SELECT SUM(gamesplayed) FROM Sportsinfo
|
Where was the tournament where the score was 1 6, 6 3, 3 6?
|
CREATE TABLE table_name_66 (
tournament VARCHAR,
score VARCHAR
)
|
SELECT tournament FROM table_name_66 WHERE score LIKE "%1–6, 6–3, 3–6%"
|
For which venue did Leicester City lose?
|
CREATE TABLE table_name_29 (
venue VARCHAR,
loser VARCHAR
)
|
SELECT venue FROM table_name_29 WHERE loser LIKE "%leicester city%"
|
What was the earliest round that Purdue had a pick larger than 10?
|
CREATE TABLE table_name_16 (
round INTEGER,
college VARCHAR,
pick VARCHAR
)
|
SELECT MIN(round) FROM table_name_16 WHERE college LIKE '%purdue%' AND pick > 10
|
On what date did the New York Giants host a game?
|
CREATE TABLE table_name_42 (
date VARCHAR,
host_team VARCHAR
)
|
SELECT date FROM table_name_42 WHERE host_team LIKE "%new york giants%"
|
Name the opponent for 2-27-10
|
CREATE TABLE table_22875369_3 (
opponent VARCHAR,
date VARCHAR
)
|
SELECT opponent FROM table_22875369_3 WHERE date LIKE "%2-27-10%"
|
How did the season with 7-2 conference record ed?
|
CREATE TABLE table_20319085_2 (
result VARCHAR,
conference_record VARCHAR
)
|
SELECT result FROM table_20319085_2 WHERE conference_record LIKE "%7-2%"
|
body mass index of at least 25 kg / m2.
|
CREATE TABLE table_train_198 (
"id" int,
"hemoglobin_a1c_hba1c" float,
"fasting_plasma_glucose" int,
"diabetes" bool,
"body_mass_index_bmi" float,
"type_1_patients" bool,
"NOUSE" float
)
|
SELECT * FROM table_train_198 WHERE body_mass_index_bmi >= 25
|
Can you tell me the High points that has the High rebounds of rafer alston (9)?
|
CREATE TABLE table_40164 (
"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_40164 WHERE "High rebounds" LIKE '%rafer alston (9)%'
|
What are the lowest points when the language is Portuguese?
|
CREATE TABLE table_65787 (
"Draw" real,
"Language" text,
"Song" text,
"English translation" text,
"Place" real,
"Points" real
)
|
SELECT MIN("Points") FROM table_65787 WHERE "Language" LIKE '%portuguese%'
|
In which city is the San Lorenzo Centenario venue located?
|
CREATE TABLE table_60562 (
"Year" real,
"Champion" text,
"Runner-up" text,
"Score" text,
"City" text,
"Venue" text
)
|
SELECT "City" FROM table_60562 WHERE "Venue" LIKE '%san lorenzo centenario%'
|
Which player attended Hoover High School?
|
CREATE TABLE table_55874 (
"Player" text,
"Position" text,
"School" text,
"Hometown" text,
"College" text
)
|
SELECT "Player" FROM table_55874 WHERE "School" LIKE '%hoover high school%'
|
Who was the vacator when Shadrach Bond was the successor?
|
CREATE TABLE table_225095_4 (
vacator VARCHAR,
successor VARCHAR
)
|
SELECT vacator FROM table_225095_4 WHERE successor LIKE "%shadrach bond%"
|
What is the Total with a Joint Music Award of 1, RTHK of 4, and USCA of 4?
|
CREATE TABLE table_55841 (
"Year" real,
"MRHMA" text,
"USCA" text,
"RTHK" text,
"Joint Music Award" text,
"Total" real
)
|
SELECT "Total" FROM table_55841 WHERE "Joint Music Award" LIKE '%1%' AND "RTHK" LIKE '%4%' AND "USCA" LIKE '%4%'
|
What was the to winning team when the tu winning team was joe amato carson baird?
|
CREATE TABLE table_13657883_2 (
to_winning_team VARCHAR,
tu_winning_team VARCHAR
)
|
SELECT to_winning_team FROM table_13657883_2 WHERE tu_winning_team LIKE "%joe amato carson baird%"
|
In which class would the vessel Hyundai Tenacity be placed?
|
CREATE TABLE table_33412 (
"Vessel Name" text,
"Type" text,
"Built" real,
"Class" text,
"Flag" text
)
|
SELECT "Class" FROM table_33412 WHERE "Vessel Name" LIKE '%hyundai tenacity%'
|
Which Nationality has a College/Junior/Club Team (League) of swift current broncos (wchl)?
|
CREATE TABLE table_name_84 (
nationality VARCHAR,
college_junior_club_team__league_ VARCHAR
)
|
SELECT nationality FROM table_name_84 WHERE college_junior_club_team__league_ LIKE "%swift current broncos (wchl)%"
|
which was the only stadium where attendance was greater than 70,000 ?
|
CREATE TABLE table_203_672 (
id number,
"week" number,
"date" text,
"opponent" text,
"result" text,
"venue" text,
"attendance" number
)
|
SELECT "venue" FROM table_203_672 WHERE "attendance" > 70000
|
What engine was used when Aguri Suzuki drove the FA13B FA14 Chassis?
|
CREATE TABLE table_51604 (
"Entrant" text,
"Constructor" text,
"Chassis" text,
"Engine" text,
"Tyre" text,
"Driver" text,
"Rounds" text
)
|
SELECT "Engine" FROM table_51604 WHERE "Chassis" LIKE '%fa13b fa14%' AND "Driver" LIKE '%aguri suzuki%'
|
What is the original air date that had the wykeham wonderers as team 1?
|
CREATE TABLE table_18733480_1 (
air_date VARCHAR,
team_1 VARCHAR
)
|
SELECT air_date FROM table_18733480_1 WHERE team_1 LIKE "%wykeham wonderers%"
|
What is the record for the game on January 19?
|
CREATE TABLE table_77610 (
"Date" text,
"Visitor" text,
"Score" text,
"Home" text,
"Record" text
)
|
SELECT "Record" FROM table_77610 WHERE "Date" LIKE '%january 19%'
|
Which municipality has the code 2401?
|
CREATE TABLE table_name_84 (
municipality VARCHAR,
code VARCHAR
)
|
SELECT municipality FROM table_name_84 WHERE code = '2401'
|
Who is the incumbent candidate in the election of percy priest (d) 90.8% robert m. donihi (r) 9.2%?
|
CREATE TABLE table_1342013_41 (
incumbent VARCHAR,
candidates VARCHAR
)
|
SELECT incumbent FROM table_1342013_41 WHERE candidates LIKE "%percy priest (d) 90.8% robert m. donihi (r) 9.2%"
|
Who won the men's double when Chou Tien-Chen won the men's single?
|
CREATE TABLE table_12275654_1 (
mens_doubles VARCHAR,
mens_singles VARCHAR
)
|
SELECT mens_doubles FROM table_12275654_1 WHERE mens_singles LIKE "%chou tien-chen%"
|
What was the production number of the episode filmed in aug/sept 1968?
|
CREATE TABLE table_1971734_1 (
prod__number VARCHAR,
filmed VARCHAR
)
|
SELECT prod__number FROM table_1971734_1 WHERE filmed LIKE '%aug/sept 1968%'
|
Who won bronze in Seoul?
|
CREATE TABLE table_name_20 (
bronze VARCHAR,
location VARCHAR
)
|
SELECT bronze FROM table_name_20 WHERE location LIKE "%seoul%"
|
What is the date opened if thedistrict ID is 11901?
|
CREATE TABLE table_22665117_1 (
date_opened VARCHAR,
dist_id VARCHAR
)
|
SELECT date_opened FROM table_22665117_1 WHERE dist_id LIKE '%11901%'
|
What is the minimum attendance on games of record 0-2-1
|
CREATE TABLE table_17360840_4 (
attendance INTEGER,
record VARCHAR
)
|
SELECT MIN(attendance) FROM table_17360840_4 WHERE record LIKE "%0-2-1%"
|
What award did Charlie Productions Ltd receive?
|
CREATE TABLE table_name_14 (
award VARCHAR,
recipient VARCHAR
)
|
SELECT award FROM table_name_14 WHERE recipient LIKE "%charlie productions ltd%"
|
What was the Total the Year Yugoslavia had 0 Silver medals and 31 Competitors?
|
CREATE TABLE table_5982 (
"Year" text,
"Sports" text,
"Competitors" text,
"Gold" text,
"Silver" text,
"Bronze" text,
"Total" text
)
|
SELECT "Total" FROM table_5982 WHERE "Silver" LIKE '%0%' AND "Competitors" LIKE '%31%'
|
what was the first year in which jifar placed lower than 2nd ?
|
CREATE TABLE table_203_189 (
id number,
"year" number,
"competition" text,
"venue" text,
"position" text,
"notes" text
)
|
SELECT MIN("year") FROM table_203_189 WHERE "position" > '2'
|
When the ability to compromise is 13, what is background?
|
CREATE TABLE table_1855342_5 (
background INTEGER,
ability_to_compromise VARCHAR
)
|
SELECT MAX(background) FROM table_1855342_5 WHERE ability_to_compromise LIKE '%13%'
|
How many Touchdowns have a rec of 10, and an Opponent of oregon state, and an Average smaller than 19.7?
|
CREATE TABLE table_name_57 (
s_touchdown VARCHAR,
average VARCHAR,
rec VARCHAR,
opponent VARCHAR
)
|
SELECT COUNT(s_touchdown) FROM table_name_57 WHERE rec = '10' AND opponent LIKE '%oregon state%' AND average < '19.7'
|
How many points did player 7 score in the challenge cup?
|
CREATE TABLE table_22683369_8 (
challenge_cup VARCHAR,
p VARCHAR
)
|
SELECT COUNT(challenge_cup) FROM table_22683369_8 WHERE p LIKE '%7%'
|
Who is the presenter of the episode broadcast in the UK on 1996-09-25?
|
CREATE TABLE table_name_45 (
presenter VARCHAR,
uk_broadcast_date VARCHAR
)
|
SELECT presenter FROM table_name_45 WHERE uk_broadcast_date LIKE "%1996-09-25%"
|
Which player made 4 touchdowns while playing left halfback?
|
CREATE TABLE table_14342210_6 (
player VARCHAR,
touchdowns VARCHAR,
position VARCHAR
)
|
SELECT player FROM table_14342210_6 WHERE touchdowns LIKE '%4%' AND position LIKE '%left halfback%'
|
What player plays the position of small forward?
|
CREATE TABLE table_45116 (
"Player" text,
"Nationality" text,
"Position" text,
"Years for Grizzlies" text,
"School/Club Team" text
)
|
SELECT "Player" FROM table_45116 WHERE "Position" LIKE '%small forward%'
|
How many ranks have $1,084,439,099 as the worldwide gross?
|
CREATE TABLE table_name_91 (
rank INTEGER,
worldwide_gross VARCHAR
)
|
SELECT SUM(rank) FROM table_name_91 WHERE worldwide_gross LIKE '%$1,084,439,099%'
|
What was the value in 2011 for United States?
|
CREATE TABLE table_name_95 (
country VARCHAR
)
|
SELECT 2011 FROM table_name_95 WHERE country LIKE '%united states%'
|
What engine had a JBW chassis in 1960?
|
CREATE TABLE table_name_49 (
engine VARCHAR,
chassis VARCHAR,
year VARCHAR
)
|
SELECT engine FROM table_name_49 WHERE chassis LIKE "%jbw%" AND year = 1960
|
what is the pennant when the builder is yarrow, scotstoun?
|
CREATE TABLE table_name_23 (
pennant VARCHAR,
builder VARCHAR
)
|
SELECT pennant FROM table_name_23 WHERE builder LIKE '%yarrow, scotstoun%'
|
What is the sum of To Par, when Year(s) Won is '1978 , 1985'?
|
CREATE TABLE table_name_35 (
to_par INTEGER,
year_s__won VARCHAR
)
|
SELECT SUM(to_par) FROM table_name_35 WHERE year_s__won LIKE "%1978 , 1985%"
|
Who is the opponent at the IFA: Clash of the Champions?
|
CREATE TABLE table_name_71 (
opponent VARCHAR,
event VARCHAR
)
|
SELECT opponent FROM table_name_71 WHERE event LIKE "%ifa: clash of the champions%"
|
What album was the song It's going so badly on?
|
CREATE TABLE table_23667534_1 (
album_s_ VARCHAR,
song_s__title VARCHAR
)
|
SELECT album_s_ FROM table_23667534_1 WHERE song_s__title LIKE "%it's going so badly%"
|
Which team is John Williams a rider for?
|
CREATE TABLE table_name_7 (
team VARCHAR,
rider VARCHAR
)
|
SELECT team FROM table_name_7 WHERE rider LIKE "%john williams%"
|
Where is Fred Couples from?
|
CREATE TABLE table_name_71 (
country VARCHAR,
player VARCHAR
)
|
SELECT country FROM table_name_71 WHERE player LIKE "%fred couples%"
|
What was the home team at the match when the away team scored 6.14 (50)?
|
CREATE TABLE table_33577 (
"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_33577 WHERE "Away team score" LIKE '%6.14 (50)%'
|
What is the symbol for Windpower in China?
|
CREATE TABLE table_11347578_1 (
wind_power__wp_ VARCHAR,
country VARCHAR
)
|
SELECT wind_power__wp_ FROM table_11347578_1 WHERE country LIKE '%china%'
|
Name the points classification for stage of 18b
|
CREATE TABLE table_75568 (
"Stage" text,
"Winner" text,
"General classification" text,
"Points classification" text,
"Mountains classification" text,
"Team classification" text
)
|
SELECT "Points classification" FROM table_75568 WHERE "Stage" LIKE '%18b%'
|
Please list the total number of title with the production code 211.
|
CREATE TABLE table_12451376_2 (
title VARCHAR,
production_code VARCHAR
)
|
SELECT COUNT(title) FROM table_12451376_2 WHERE production_code LIKE '%211%'
|
who was the first person this person played on an indoor surface ?
|
CREATE TABLE table_204_520 (
id number,
"outcome" text,
"no." number,
"date" number,
"championship" text,
"surface" text,
"opponent" text,
"score" text
)
|
SELECT "opponent" FROM table_204_520 WHERE "surface" LIKE '%indoor%' ORDER BY "date" LIMIT 1
|
What are the total number of Wickets that ranger higher than 5?
|
CREATE TABLE table_13231 (
"Rank" real,
"Player" text,
"Wickets" real,
"Average" real,
"Career" text
)
|
SELECT COUNT("Wickets") FROM table_13231 WHERE "Rank" > 5
|
Which stage has a Winner of lucien van impe?
|
CREATE TABLE table_name_19 (
stage VARCHAR,
winner VARCHAR
)
|
SELECT stage FROM table_name_19 WHERE winner LIKE "%lucien van impe%"
|
Who was the home when the opponent was slovan liberec?
|
CREATE TABLE table_name_44 (
home VARCHAR,
opponent VARCHAR
)
|
SELECT home FROM table_name_44 WHERE opponent LIKE "%slovan liberec%"
|
Who had the high assists on october 6?
|
CREATE TABLE table_27756474_2 (
high_assists VARCHAR,
date VARCHAR
)
|
SELECT high_assists FROM table_27756474_2 WHERE date LIKE "%october 6%"
|
Thomas J. Lane is the incumbent of how many parties?
|
CREATE TABLE table_1342013_20 (
party VARCHAR,
incumbent VARCHAR
)
|
SELECT COUNT(party) FROM table_1342013_20 WHERE incumbent LIKE "%thomas j. lane%"
|
Who was on the Socialist Labor ticket that had Arthur Levitt as the Liberal Ticket?
|
CREATE TABLE table_name_60 (
socialist_labor_ticket VARCHAR,
liberal_ticket VARCHAR
)
|
SELECT socialist_labor_ticket FROM table_name_60 WHERE liberal_ticket LIKE "%arthur levitt%"
|
What was the end date when Alex Bodry was the minister?
|
CREATE TABLE table_name_11 (
end_date VARCHAR,
minister VARCHAR
)
|
SELECT end_date FROM table_name_11 WHERE minister LIKE "%alex bodry%"
|
How many other goals did Dunne have in the season where he had 1 league goal?
|
CREATE TABLE table_2980024_1 (
other_goals VARCHAR,
league_goals VARCHAR
)
|
SELECT other_goals FROM table_2980024_1 WHERE league_goals LIKE '%1%'
|
What is the score of the game that had a visiting team of Edmonton?
|
CREATE TABLE table_name_93 (
score VARCHAR,
visitor VARCHAR
)
|
SELECT score FROM table_name_93 WHERE visitor LIKE "%edmonton%"
|
On what date was the game that the Indianapolis Colts lost in 2004?
|
CREATE TABLE table_name_98 (
date VARCHAR,
loser VARCHAR,
year VARCHAR
)
|
SELECT date FROM table_name_98 WHERE loser LIKE "%indianapolis colts%" AND year = '2004'
|
What was the score for the game against Marquette?
|
CREATE TABLE table_14421 (
"Date" text,
"Opponent" text,
"City" text,
"Result" text,
"Score" text
)
|
SELECT "Score" FROM table_14421 WHERE "Opponent" LIKE '%marquette%'
|
What is the release date of the bonus interview with Peter Purves?
|
CREATE TABLE table_1681535_1 (
release_date VARCHAR,
notes VARCHAR
)
|
SELECT release_date FROM table_1681535_1 WHERE notes LIKE "%bonus interview with peter purves%"
|
Name the interview for peru delegate
|
CREATE TABLE table_11674683_2 (
interview VARCHAR,
delegate VARCHAR
)
|
SELECT interview FROM table_11674683_2 WHERE delegate LIKE '%peru%'
|
What position does Kerry Wood play in?
|
CREATE TABLE table_17051 (
"Player" text,
"Position" text,
"School" text,
"Hometown" text,
"MLB Draft" text
)
|
SELECT "Position" FROM table_17051 WHERE "Player" LIKE '%kerry wood%'
|
What was the attendance on May 26?
|
CREATE TABLE table_69324 (
"Date" text,
"Opponent" text,
"Score" text,
"Loss" text,
"Attendance" text,
"Record" text
)
|
SELECT "Attendance" FROM table_69324 WHERE "Date" LIKE '%may 26%'
|
Which Builder has a Date of early 1871?
|
CREATE TABLE table_39909 (
"Number" real,
"Builder" text,
"Type" text,
"Date" text,
"Works number" text
)
|
SELECT "Builder" FROM table_39909 WHERE "Date" LIKE '%early 1871%'
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.