question
stringlengths 19
162
| table_info
stringlengths 39
951
| sql_query
stringlengths 24
181
|
---|---|---|
What was the retired time on someone who had 43 laps on a grip of 18?
|
CREATE TABLE table_78269 (
"Driver" text,
"Constructor" text,
"Laps" real,
"Time/Retired" text,
"Grid" real
)
|
SELECT "Time/Retired" FROM table_78269 WHERE "Laps" = 43 AND "Grid" = 18
|
What type of cartridge is used by a Weatherby?
|
CREATE TABLE table_20467 (
"Cartridge" text,
"Bullet weight" text,
"Muzzle velocity" text,
"Muzzle energy" text,
"Source" text
)
|
SELECT "Cartridge" FROM table_20467 WHERE "Source" LIKE '%weatherby%'
|
What is the date when the away team is essendon?
|
CREATE TABLE table_name_93 (
date VARCHAR,
away_team VARCHAR
)
|
SELECT date FROM table_name_93 WHERE away_team LIKE "%essendon%"
|
What were the result(s) of the election featuring grace napolitano as the incumbent?
|
CREATE TABLE table_1805191_6 (
results VARCHAR,
incumbent VARCHAR
)
|
SELECT results FROM table_1805191_6 WHERE incumbent LIKE "%grace napolitano%"
|
who was elected earlier , amedee or cortez ?
|
CREATE TABLE table_204_293 (
id number,
"district" number,
"name" text,
"party" text,
"district office" text,
"first elected" number
)
|
SELECT "name" FROM table_204_293 WHERE "name" LIKE '%jody amedee%' OR "name" LIKE '%page cortez%' ORDER BY "first elected" LIMIT 1
|
What was the number of high assists for game 1?
|
CREATE TABLE table_name_94 (
high_assists VARCHAR,
game VARCHAR
)
|
SELECT high_assists FROM table_name_94 WHERE game LIKE '%1%'
|
how many silver medals did satheesha rai win according to the table ?
|
CREATE TABLE table_204_103 (
id number,
"medal" text,
"name" text,
"sport" text,
"event" text
)
|
SELECT COUNT("medal") FROM table_204_103 WHERE "name" LIKE '%satheesha rai%'
|
When is the appointment date for outgoing manager Petrik Sander?
|
CREATE TABLE table_name_60 (
date_of_appointment VARCHAR,
outgoing_manager VARCHAR
)
|
SELECT date_of_appointment FROM table_name_60 WHERE outgoing_manager LIKE "%petrik sander%"
|
What is the Original Title of the movie directed by Aigars Grauba?
|
CREATE TABLE table_name_36 (
original_title VARCHAR,
director VARCHAR
)
|
SELECT original_title FROM table_name_36 WHERE director LIKE "%aigars grauba%"
|
What is the amount of apperances of the person who had 36 goals?
|
CREATE TABLE table_name_5 (
appearances VARCHAR,
goals VARCHAR
)
|
SELECT appearances FROM table_name_5 WHERE goals LIKE '%36%'
|
What year was the role nan taylor, alias of nan ellis, aka mrs. andrews and directed by William keighley?
|
CREATE TABLE table_name_56 (
year INTEGER,
role VARCHAR,
director VARCHAR
)
|
SELECT SUM(year) FROM table_name_56 WHERE role LIKE "%nan taylor, alias of nan ellis, aka mrs. andrews%" AND director LIKE "%william keighley%"
|
When was the result l 14 24?
|
CREATE TABLE table_name_71 (
date VARCHAR,
result VARCHAR
)
|
SELECT date FROM table_name_71 WHERE result LIKE '%l 14–24%'
|
Tell me the lowest Grid for engine and driver of emerson fittipaldi with more laps than 70
|
CREATE TABLE table_52069 (
"Driver" text,
"Constructor" text,
"Laps" real,
"Time/Retired" text,
"Grid" real
)
|
SELECT MIN("Grid") FROM table_52069 WHERE "Time/Retired" LIKE '%engine%' AND "Driver" LIKE '%emerson fittipaldi%' AND "Laps" > '70'
|
What is the pick # of cfl team bc lions (7)
|
CREATE TABLE table_26996293_7 (
pick__number VARCHAR,
cfl_team VARCHAR
)
|
SELECT pick__number FROM table_26996293_7 WHERE cfl_team LIKE "%bc lions (7)%"
|
Which town has the most villages with the hanzi and a population larger than 24,802?
|
CREATE TABLE table_name_92 (
villages INTEGER,
hanzi VARCHAR,
population VARCHAR
)
|
SELECT MAX(villages) FROM table_name_92 WHERE hanzi LIKE "%南流乡%" AND population > 24 LIMIT 1 OFFSET 802
|
What is Away Team, when Home Team is 'Boston United'?
|
CREATE TABLE table_name_30 (
away_team VARCHAR,
home_team VARCHAR
)
|
SELECT away_team FROM table_name_30 WHERE home_team LIKE "%boston united%"
|
Name who wrote the production code 322
|
CREATE TABLE table_27462209_1 (
written_by VARCHAR,
prod_code VARCHAR
)
|
SELECT written_by FROM table_27462209_1 WHERE prod_code = '322'
|
What is the 1st leg when team number 1 is CSU SIBIU?
|
CREATE TABLE table_name_53 (
team__number1 VARCHAR
)
|
SELECT 1 AS st_leg FROM table_name_53 WHERE team__number1 LIKE '%csu sibiu%'
|
What is the livery on the locomotive with a serial number 83-1011?
|
CREATE TABLE table_55813 (
"Locomotive" text,
"Serial No" text,
"Entered service" text,
"Gauge" text,
"Livery" text
)
|
SELECT "Livery" FROM table_55813 WHERE "Serial No" LIKE '%83-1011%'
|
What was the last game where the record was 6-3?
|
CREATE TABLE table_13762472_3 (
game INTEGER,
record VARCHAR
)
|
SELECT MAX(game) FROM table_13762472_3 WHERE record LIKE "%6-3%"
|
Which event in the 2008 Beijing Games had a bronze medal?
|
CREATE TABLE table_33800 (
"Medal" text,
"Name" text,
"Games" text,
"Sport" text,
"Event" text
)
|
SELECT "Event" FROM table_33800 WHERE "Games" LIKE '%2008 beijing%' AND "Medal" LIKE '%bronze%'
|
What is the least amount of draws with an against of 1261?
|
CREATE TABLE table_41307 (
"Ballarat FL" text,
"Wins" real,
"Byes" real,
"Losses" real,
"Draws" real,
"Against" real
)
|
SELECT MIN("Draws") FROM table_41307 WHERE "Against" LIKE '%1261%'
|
Which ISHAA school joined in 2012 and has a mascot of the panthers?
|
CREATE TABLE table_name_64 (
ihsaa_class VARCHAR,
year_joined VARCHAR,
mascot VARCHAR
)
|
SELECT ihsaa_class FROM table_name_64 WHERE year_joined < '2012' AND mascot LIKE '%panthers%'
|
what is the location on november 23?
|
CREATE TABLE table_name_58 (
location VARCHAR,
date VARCHAR
)
|
SELECT location FROM table_name_58 WHERE date LIKE "%november 23%"
|
Which Score has an Opponent of @ seattle?
|
CREATE TABLE table_46169 (
"Date" text,
"Opponent" text,
"Score" text,
"Result" text,
"Record" text
)
|
SELECT "Score" FROM table_46169 WHERE "Opponent" LIKE '%@ seattle%'
|
what is the manner of departure when the date of vacancy is 15 september 2008?
|
CREATE TABLE table_13547 (
"Team" text,
"Outgoing manager" text,
"Manner of departure" text,
"Date of vacancy" text,
"Replaced by" text,
"Date of appointment" text,
"Position in table" text
)
|
SELECT "Manner of departure" FROM table_13547 WHERE "Date of vacancy" LIKE '%15 september 2008%'
|
When jim is eliminated what is the finish?
|
CREATE TABLE table_1893276_2 (
finish VARCHAR,
eliminated VARCHAR
)
|
SELECT finish FROM table_1893276_2 WHERE eliminated LIKE "%jim%"
|
Who wrote the episode with 7.52 million US viewers?
|
CREATE TABLE table_28688313_1 (
written_by VARCHAR,
us_viewers__in_millions_ VARCHAR
)
|
SELECT written_by FROM table_28688313_1 WHERE us_viewers__in_millions_ LIKE "%7.52%"
|
Name the third place for anders j rryd
|
CREATE TABLE table_10645 (
"Tournament" text,
"Winner" text,
"Runner-up" text,
"Score" text,
"Third Place" text
)
|
SELECT "Third Place" FROM table_10645 WHERE "Runner-up" LIKE '%anders järryd%'
|
What is the sum of gold medals for a rank of 14?
|
CREATE TABLE table_name_95 (
gold INTEGER,
rank VARCHAR
)
|
SELECT SUM(gold) FROM table_name_95 WHERE rank LIKE "%14%"
|
What is the number of sequences for the name Alifoldz?
|
CREATE TABLE table_name_72 (
number_of_sequences_number_of_sequences VARCHAR,
name VARCHAR
)
|
SELECT number_of_sequences_number_of_sequences AS ":_" FROM table_name_72 WHERE name LIKE "%alifoldz%"
|
Who is the opponent when the score was 6 4, 6 2 and the surface was clay?
|
CREATE TABLE table_name_94 (
opponent VARCHAR,
score VARCHAR,
surface VARCHAR
)
|
SELECT opponent FROM table_name_94 WHERE score LIKE "%6–4, 6–2%" AND surface LIKE "%clay%"
|
Can you tell me the Giant Slalom that has the Combined of 1, and the Country of united states, and the Victories larger than 11?
|
CREATE TABLE table_61339 (
"Women" text,
"Country" text,
"Season" text,
"Victories" real,
"Downhill" text,
"Super G" text,
"Giant Slalom" text,
"Slalom" text,
"Combined" text
)
|
SELECT "Giant Slalom" FROM table_61339 WHERE "Combined" LIKE '%1%' AND "Country" LIKE '%united states%' AND "Victories" > 11
|
What was the score of the game that home team birmingham city played?
|
CREATE TABLE table_60693 (
"Tie no" text,
"Home team" text,
"Score" text,
"Away team" text,
"Date" text
)
|
SELECT "Score" FROM table_60693 WHERE "Home team" LIKE '%birmingham city%'
|
What date has a game smaller than 4, and a score of 116-114?
|
CREATE TABLE table_name_73 (
date VARCHAR,
game VARCHAR,
score VARCHAR
)
|
SELECT date FROM table_name_73 WHERE game LIKE '%4%' AND score LIKE '%116-114%'
|
What is the total when the set 1 is 21 25?
|
CREATE TABLE table_name_95 (
total VARCHAR,
set_1 VARCHAR
)
|
SELECT total FROM table_name_95 WHERE set_1 LIKE "%21–25%"
|
Where Award is best actress and Work is first kiss, what is the average Year?
|
CREATE TABLE table_11359 (
"Year" real,
"Organization" text,
"Award" text,
"Work" text,
"Result" text
)
|
SELECT AVG("Year") FROM table_11359 WHERE "Award" LIKE '%best actress%' AND "Work" LIKE '%first kiss%'
|
What was the internet explorer % when firefox was 24.98%?
|
CREATE TABLE table_name_47 (
internet_explorer VARCHAR,
firefox VARCHAR
)
|
SELECT internet_explorer FROM table_name_47 WHERE firefox LIKE "%24.98%%"
|
Name the parish for 1908
|
CREATE TABLE table_178399_1 (
parish__prestegjeld_ VARCHAR,
year_built VARCHAR
)
|
SELECT parish__prestegjeld_ FROM table_178399_1 WHERE year_built LIKE '%1908%'
|
Which Round has a Method of ko, and a Date of 1958?
|
CREATE TABLE table_name_46 (
round INTEGER,
method VARCHAR,
date VARCHAR
)
|
SELECT MIN(round) FROM table_name_46 WHERE method LIKE "%ko%" AND date LIKE "%1958%"
|
what was the number of goals he scored in 2005 ?
|
CREATE TABLE table_204_235 (
id number,
"season" text,
"team" text,
"country" text,
"competition" text,
"matches" number,
"goals" number
)
|
SELECT "goals" FROM table_204_235 WHERE "season" LIKE '%2005%'
|
What was the date of the game with a goal of 7?
|
CREATE TABLE table_name_27 (
date VARCHAR,
goal VARCHAR
)
|
SELECT date FROM table_name_27 WHERE CAST(goal AS INTEGER) = 7
|
Who is the player when the highest score is 84?
|
CREATE TABLE table_28846752_4 (
player VARCHAR,
highest_score VARCHAR
)
|
SELECT player FROM table_28846752_4 WHERE highest_score LIKE "%84%"
|
What country has a time of 3:19.167?
|
CREATE TABLE table_64605 (
"Rank" real,
"Athletes" text,
"Country" text,
"Time" text,
"Notes" text
)
|
SELECT "Country" FROM table_64605 WHERE "Time" LIKE '%3:19.167%'
|
What is the name of the deputy in 1992 93?
|
CREATE TABLE table_name_41 (
deputy VARCHAR,
year VARCHAR
)
|
SELECT deputy FROM table_name_41 WHERE year LIKE "%1992–93%"
|
What week was September 24, 2000 on?
|
CREATE TABLE table_11134 (
"Week" real,
"Date" text,
"Opponent" text,
"Result" text,
"Attendance" text
)
|
SELECT SUM("Week") FROM table_11134 WHERE "Date" LIKE '%september 24, 2000%'
|
On what surface was the match played with a score of 4 6, 6 3, 6 1?
|
CREATE TABLE table_40384 (
"Date" text,
"Tournament" text,
"Surface" text,
"Opponent in the final" text,
"Score" text
)
|
SELECT "Surface" FROM table_40384 WHERE "Score" LIKE '%4–6, 6–3, 6–1%'
|
what country had the most top 10 finishers in the men 's 15 kilometre classical ?
|
CREATE TABLE table_204_81 (
id number,
"rank" number,
"bib" number,
"name" text,
"country" text,
"time" text,
"deficit" text
)
|
SELECT "country" FROM table_204_81 WHERE id <= 10 GROUP BY "country" ORDER BY COUNT(*) DESC LIMIT 1
|
What NFL team picked a player from Jackson State?
|
CREATE TABLE table_2508633_9 (
nfl_team VARCHAR,
college VARCHAR
)
|
SELECT nfl_team FROM table_2508633_9 WHERE college LIKE "%jackson state%"
|
What is Opponent, when Round is World Group?
|
CREATE TABLE table_62013 (
"Outcome" text,
"Edition" real,
"Round" text,
"Opponent Team" text,
"Surface" text,
"Opponent" text,
"Score" text
)
|
SELECT "Opponent" FROM table_62013 WHERE "Round" LIKE '%world group%'
|
What is the Time of the Rowers from Belgium?
|
CREATE TABLE table_66668 (
"Rank" real,
"Rowers" text,
"Country" text,
"Time" text,
"Notes" text
)
|
SELECT "Time" FROM table_66668 WHERE "Country" LIKE '%belgium%'
|
How many losing points does Llandudno RFC have?
|
CREATE TABLE table_14058433_3 (
losing_bonus VARCHAR,
club VARCHAR
)
|
SELECT losing_bonus FROM table_14058433_3 WHERE club LIKE '%llandudno rfc%'
|
Name the country that has ken doherty
|
CREATE TABLE table_26454128_7 (
country VARCHAR,
athlete VARCHAR
)
|
SELECT country FROM table_26454128_7 WHERE athlete LIKE "%ken doherty%"
|
What is the name of the member with a costume Role of monster?
|
CREATE TABLE table_53028 (
"Name" text,
"Real Name" text,
"Birthdate" text,
"Costume Role" text,
"Defining characteristics" text
)
|
SELECT "Name" FROM table_53028 WHERE "Costume Role" LIKE '%monster%'
|
How many times is avg/g 2?
|
CREATE TABLE table_66517 (
"Name" text,
"GP-GS" text,
"Receptions" real,
"Long" real,
"Avg/G" real
)
|
SELECT COUNT("Receptions") FROM table_66517 WHERE "Avg/G" = 2
|
Who was the opponent in week 6?
|
CREATE TABLE table_name_89 (
opponent VARCHAR,
week VARCHAR
)
|
SELECT opponent FROM table_name_89 WHERE week LIKE '%6%'
|
what was the total number of medals won by madagascar ?
|
CREATE TABLE table_203_61 (
id number,
"rank" number,
"nation" text,
"gold" number,
"silver" number,
"bronze" number,
"total" number
)
|
SELECT "total" FROM table_203_61 WHERE "nation" LIKE '%madagascar%'
|
What is Played, when Goal Difference is '+51'?
|
CREATE TABLE table_name_91 (
played VARCHAR,
goal_difference VARCHAR
)
|
SELECT played FROM table_name_91 WHERE goal_difference LIKE '%+51%'
|
When's the release date of the model with part number adh485biaa5do?
|
CREATE TABLE table_13869651_3 (
release_date VARCHAR,
part_number_s_ VARCHAR
)
|
SELECT release_date FROM table_13869651_3 WHERE part_number_s_ LIKE '%adh485biaa5do%'
|
Which country had a t4 place and scored 66-73=139?
|
CREATE TABLE table_60492 (
"Place" text,
"Player" text,
"Country" text,
"Score" text,
"To par" text
)
|
SELECT "Country" FROM table_60492 WHERE "Place" LIKE '%t4%' AND "Score" LIKE '%66-73=139%'
|
Which Bronze has a Rank of 4, and a Gold smaller than 0?
|
CREATE TABLE table_65778 (
"Rank" real,
"Gold" real,
"Silver" real,
"Bronze" real,
"Total" real
)
|
SELECT MAX("Bronze") FROM table_65778 WHERE "Rank" = 4 AND "Gold" < 0
|
What is the capital of the country with a population density per km of 15.6/km (/sqmi)?
|
CREATE TABLE table_26769_1 (
capital VARCHAR,
population_density_per_km² VARCHAR
)
|
SELECT capital FROM table_26769_1 WHERE population_density_per_km² LIKE "%15.6/km² (/sqmi)%"
|
Which artist had a result of 4?
|
CREATE TABLE table_26485957_1 (
artist VARCHAR,
result VARCHAR
)
|
SELECT artist FROM table_26485957_1 WHERE result LIKE "%4%"
|
Which CFL team did the player from British Columbia get drafted to
|
CREATE TABLE table_16441561_5 (
cfl_team VARCHAR,
college VARCHAR
)
|
SELECT cfl_team FROM table_16441561_5 WHERE college LIKE "%british columbia%"
|
Which rank is 40 for s Wicket with a player of Daniel Marsh?
|
CREATE TABLE table_name_63 (
rank VARCHAR,
s_wicket VARCHAR,
player VARCHAR
)
|
SELECT rank FROM table_name_63 WHERE s_wicket = "40" AND player LIKE "%daniel marsh%"
|
Which manager was replaced by Thomas Thomasberg?
|
CREATE TABLE table_27782699_3 (
outgoing_manager VARCHAR,
replaced_by VARCHAR
)
|
SELECT outgoing_manager FROM table_27782699_3 WHERE replaced_by LIKE "%thomas thomasberg%"
|
How many tries against were there with points of 150?
|
CREATE TABLE table_17941032_2 (
tries_against VARCHAR,
points_for VARCHAR
)
|
SELECT tries_against FROM table_17941032_2 WHERE points_for LIKE "%150%"
|
Who is the monarch with the heir thado minsaw?
|
CREATE TABLE table_26460435_8 (
monarch VARCHAR,
heir VARCHAR
)
|
SELECT monarch FROM table_26460435_8 WHERE heir LIKE "%thado minsaw%"
|
What class is assigned to frequencies lower than 90.5?
|
CREATE TABLE table_name_49 (
class VARCHAR,
frequency_mhz INTEGER
)
|
SELECT class FROM table_name_49 WHERE frequency_mhz < 90.5
|
What was the margin of victory at the LPGA Championship?
|
CREATE TABLE table_name_65 (
margin_of_victory VARCHAR,
tournament VARCHAR
)
|
SELECT margin_of_victory FROM table_name_65 WHERE tournament LIKE "%lpga championship%"
|
WHAT IS THE HIGHEST PLACE AND BEST SCORE BIGGER THAN 10?
|
CREATE TABLE table_8634 (
"Place" real,
"Star" text,
"Average" real,
"Best score" real,
"Worst score" real
)
|
SELECT MAX("Place") FROM table_8634 WHERE "Best score" > 10
|
How many bronze medals did the country with 7 medals and over 5 silver medals receive?
|
CREATE TABLE table_name_88 (
bronze INTEGER,
total VARCHAR,
silver VARCHAR
)
|
SELECT SUM(bronze) FROM table_name_88 WHERE total LIKE '%7%' AND silver > '5'
|
Name the total number of previous br number for number 21
|
CREATE TABLE table_23921 (
"Number" text,
"Previous BR No." real,
"Taken into deptal stock" real,
"Withdrawn" real,
"Disposal" text
)
|
SELECT COUNT("Previous BR No.") FROM table_23921 WHERE "Number" LIKE '%21%'
|
what's the airport with total passengers 2009 being 157933
|
CREATE TABLE table_13836704_4 (
airport VARCHAR,
total_passengers_2009 VARCHAR
)
|
SELECT airport FROM table_13836704_4 WHERE total_passengers_2009 = '157933'
|
What is the latest year that Cicely Tyson is the Golden Globe Award actor?
|
CREATE TABLE table_41053 (
"Year" real,
"Actor" text,
"Award" text,
"Motion Picture" text,
"Result" text
)
|
SELECT MAX("Year") FROM table_41053 WHERE "Actor" LIKE '%cicely tyson%'
|
how many players tied for fourth place ?
|
CREATE TABLE table_203_134 (
id number,
"place" text,
"player" text,
"country" text,
"score" text,
"to par" number
)
|
SELECT COUNT("player") FROM table_203_134 WHERE "place" LIKE '%4%'
|
What position did Gene Stahl play
|
CREATE TABLE table_20816 (
"Pick #" real,
"CFL Team" text,
"Player" text,
"Position" text,
"College" text
)
|
SELECT "Position" FROM table_20816 WHERE "Player" LIKE '%gene stahl%'
|
Which player had a draft before 1975 and before round 6?
|
CREATE TABLE table_name_79 (
player VARCHAR,
draft VARCHAR,
round VARCHAR
)
|
SELECT player FROM table_name_79 WHERE CAST(draft AS INTEGER) < 1975 AND CAST(round AS INTEGER) < 6
|
What province does the Ruhuna Royals team come from?
|
CREATE TABLE table_19905183_1 (
province VARCHAR,
team VARCHAR
)
|
SELECT province FROM table_19905183_1 WHERE team LIKE "%ruhuna royals%"
|
what is the rank when the player is henry shefflin and the matches is higher than 4?
|
CREATE TABLE table_name_9 (
rank INTEGER,
player VARCHAR,
matches VARCHAR
)
|
SELECT SUM(rank) FROM table_name_9 WHERE player LIKE "%henry shefflin%" AND CAST(matches AS INTEGER) > 4
|
what is the result for October 14, 1956?
|
CREATE TABLE table_19766 (
"Week" real,
"Date" text,
"Opponent" text,
"Result" text,
"Record" text,
"Game Site" text,
"Attendance" real
)
|
SELECT "Result" FROM table_19766 WHERE "Date" LIKE '%october 14, 1956%'
|
What's the English title listed that has an Original title of The Crying Game?
|
CREATE TABLE table_80058 (
"Year" text,
"English title" text,
"Original title" text,
"Country" text,
"Director" text
)
|
SELECT "English title" FROM table_80058 WHERE "Original title" LIKE '%the crying game%'
|
how many times did they place at least 12th ?
|
CREATE TABLE table_204_532 (
id number,
"season" text,
"tier" number,
"division" text,
"place" text
)
|
SELECT COUNT(*) FROM table_204_532 WHERE "place" <= '12'
|
What is the total rank where the total is less than 5, and bronze is less than 0?
|
CREATE TABLE table_name_18 (
rank VARCHAR,
total VARCHAR,
bronze VARCHAR
)
|
SELECT COUNT(rank) FROM table_name_18 WHERE CAST(total AS INTEGER) < 5 AND CAST(bronze AS INTEGER) < 0
|
At what age did Roy Emerson complete the Grand Slam?
|
CREATE TABLE table_197638_6 (
age INTEGER,
player VARCHAR
)
|
SELECT MAX(age) FROM table_197638_6 WHERE player LIKE "%roy emerson%"
|
What school location had an enrollment of 12400?
|
CREATE TABLE table_1457 (
"Institution" text,
"Location" text,
"Nickname" text,
"Enrollment" real,
"Established" real
)
|
SELECT "Location" FROM table_1457 WHERE "Enrollment" = 12400
|
What game did Jets have an attendance of 78,722?
|
CREATE TABLE table_33035 (
"Week" real,
"Date" text,
"Opponent" text,
"Result" text,
"Game site" text,
"Attendance" text
)
|
SELECT "Game site" FROM table_33035 WHERE "Attendance" LIKE '%78,722%'
|
which region was the last to release ?
|
CREATE TABLE table_204_128 (
id number,
"region" text,
"date" text,
"label" text,
"format" text,
"catalog" text
)
|
SELECT "region" FROM table_204_128 ORDER BY "date" DESC LIMIT 1
|
What title episode did Paris Barclay direct?
|
CREATE TABLE table_20726262_2 (
title VARCHAR,
directedby VARCHAR
)
|
SELECT title FROM table_20726262_2 WHERE directedby LIKE "%paris barclay%"
|
what is the rank of adam gilchrist
|
CREATE TABLE table_23382 (
"Rank" real,
"Dismissals" real,
"Player" text,
"Caught" real,
"Stumped" real,
"Matches" real,
"Innings" real
)
|
SELECT COUNT("Rank") FROM table_23382 WHERE "Player" LIKE '%adam gilchrist%'
|
what score was on february 21
|
CREATE TABLE table_name_18 (
score VARCHAR,
february VARCHAR
)
|
SELECT score FROM table_name_18 WHERE february LIKE '%21%'
|
Name who directed the production code 1l10
|
CREATE TABLE table_25604014_9 (
directed_by VARCHAR,
production_code VARCHAR
)
|
SELECT directed_by FROM table_25604014_9 WHERE production_code LIKE "%1l10%"
|
Which City has a Date on october 26, 2007
|
CREATE TABLE table_name_70 (
city VARCHAR,
date VARCHAR
)
|
SELECT city FROM table_name_70 WHERE date LIKE "%october 26, 2007%"
|
What's the average round number for East Carolina?
|
CREATE TABLE table_name_2 (
round INTEGER,
school VARCHAR
)
|
SELECT AVG(round) FROM table_name_2 WHERE school LIKE "%east carolina%"
|
How many births per year are there for the period with 998 000 deaths per year?
|
CREATE TABLE table_18950570_2 (
live_births_per_year VARCHAR,
deaths_per_year VARCHAR
)
|
SELECT live_births_per_year FROM table_18950570_2 WHERE deaths_per_year LIKE "%998 000%"
|
Name the District which has a Reserved for ( SC / ST /None) of sc?
|
CREATE TABLE table_name_94 (
district VARCHAR,
reserved_for___sc___st__none_ VARCHAR
)
|
SELECT district FROM table_name_94 WHERE reserved_for___sc___st__none_ LIKE '%sc%'
|
What is the ICT when education is 1.73 and KI is ag 1.99?
|
CREATE TABLE table_23050383_1 (
ict VARCHAR,
education VARCHAR,
ki VARCHAR
)
|
SELECT ict FROM table_23050383_1 WHERE education LIKE "%1.73%" AND ki LIKE "%1.99%"
|
Who was the home team of the game at the time of 15:00?
|
CREATE TABLE table_75901 (
"Date" text,
"Time" text,
"Home" text,
"Away" text,
"Score" text,
"Ground" text
)
|
SELECT "Home" FROM table_75901 WHERE "Time" LIKE '%15:00%'
|
What Car Model has the Engine of Ford 6.0 V8?
|
CREATE TABLE table_38379 (
"Team" text,
"Manufacturer" text,
"Car model" text,
"Engine" text,
"Driver" text
)
|
SELECT "Car model" FROM table_38379 WHERE "Engine" LIKE '%ford 6.0 v8%'
|
Which site/stadium was the score 1-2?
|
CREATE TABLE table_name_78 (
site_stadium VARCHAR,
score VARCHAR
)
|
SELECT site_stadium FROM table_name_78 WHERE score LIKE "%1-2%"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.