instruction
stringlengths 5
766
| input
stringlengths 38
5.51k
| response
stringlengths 4
3.91k
|
---|---|---|
What is the pick number of the player whose college is Florida State? | CREATE TABLE table_19482 (
"Pick #" real,
"NFL Team" text,
"Player" text,
"Position" text,
"College" text
) | SELECT "Pick #" FROM table_19482 WHERE "College" = 'Florida State' |
What is the Date of Birth of the CB Player with a Height of m (ft 4in)? | CREATE TABLE table_name_61 (
date_of_birth VARCHAR,
pos VARCHAR,
height VARCHAR
) | SELECT date_of_birth FROM table_name_61 WHERE pos = "cb" AND height = "m (ft 4in)" |
What is the Nationality of the Aracataca Ship? | CREATE TABLE table_49747 (
"Date" text,
"Ship" text,
"Nationality" text,
"Tonnage" real,
"Fate" text
) | SELECT "Nationality" FROM table_49747 WHERE "Ship" = 'aracataca' |
What song was in french? | CREATE TABLE table_name_98 (
song VARCHAR,
language VARCHAR
) | SELECT song FROM table_name_98 WHERE language = "french" |
what character did Masaharu satou play | CREATE TABLE table_38210 (
"Character Name" text,
"Voice Actor (Japanese)" text,
"Voice Actor (English 1997 / Saban)" text,
"Voice Actor (English 1998 / Pioneer)" text,
"Voice Actor (English 2006 / FUNimation)" text
) | SELECT "Character Name" FROM table_38210 WHERE "Voice Actor (Japanese)" = 'masaharu satou' |
Which WYSIWYG Editor has an Image attachment of yes, and a Calendar of plugin? | CREATE TABLE table_name_75 (
wysiwyg_editor VARCHAR,
image_attachment VARCHAR,
calendar VARCHAR
) | SELECT wysiwyg_editor FROM table_name_75 WHERE image_attachment = "yes" AND calendar = "plugin" |
What is the result of the UEFA Cup, against Palermo? | CREATE TABLE table_59892 (
"Date" text,
"Opponent" text,
"Score" text,
"Result" text,
"Competition" text
) | SELECT "Result" FROM table_59892 WHERE "Competition" = 'uefa cup' AND "Opponent" = 'palermo' |
Which player has the fewest assists and played 2 games or fewer? | CREATE TABLE table_41565 (
"Rank" real,
"Name" text,
"Team" text,
"Games" real,
"Assists" real
) | SELECT MIN("Assists") FROM table_41565 WHERE "Games" < '2' |
What was the little league team from Kentucky when the little league team from Michigan was Grosse Pointe Farms-City LL Grosse Pointe Farms? | CREATE TABLE table_73016 (
"Year" real,
"Illinois" text,
"Indiana" text,
"Kentucky" text,
"Michigan" text,
"Ohio" text,
"Wisconsin" text
) | SELECT "Kentucky" FROM table_73016 WHERE "Michigan" = 'Grosse Pointe Farms-City LL Grosse Pointe Farms' |
What was the decision of the game when Montreal was the home team? | CREATE TABLE table_name_90 (
decision VARCHAR,
home VARCHAR
) | SELECT decision FROM table_name_90 WHERE home = "montreal" |
Which Score has a Competition of world cup qualifying, and a Brazil scorers of baltazar, and a Date of march 14, 1954? | CREATE TABLE table_name_65 (
score VARCHAR,
date VARCHAR,
competition VARCHAR,
brazil_scorers VARCHAR
) | SELECT score FROM table_name_65 WHERE competition = "world cup qualifying" AND brazil_scorers = "baltazar" AND date = "march 14, 1954" |
Name the year for avg start being 22.4 | CREATE TABLE table_2308381_1 (
year VARCHAR,
avg_start VARCHAR
) | SELECT year FROM table_2308381_1 WHERE avg_start = "22.4" |
Which mountain range includes Mount Hubbard? | CREATE TABLE table_71991 (
"Rank" real,
"Mountain Peak" text,
"Province" text,
"Mountain Range" text,
"Location" text
) | SELECT "Mountain Range" FROM table_71991 WHERE "Mountain Peak" = 'mount hubbard' |
when the max speed for modified speed (6th gear) where standard speed (6th gear) is 98 | CREATE TABLE table_19704392_1 (
modified_speed__6th_gear_ INTEGER,
standard_speed__6th_gear_ VARCHAR
) | SELECT MAX(modified_speed__6th_gear_) FROM table_19704392_1 WHERE standard_speed__6th_gear_ = "98" |
What is Home, when Score is 103-93? | CREATE TABLE table_name_95 (
home VARCHAR,
score VARCHAR
) | SELECT home FROM table_name_95 WHERE score = "103-93" |
Return a bar chart on how many movie reviews does each director get?, and order in asc by the bars. | CREATE TABLE Movie (
mID int,
title text,
year int,
director text
)
CREATE TABLE Reviewer (
rID int,
name text
)
CREATE TABLE Rating (
rID int,
mID int,
stars int,
ratingDate date
) | SELECT director, COUNT(*) FROM Movie AS T1 JOIN Rating AS T2 ON T1.mID = T2.mID GROUP BY T1.director ORDER BY director |
What is the lowest bronze a team with 9 silvers, a total larger than 13, and more than 13 gold medals has? | CREATE TABLE table_name_58 (
bronze INTEGER,
gold VARCHAR,
silver VARCHAR,
total VARCHAR
) | SELECT MIN(bronze) FROM table_name_58 WHERE silver = 9 AND total > 13 AND gold > 13 |
Who is the opponent of the team with a 1-1-0 record? | CREATE TABLE table_name_53 (
opponent VARCHAR,
record VARCHAR
) | SELECT opponent FROM table_name_53 WHERE record = "1-1-0" |
How many attended on december 2? | CREATE TABLE table_25503 (
"Game" real,
"Date" text,
"Team" text,
"Score" text,
"High points" text,
"High rebounds" text,
"High assists" text,
"Location Attendance" text,
"Record" text
) | SELECT COUNT("Location Attendance") FROM table_25503 WHERE "Date" = 'December 2' |
Born in 1982, this guard has what listed as a height? | CREATE TABLE table_name_44 (
height VARCHAR,
position VARCHAR,
year_born VARCHAR
) | SELECT height FROM table_name_44 WHERE position = "guard" AND year_born = 1982 |
What is the date when the opponent is the New England Patriots? | CREATE TABLE table_22647 (
"Game" real,
"Date" text,
"Opponent" text,
"Result" text,
"Dolphins points" real,
"Opponents" real,
"Record" text,
"Attendance" real
) | SELECT "Date" FROM table_22647 WHERE "Opponent" = 'New England Patriots' |
What is the title of the episode that aired on September 25, 2005? | CREATE TABLE table_name_23 (
title VARCHAR,
podcast_date VARCHAR
) | SELECT title FROM table_name_23 WHERE podcast_date = "september 25, 2005" |
What is the Position of the person with a birthplace of phoenix, new york? | CREATE TABLE table_name_81 (
position VARCHAR,
birthplace VARCHAR
) | SELECT position FROM table_name_81 WHERE birthplace = "phoenix, new york" |
Which Age (as of 1 February 2014) has a Rank smaller than 9, and a Death date of 24 january 2007? | CREATE TABLE table_name_3 (
age__as_of_1_february_2014_ VARCHAR,
rank VARCHAR,
death_date VARCHAR
) | SELECT age__as_of_1_february_2014_ FROM table_name_3 WHERE rank < 9 AND death_date = "24 january 2007" |
How many people attended the game on week 3? | CREATE TABLE table_name_26 (
attendance INTEGER,
week VARCHAR
) | SELECT AVG(attendance) FROM table_name_26 WHERE week = 3 |
What is the rank that shows 276 games? | CREATE TABLE table_name_25 (
rank VARCHAR,
games VARCHAR
) | SELECT rank FROM table_name_25 WHERE games = "276" |
What was the score of united states player wally armstrong when he had a To par of +1 | CREATE TABLE table_44365 (
"Place" text,
"Player" text,
"Country" text,
"Score" text,
"To par" text
) | SELECT "Score" FROM table_44365 WHERE "Country" = 'united states' AND "To par" = '+1' AND "Player" = 'wally armstrong' |
how many goals did ismail isa score this season ? | CREATE TABLE table_204_784 (
id number,
"player" text,
"league" number,
"cup" number,
"europa league" number,
"total" number
) | SELECT "total" FROM table_204_784 WHERE "player" = 'ismail isa' |
On what date was Portland on the road for Game 2? | CREATE TABLE table_5055 (
"Game" text,
"Date" text,
"Home Team" text,
"Result" text,
"Road Team" text
) | SELECT "Date" FROM table_5055 WHERE "Road Team" = 'portland' AND "Game" = 'game 2' |
What is the position of the team player from Aik? | CREATE TABLE table_name_69 (
position VARCHAR,
team_from VARCHAR
) | SELECT position FROM table_name_69 WHERE team_from = "aik" |
who are the writers of the episode whose production code(s) is 225560? | CREATE TABLE table_29793 (
"No. in series" real,
"No. in season" real,
"Title" text,
"Directed by" text,
"Written by" text,
"Original air date" text,
"Production code(s)" real,
"U.S. viewers (millions)" text
) | SELECT "Written by" FROM table_29793 WHERE "Production code(s)" = '225560' |
What is the Opponents on a clay surface with christophe rochus as partner? | CREATE TABLE table_42722 (
"Outcome" text,
"Date" text,
"Surface" text,
"Partner" text,
"Opponents" text,
"Score" text
) | SELECT "Opponents" FROM table_42722 WHERE "Surface" = 'clay' AND "Partner" = 'christophe rochus' |
In the race involving Billy Lee Evans as the seated Representative, was he elected again? | CREATE TABLE table_1341663_11 (
result VARCHAR,
incumbent VARCHAR
) | SELECT result FROM table_1341663_11 WHERE incumbent = "Billy Lee Evans" |
What is the largest vote result if loss/gain is -0.5%? | CREATE TABLE table_73867 (
"Constituency" text,
"Candidate" text,
"Affiliation" text,
"Result - votes" real,
"Result - %" text,
"Loss/gain" text
) | SELECT MAX("Result - votes") FROM table_73867 WHERE "Loss/gain" = '-0.5%' |
What was the outcome of the match on February 17, 2003? | CREATE TABLE table_name_13 (
outcome VARCHAR,
date__final_ VARCHAR
) | SELECT outcome FROM table_name_13 WHERE date__final_ = "february 17, 2003" |
How many incumbents were for district georgia 6? | CREATE TABLE table_72391 (
"District" text,
"Incumbent" text,
"Party" text,
"First elected" real,
"Result" text,
"Candidates" text
) | SELECT COUNT("Incumbent") FROM table_72391 WHERE "District" = 'Georgia 6' |
how many boats costed less than # 20m to build ? | CREATE TABLE table_204_568 (
id number,
"pennant" text,
"name" text,
"hull builder" text,
"ordered" text,
"laid down" text,
"launched" text,
"accepted into service" text,
"commissioned" text,
"est. building cost" text,
"fate" text
) | SELECT COUNT(*) FROM table_204_568 WHERE "est. building cost" < 20 |
What was the higest attendance on November 9, 1958? | CREATE TABLE table_name_4 (
attendance INTEGER,
date VARCHAR
) | SELECT MAX(attendance) FROM table_name_4 WHERE date = "november 9, 1958" |
What is the venue in 2002? | CREATE TABLE table_name_86 (
venue VARCHAR,
year VARCHAR
) | SELECT venue FROM table_name_86 WHERE year = "2002" |
What was the outcome of the game when the partner is Rafael Osuna? | CREATE TABLE table_2215159_2 (
outcome VARCHAR,
partner VARCHAR
) | SELECT outcome FROM table_2215159_2 WHERE partner = "Rafael Osuna" |
What is the latest year in Annecy, France? | CREATE TABLE table_11664 (
"Year" real,
"Tournament" text,
"Venue" text,
"Result" text,
"Extra" text
) | SELECT MAX("Year") FROM table_11664 WHERE "Venue" = 'annecy, france' |
Which opponent's game was less than 76 when the march was 10? | CREATE TABLE table_name_45 (
opponent VARCHAR,
game VARCHAR,
march VARCHAR
) | SELECT opponent FROM table_name_45 WHERE game < 76 AND march = 10 |
What was the winner share (in $) in the year when Se Ri Pak (2) was the champion? | CREATE TABLE table_25549 (
"Year" real,
"Dates" text,
"Champion" text,
"Country" text,
"Score" text,
"Margin of victory" text,
"Tournament location" text,
"Purse ( $ )" real,
"Winners share ($)" real
) | SELECT MIN("Winners share ($)") FROM table_25549 WHERE "Champion" = 'Se Ri Pak (2)' |
What is the largest played number when the difference is - 8 and position is more than 8? | CREATE TABLE table_34593 (
"Position" real,
"Team" text,
"Points" real,
"Played" real,
"Drawn" real,
"Lost" real,
"Against" real,
"Difference" text
) | SELECT MAX("Played") FROM table_34593 WHERE "Difference" = '- 8' AND "Position" > '8' |
what is the last location on this chart ? | CREATE TABLE table_204_164 (
id number,
"branding" text,
"callsign" text,
"frequency" text,
"power (kw)" text,
"location" text
) | SELECT "location" FROM table_204_164 ORDER BY id DESC LIMIT 1 |
Show me about the distribution of ACC_Road and the average of School_ID , and group by attribute ACC_Road in a bar chart, order X-axis in descending order please. | CREATE TABLE basketball_match (
Team_ID int,
School_ID int,
Team_Name text,
ACC_Regular_Season text,
ACC_Percent text,
ACC_Home text,
ACC_Road text,
All_Games text,
All_Games_Percent int,
All_Home text,
All_Road text,
All_Neutral text
)
CREATE TABLE university (
School_ID int,
School text,
Location text,
Founded real,
Affiliation text,
Enrollment real,
Nickname text,
Primary_conference text
) | SELECT ACC_Road, AVG(School_ID) FROM basketball_match GROUP BY ACC_Road ORDER BY ACC_Road DESC |
Which Tournament has a 1984 of 1r? | CREATE TABLE table_34849 (
"Tournament" text,
"1981" text,
"1982" text,
"1983" text,
"1984" text,
"1985" text,
"1986" text,
"1987" text,
"1988" text,
"1989" text
) | SELECT "Tournament" FROM table_34849 WHERE "1984" = '1r' |
What is Part 1, when Part 3 is 'heldu'? | CREATE TABLE table_name_83 (
part_1 VARCHAR,
part_3 VARCHAR
) | SELECT part_1 FROM table_name_83 WHERE part_3 = "heldu" |
What was the score when the away team was Collingwood? | CREATE TABLE table_name_56 (
away_team VARCHAR
) | SELECT away_team AS score FROM table_name_56 WHERE away_team = "collingwood" |
What is the average sales in billions of walmart, which has more than 15.7 billion in profits? | CREATE TABLE table_name_5 (
sales__billion_ INTEGER,
company VARCHAR,
profits__billion_$_ VARCHAR
) | SELECT AVG(sales__billion_) AS $_ FROM table_name_5 WHERE company = "walmart" AND profits__billion_$_ > 15.7 |
What was the attendance for the week 1 game? | CREATE TABLE table_9630 (
"Week" real,
"Date" text,
"Opponent" text,
"Result" text,
"Attendance" real
) | SELECT "Attendance" FROM table_9630 WHERE "Week" = '1' |
What is the Original Title, when Director is 'Ting Shan-Si', and when Film Title Used In Nomination is 'The 800 Heroes'? | CREATE TABLE table_name_73 (
original_title VARCHAR,
director VARCHAR,
film_title_used_in_nomination VARCHAR
) | SELECT original_title FROM table_name_73 WHERE director = "ting shan-si" AND film_title_used_in_nomination = "the 800 heroes" |
What is the average rank of the airport with a 9.3% annual change? | CREATE TABLE table_name_59 (
rank INTEGER,
annual_change VARCHAR
) | SELECT AVG(rank) FROM table_name_59 WHERE annual_change = "9.3%" |
what is 1977 when 1980 is chile? | CREATE TABLE table_76813 (
"1976" text,
"1977" text,
"1978" text,
"1979" text,
"1980" text
) | SELECT "1977" FROM table_76813 WHERE "1980" = 'chile' |
, order by the bars from low to high. | CREATE TABLE buildings (
id int,
name text,
City text,
Height int,
Stories int,
Status text
)
CREATE TABLE Office_locations (
building_id int,
company_id int,
move_in_year int
)
CREATE TABLE Companies (
id int,
name text,
Headquarters text,
Industry text,
Sales_billion real,
Profits_billion real,
Assets_billion real,
Market_Value_billion text
) | SELECT Industry, COUNT(*) FROM Companies GROUP BY Industry ORDER BY Industry |
Who had a finish of t15? | CREATE TABLE table_62596 (
"Player" text,
"Country" text,
"Year(s) won" text,
"Total" real,
"To par" text,
"Finish" text
) | SELECT "Player" FROM table_62596 WHERE "Finish" = 't15' |
The Catalog of ilps 9153 is from what region? | CREATE TABLE table_8574 (
"Region" text,
"Date" text,
"Label" text,
"Format" text,
"Catalog" text
) | SELECT "Region" FROM table_8574 WHERE "Catalog" = 'ilps 9153' |
Which Track number has a Album title of , and a Title of ? | CREATE TABLE table_43805 (
"Release date" text,
"Album title" text,
"Record label" text,
"Disc number" text,
"Track number" text,
"Title" text
) | SELECT "Track number" FROM table_43805 WHERE "Album title" = '文武双全升级版' AND "Title" = '老爸你别装酷' |
Who had the highest assists in game 75? | CREATE TABLE table_29864 (
"Game" real,
"Date" text,
"Team" text,
"Score" text,
"High points" text,
"High rebounds" text,
"High assists" text,
"Location Attendance" text,
"Record" text
) | SELECT "High assists" FROM table_29864 WHERE "Game" = '75' |
Name the period for south korea with peak position of #1 | CREATE TABLE table_name_90 (
period VARCHAR,
country VARCHAR,
peak_position VARCHAR
) | SELECT period FROM table_name_90 WHERE country = "south korea" AND peak_position = "#1" |
Name the country for sky primafila 7 hd | CREATE TABLE table_15887683_6 (
country VARCHAR,
television_service VARCHAR
) | SELECT country FROM table_15887683_6 WHERE television_service = "Sky Primafila 7 HD" |
The theme Auditioner's Choice has what song choice? | CREATE TABLE table_26250199_1 (
song_choice VARCHAR,
theme VARCHAR
) | SELECT song_choice FROM table_26250199_1 WHERE theme = "Auditioner's Choice" |
Where is the school with state authority that has a roll of more than 157 students? | CREATE TABLE table_80078 (
"Name" text,
"Years" text,
"Gender" text,
"Area" text,
"Authority" text,
"Decile" real,
"Roll" real
) | SELECT "Area" FROM table_80078 WHERE "Authority" = 'state' AND "Roll" > '157' |
Show me a bar chart for how many movie reviews does each director get?, and display the total number in ascending order. | CREATE TABLE Movie (
mID int,
title text,
year int,
director text
)
CREATE TABLE Reviewer (
rID int,
name text
)
CREATE TABLE Rating (
rID int,
mID int,
stars int,
ratingDate date
) | SELECT director, COUNT(*) FROM Movie AS T1 JOIN Rating AS T2 ON T1.mID = T2.mID GROUP BY T1.director ORDER BY COUNT(*) |
What are the memories and carriers of phones. Show the proportion. | CREATE TABLE market (
Market_ID int,
District text,
Num_of_employees int,
Num_of_shops real,
Ranking int
)
CREATE TABLE phone_market (
Market_ID int,
Phone_ID text,
Num_of_stock int
)
CREATE TABLE phone (
Name text,
Phone_ID int,
Memory_in_G int,
Carrier text,
Price real
) | SELECT Carrier, SUM(Memory_in_G) FROM phone GROUP BY Carrier |
What were the investment earnings in a year when other local sources were $2,670,060 after 2001? | CREATE TABLE table_51366 (
"Year" real,
"Property Taxes" text,
"Investment Earnings" text,
"Other Local Sources" text,
"State & Federal" text,
"Total Revenue" text
) | SELECT "Investment Earnings" FROM table_51366 WHERE "Year" > '2001' AND "Other Local Sources" = '$2,670,060' |
What is the Home team with a crowd relevant to footscray? | CREATE TABLE table_55855 (
"Home team" text,
"Home team score" text,
"Away team" text,
"Away team score" text,
"Venue" text,
"Crowd" real,
"Date" text
) | SELECT "Crowd" FROM table_55855 WHERE "Home team" = 'footscray' |
What was the result for the best musical revival category? | CREATE TABLE table_37962 (
"Year" real,
"Award" text,
"Category" text,
"Nominee" text,
"Result" text
) | SELECT "Result" FROM table_37962 WHERE "Category" = 'best musical revival' |
Which home has a Decision of kolzig, and a Date of november 5? | CREATE TABLE table_name_9 (
home VARCHAR,
decision VARCHAR,
date VARCHAR
) | SELECT home FROM table_name_9 WHERE decision = "kolzig" AND date = "november 5" |
yes or no for the auckland with a yes for sydney, no for perth, yes for melbourne and yes for the gold coast? | CREATE TABLE table_name_74 (
auckland VARCHAR,
gold_coast VARCHAR,
melbourne VARCHAR,
sydney VARCHAR,
perth VARCHAR
) | SELECT auckland FROM table_name_74 WHERE sydney = "yes" AND perth = "no" AND melbourne = "yes" AND gold_coast = "yes" |
Group and count details for the events using a bar chart, and I want to list by the names in desc. | CREATE TABLE Participants (
Participant_ID INTEGER,
Participant_Type_Code CHAR(15),
Participant_Details VARCHAR(255)
)
CREATE TABLE Events (
Event_ID INTEGER,
Service_ID INTEGER,
Event_Details VARCHAR(255)
)
CREATE TABLE Services (
Service_ID INTEGER,
Service_Type_Code CHAR(15)
)
CREATE TABLE Participants_in_Events (
Event_ID INTEGER,
Participant_ID INTEGER
) | SELECT Event_Details, COUNT(Event_Details) FROM Events GROUP BY Event_Details ORDER BY Event_Details DESC |
Was the result of the supercheap auto bathurst 1000 reported? | CREATE TABLE table_23988 (
"Rd." real,
"Race Title" text,
"Circuit" text,
"Location" text,
"Date" text,
"Format" text,
"Winner" text,
"Team" text,
"Report" text
) | SELECT "Report" FROM table_23988 WHERE "Race Title" = 'Supercheap Auto Bathurst 1000' |
What team picked 80? | CREATE TABLE table_name_94 (
team VARCHAR,
pick VARCHAR
) | SELECT team FROM table_name_94 WHERE pick = 80 |
Which Rank has a Bronze larger than 1, and a Silver larger than 0, and a Nation of norway (host nation), and a Total larger than 16? | CREATE TABLE table_36673 (
"Rank" real,
"Nation" text,
"Gold" real,
"Silver" real,
"Bronze" real,
"Total" real
) | SELECT COUNT("Rank") FROM table_36673 WHERE "Bronze" > '1' AND "Silver" > '0' AND "Nation" = 'norway (host nation)' AND "Total" > '16' |
How many times is the original artist Alicia keys? | CREATE TABLE table_28484 (
"Week #" text,
"Theme" text,
"Song choice" text,
"Original artist" text,
"Order #" text,
"Result" text
) | SELECT COUNT("Result") FROM table_28484 WHERE "Original artist" = 'Alicia Keys' |
How many games were lost by more than 27 but not more 78 with goals less than 300? | CREATE TABLE table_name_61 (
games INTEGER,
goals_against VARCHAR,
lost VARCHAR,
points VARCHAR
) | SELECT AVG(games) FROM table_name_61 WHERE lost > 27 AND points < 78 AND goals_against < 300 |
What is the score of the home team that played at brunswick street oval with a crowd larger than 12,000? | CREATE TABLE table_57262 (
"Home team" text,
"Home team score" text,
"Away team" text,
"Away team score" text,
"Venue" text,
"Crowd" real,
"Date" text
) | SELECT "Home team score" FROM table_57262 WHERE "Crowd" > '12,000' AND "Venue" = 'brunswick street oval' |
For the vessel with a listed In service of 1, what is the origin given? | CREATE TABLE table_name_57 (
origin VARCHAR,
in_service VARCHAR
) | SELECT origin FROM table_name_57 WHERE in_service = 1 |
What player came from Cornell University (NCAA)? | CREATE TABLE table_74346 (
"Pick #" real,
"Player" text,
"Position" text,
"Nationality" text,
"NHL team" text,
"College/junior/club team" text
) | SELECT "Player" FROM table_74346 WHERE "College/junior/club team" = 'Cornell University (NCAA)' |
which judge began active service first , wayne edward alley or james henry alesia ? | CREATE TABLE table_203_572 (
id number,
"judge" text,
"court" text,
"began active\nservice" text,
"ended active\nservice" text,
"ended senior\nstatus" text
) | SELECT "judge" FROM table_203_572 WHERE "judge" IN ('wayne edward alley', 'james henry alesia') ORDER BY "began active\nservice" LIMIT 1 |
WHAT COLLEGE HAS A ROUND LARGER THAN 9, WITH BUTCH WEBSTER? | CREATE TABLE table_77264 (
"Round" real,
"Pick" real,
"Player" text,
"Position" text,
"Nationality" text,
"College" text
) | SELECT "College" FROM table_77264 WHERE "Round" > '9' AND "Player" = 'butch webster' |
What is Mark, when Lane is less than 5, and when React is 0.217? | CREATE TABLE table_name_88 (
mark VARCHAR,
lane VARCHAR,
react VARCHAR
) | SELECT mark FROM table_name_88 WHERE lane < 5 AND react = 0.217 |
What was the final score of the game with gerald wallace (14) as the High Rebound? | CREATE TABLE table_21197 (
"Game" real,
"Date" text,
"Team" text,
"Score" text,
"High points" text,
"High rebounds" text,
"High assists" text,
"Location Attendance" text,
"Record" text
) | SELECT "Record" FROM table_21197 WHERE "High rebounds" = 'Gerald Wallace (14)' |
What is the date of Game 50? | CREATE TABLE table_11960407_5 (
date VARCHAR,
game VARCHAR
) | SELECT date FROM table_11960407_5 WHERE game = 50 |
Show the name of the shop that have the largest quantity of devices in stock. | CREATE TABLE stock (
Shop_ID VARCHAR,
quantity INTEGER
)
CREATE TABLE shop (
Shop_Name VARCHAR,
Shop_ID VARCHAR
) | SELECT T2.Shop_Name FROM stock AS T1 JOIN shop AS T2 ON T1.Shop_ID = T2.Shop_ID GROUP BY T1.Shop_ID ORDER BY SUM(T1.quantity) DESC LIMIT 1 |
For each company, return the company name and the name of the building its office is located in. | CREATE TABLE companies (
id number,
name text,
headquarters text,
industry text,
sales_billion number,
profits_billion number,
assets_billion number,
market_value_billion text
)
CREATE TABLE office_locations (
building_id number,
company_id number,
move_in_year number
)
CREATE TABLE buildings (
id number,
name text,
city text,
height number,
stories number,
status text
) | SELECT T3.name, T2.name FROM office_locations AS T1 JOIN buildings AS T2 ON T1.building_id = T2.id JOIN companies AS T3 ON T1.company_id = T3.id |
What league does Delaware Military Academy belong to | CREATE TABLE table_1274 (
"School" text,
"Nickname" text,
"Colors" text,
"League" text,
"Class" text,
"Division" text
) | SELECT "League" FROM table_1274 WHERE "School" = 'Delaware Military Academy' |
I want to know the HP model with a #HDD of 1 of sides of ds | CREATE TABLE table_name_68 (
hp_model VARCHAR,
_number_hdd VARCHAR,
sides VARCHAR
) | SELECT hp_model FROM table_name_68 WHERE _number_hdd = 1 AND sides = "ds" |
what is the event when gold is darren kenny great britain (gbr)? | CREATE TABLE table_79469 (
"Event" text,
"Class" text,
"Gold" text,
"Silver" text,
"Bronze" text
) | SELECT "Event" FROM table_79469 WHERE "Gold" = 'darren kenny great britain (gbr)' |
How many total Silver has a Bronze larger than 19 and a Total smaller than 125? | CREATE TABLE table_55759 (
"Sport" text,
"Gold" real,
"Silver" real,
"Bronze" real,
"Total" real
) | SELECT SUM("Silver") FROM table_55759 WHERE "Bronze" > '19' AND "Total" < '125' |
what amount played tried for 60? | CREATE TABLE table_17813 (
"Club" text,
"Played" text,
"Won" text,
"Drawn" text,
"Lost" text,
"Points for" text,
"Points against" text,
"Tries for" text,
"Tries against" text,
"Try bonus" text,
"Losing bonus" text,
"Points" text
) | SELECT COUNT("Played") FROM table_17813 WHERE "Tries for" = '60' |
On what date was the Canarian Workers Socialist Union registered? | CREATE TABLE table_62167 (
"Party" text,
"Name in English" text,
"City" text,
"Province" text,
"Date of registration" text
) | SELECT "Date of registration" FROM table_62167 WHERE "Name in English" = 'canarian workers socialist union' |
What is the Outcome of the Match played after 2003 with a Score of 6 0, 6 3? | CREATE TABLE table_name_88 (
outcome VARCHAR,
year VARCHAR,
score VARCHAR
) | SELECT outcome FROM table_name_88 WHERE year > 2003 AND score = "6–0, 6–3" |
What is the lowest heat number for a swimmer with a time of 2:34.94? | CREATE TABLE table_name_5 (
heat INTEGER,
time VARCHAR
) | SELECT MIN(heat) FROM table_name_5 WHERE time = "2:34.94" |
What was the attendance at the game with a record of 4-5? | CREATE TABLE table_name_92 (
attendance VARCHAR,
record VARCHAR
) | SELECT attendance FROM table_name_92 WHERE record = "4-5" |
Which Date has a Visitor of boston? | CREATE TABLE table_38228 (
"Date" text,
"Visitor" text,
"Score" text,
"Home" text,
"Attendance" real,
"Record" text,
"Points" real
) | SELECT "Date" FROM table_38228 WHERE "Visitor" = 'boston' |
Name the first elected for alabama 3 | CREATE TABLE table_25030512_4 (
first_elected VARCHAR,
district VARCHAR
) | SELECT COUNT(first_elected) FROM table_25030512_4 WHERE district = "Alabama 3" |
Who the GM winning team when the EP winning team was #37 Porsche? | CREATE TABLE table_31012 (
"Rnd" text,
"Circuit" text,
"AP Winning Team" text,
"BP Winning Team" text,
"CM Winning Team" text,
"CP Winning Team" text,
"DM Winning Team" text,
"DP Winning Team" text,
"EM Winning Team" text,
"EP Winning Team" text,
"FM Winning Team" text,
"FP Winning Team" text,
"GM Winning Team" text,
"GP Winning Team" text,
"HM Winning Team" text,
"HP Winning Team" text,
"Results" text
) | SELECT "GM Winning Team" FROM table_31012 WHERE "EP Winning Team" = '#37 Porsche' |
which team did this team face against next after beating minnesota on january 29 of this season ? | CREATE TABLE table_204_795 (
id number,
"date" text,
"opponent" text,
"score" text,
"result" text,
"location" text,
"attendance" number
) | SELECT "opponent" FROM table_204_795 WHERE "date" > (SELECT "date" FROM table_204_795 WHERE "date" = 'january 29, 1949') ORDER BY "date" LIMIT 1 |
patients greater than 18 years of age who present to the emergency department with the diagnosis of severe sepsis / septic shock. | CREATE TABLE table_train_21 (
"id" int,
"pregnancy_or_lactation" bool,
"severe_sepsis" bool,
"systolic_blood_pressure_sbp" int,
"active_infection" bool,
"limited_care" bool,
"septic_shock" bool,
"coagulopathy" bool,
"age" float,
"lactate" int,
"NOUSE" float
) | SELECT * FROM table_train_21 WHERE age > 18 AND (severe_sepsis = 1 OR septic_shock = 1) |
Subsets and Splits