context stringlengths 249 1.51k | question stringlengths 20 171 | answer stringlengths 40 173 | dbms listlengths 0 5 |
|---|---|---|---|
CREATE TABLE IF NOT EXISTS table_2_1379652_1 (
"1st No." text,
Quantity numeric,
Order numeric,
Built text,
"Serial Numbers" text
);
CREATE TABLE IF NOT EXISTS table_1_12027364_1 (
"Mens doubles" text,
"Mixed doubles" text,
"Womens doubles" text,
Year numeric,
"Mens singles" text,
"Womens singles" text
);
CR... | with build 5/69-6/69 what's the order? | SELECT SUM(ORDER) FROM table_2_1379652_1 WHERE "Built" ILIKE '%5/69-6/69%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_2_17218729_2 (
Record text,
Points numeric,
Score text,
Date text,
Attendance numeric,
Visitor text,
Home text
);
CREATE TABLE IF NOT EXISTS table_1_1036189_1 (
"Functional Type" text,
"Bullet Tip Color" text,
"Headstamp ID" text,
"Primer Annulus Color" text,
"Other Features... | What was the highest score for a California home game with over 10,870 in attendance? | SELECT MAX(Points) FROM table_2_17218729_2 WHERE "Attendance" > '10,870' AND "Home" ILIKE '%california%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_11148572_1 (
Season numeric,
"MLS Supporters Shield Winner" text,
"MLS Supporters Shield Runner-Up" text,
"MLS Cup Winner" text,
"MLS Cup Runner-Up" text
);
CREATE TABLE IF NOT EXISTS table_1_12113888_1 (
Number numeric,
Builder text,
"Scrapped/Sold" text,
"Name as rebuilt" t... | How many titles does the episode written by Joe Toplyn have? | SELECT COUNT(Title) FROM table_1_25716397_1 WHERE "Written by" ILIKE '%Joe%Toplyn%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_10842344_1 (
"Production code" text,
"U.S. viewers (millions)" text,
"Written by" text,
"No. in series" numeric,
"No. in season" numeric,
"Original air date" text,
"Directed by" text,
Title text
);
CREATE TABLE IF NOT EXISTS table_2_12883372_1 (
Rank numeric,
Total numeric,
... | What is the average gold that has a total of 2 and more than 1 bronze. | SELECT AVG(Gold) FROM table_2_12883372_1 WHERE "Total" = '2' AND "Bronze" > '1' | [
"MySQL",
"Oracle",
"PostgreSQL",
"SQL Server",
"SQLite"
] |
CREATE TABLE IF NOT EXISTS table_1_1140111_5 (
"Race Name" text,
Constructor text,
Circuit text,
Report text,
"Winning driver" text,
Date text
);
CREATE TABLE IF NOT EXISTS table_2_185191_1 (
Draw numeric,
Place numeric,
Language text,
Points numeric,
"English translation" text,
Artist text
); | How many points does mia martini have? | SELECT COUNT(Points) FROM table_2_185191_1 WHERE "Artist" ILIKE '%mia%martini%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_2_1717159_4 (
Tournament text,
"1982" text,
"1985" text,
"1992" text,
"1983" text,
"1978" text,
"1991" text,
"1988" text,
"1980" text,
"Career SR" text,
"1990" text,
"1984" text,
"1979" text,
"1989" text,
"1986" text,
"1987" text
);
CREATE TABLE IF NOT EXISTS table_1_113... | What is 1986, when 1978 is "A", when 1979 is "A", and when 1980 is "1R"? | SELECT 1986 FROM table_2_1717159_4 WHERE "1978" ILIKE '%a%' AND "1979" ILIKE '%a%' AND "1980" ILIKE '%1r%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_2_17968265_1 (
"1988-89" numeric,
Points numeric,
"1986-87" text,
Team text,
Played numeric,
"1987-88" text,
Average numeric
);
CREATE TABLE IF NOT EXISTS table_1_1137704_2 (
"Winning Constructor" text,
Report text,
Date text,
"Grand Prix" text,
Round numeric,
"Winning Driv... | What is Played, when Points is less than 107, and when 1987-88 is "31"? | SELECT Played FROM table_2_17968265_1 WHERE "Points" < '107' AND "1987-88" ILIKE '%31%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_10718192_2 (
"No. in season" numeric,
"Directed by" text,
"U.S. viewers (millions)" text,
"Original air date" text,
"No. in series" numeric,
"Written by" text,
Title text
);
CREATE TABLE IF NOT EXISTS table_1_12338595_1 (
Preliminaries text,
Average text,
Swimsuit text,
Sta... | Which opponent has an Outcome of winner, and a Date of 5 november 2011? | SELECT Opponent FROM table_2_11870943_4 WHERE "Outcome" ILIKE '%winner%' AND "Date" ILIKE '%5%november%2011%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_12275551_1 (
"Mixed doubles" text,
"Womens doubles" text,
"Mens singles" text,
Year numeric,
"Mens doubles" text,
"Womens singles" text
);
CREATE TABLE IF NOT EXISTS table_1_10240125_1 (
"Total Goals" numeric,
Season text,
Division text,
"FA Cup Goals" numeric,
"FA Cup Apps... | What is the highest value of Total Goals? | SELECT MAX("Total Goals") FROM table_1_10240125_1 | [
"MySQL",
"Oracle",
"PostgreSQL",
"SQL Server",
"SQLite"
] |
CREATE TABLE IF NOT EXISTS table_1_120778_1 (
"Percent For" text,
Jurisdiction text,
"For Prohibition" numeric,
"Percent Against" text,
"Against Prohibition" numeric
);
CREATE TABLE IF NOT EXISTS table_2_18942405_13 (
Mascot text,
"IHSAA Class" text,
"IHSAA Football Class" text,
School text,
Location text,
C... | What is the IHSAA Football class at Culver? | SELECT "IHSAA Football Class" FROM table_2_18942405_13 WHERE "Location" ILIKE '%culver%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_11713303_2 (
"Date of appointment" text,
"Manner of departure" text,
"Date of vacancy" text,
"Outgoing manager" text,
Team text,
"Replaced by" text
);
CREATE TABLE IF NOT EXISTS table_2_1840453_1 (
"Number of households" numeric,
"Median household income" text,
"Median family... | What county has a population more than 603,403 and a mediuan family income of $61,694? | SELECT County FROM table_2_1840453_1 WHERE "Population" > '603,403' AND "Median family income" ILIKE '%$61,694%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_2_13884212_2 (
Guest text,
Attendance numeric,
Home text,
Venue text,
Score text
);
CREATE TABLE IF NOT EXISTS table_1_1174162_1 (
"Density (/km²)" numeric,
"Gazetted as a Division Name" text,
"Median age (in 2006)" text,
"Area (km²)" text,
"Date first settled as a suburb" num... | What venue was the match against the guest team, FK ibar, played at? | SELECT Venue FROM table_2_13884212_2 WHERE "Guest" ILIKE '%fk%ibar%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_2_14342367_11 (
Player text,
"Field goals" numeric,
Touchdowns numeric,
Points numeric,
"Extra points" numeric
);
CREATE TABLE IF NOT EXISTS table_1_1253396_5 (
Club text,
"Goals For Avg." text,
"Overall Record" text,
"Goals Against" numeric,
"Goals For" numeric,
"Goals Again... | How many touchdowns were scored by William Cole? | SELECT Touchdowns FROM table_2_14342367_11 WHERE "Player" ILIKE '%william%cole%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_2597876_1 (
Poles numeric,
Winnings text,
Starts numeric,
Position text,
"Top 5" numeric,
"Avg. Finish" text,
"Avg. Start" text,
Wins numeric,
"Top 10" numeric,
"Team(s)" text,
Year numeric
);
CREATE TABLE IF NOT EXISTS table_1_1241987_1 (
"Regular Season" text,
League te... | What position was Parsons in for 1992? | SELECT POSITION FROM table_1_2597876_1 WHERE "Year" = '1992' | [
"MySQL",
"Oracle",
"PostgreSQL",
"SQL Server",
"SQLite"
] |
CREATE TABLE IF NOT EXISTS table_1_11916083_1 (
"Mintage (BU)[ clarification needed ]" text,
Artist text,
"Mintage (Proof)" text,
"Issue Price (Proof)" text,
Year numeric,
Theme text,
"Issue Price (BU)[ clarification needed ]" text
);
CREATE TABLE IF NOT EXISTS table_1_1139835_9 (
Attendance numeric,
"Runner U... | How many matches were played that resulted in less than 59.1 overs and a 6.78 Economy rate? | SELECT SUM(Matches) FROM table_2_17529767_10 WHERE "Overs" < '59.1' AND "Economy Rate" > '6.78' | [
"MySQL",
"Oracle",
"PostgreSQL",
"SQL Server",
"SQLite"
] |
CREATE TABLE IF NOT EXISTS table_1_10797463_1 (
"Village (German)" text,
"Percent of Slovenes 1991" text,
"Number of people 1991" numeric,
"Percent of Slovenes 1951" text,
"Village (Slovenian)" text
);
CREATE TABLE IF NOT EXISTS table_1_1161065_28 (
"Up/Down" text,
Lowest numeric,
Venue text,
"Last Year" text,... | When Coleridge A. Hart ran under the Prohibition ticket who ran under the Independence League ticket? | SELECT "Independence League ticket" FROM table_2_15563550_6 WHERE "Prohibition ticket" ILIKE '%coleridge%a.%hart%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_2_11545282_8 (
Player text,
"School/Club Team" text,
"Years for Jazz" text,
Nationality text,
Position text
);
CREATE TABLE IF NOT EXISTS table_1_1213511_5 (
"Pick #" numeric,
"College/junior/club team" text,
Position text,
"NHL team" text
); | What years did Eddie Hughes play for the Jazz? | SELECT "Years for Jazz" FROM table_2_11545282_8 WHERE "Player" ILIKE '%eddie%hughes%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_1253396_5 (
"Overall Record" text,
"Goals Against Avg." text,
"Goals For Avg." text,
"Goals For" numeric,
Club text,
"Goals Against" numeric
);
CREATE TABLE IF NOT EXISTS table_1_11545282_5 (
"No." text,
"School/Club Team" text,
Position text,
Nationality text,
Player text,... | What candidate was re-elected in the Louisiana 5 district? | SELECT Candidates FROM table_1_1342149_18 WHERE "Result" ILIKE '%Re-elected%' AND "District" ILIKE '%Louisiana%5%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_2_18330817_9 (
Surface text,
Round text,
Edition text,
Date text,
Opponent text,
Result text
);
CREATE TABLE IF NOT EXISTS table_1_1140076_2 (
"Pole Position" text,
Race text,
Rnd numeric,
Location text,
"Fastest Lap" text,
Report text,
Constructor text,
"Race Winner" text... | What date was the 1988 world group i edition with a result of 7–6 (7–5) , 6–3? | SELECT Date FROM table_2_18330817_9 WHERE "Edition" ILIKE '%1988%world%group%i%' AND "Result" ILIKE '%7–6%(7–5)%,%6–3%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_10240125_1 (
"League Goals" numeric,
"FA Cup Goals" numeric,
"Total Goals" numeric,
"FA Cup Apps" numeric,
"League Apps" numeric,
Division text,
"Total Apps" numeric,
Season text
);
CREATE TABLE IF NOT EXISTS table_1_11734041_11 (
"Years for Rockets" text,
"School/Club Team/... | What is the height in ft and m of the regions bank building? | SELECT "Height ft (m)" FROM table_2_17961233_2 WHERE "Name" ILIKE '%regions%bank%building%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_11622829_1 (
Tournament text,
"1st Prize( $ )" numeric,
Winner text,
Score text,
Date text,
Location text,
"Purse( $ )" numeric
);
CREATE TABLE IF NOT EXISTS table_1_10556257_1 (
Team text,
"Cup Goals" numeric,
Season text,
"Cup Apps" numeric,
"League Apps" numeric,
"Leag... | Tell me the captain for guns of 28 | SELECT Captain FROM table_2_1023875_3 WHERE "Guns" ILIKE '%28%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_11960610_10 (
Score text,
Date text,
"Location Attendance" text,
Team text,
Record text,
"High rebounds" text,
"High points" text,
"High assists" text,
Game numeric
);
CREATE TABLE IF NOT EXISTS table_2_1281247_2 (
ICAO text,
Country text,
Airport text,
IATA text,
City t... | Which city has an ICAO of Kiah? | SELECT City FROM table_2_1281247_2 WHERE "ICAO" ILIKE '%kiah%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_11190568_7 (
"Replaced by" text,
"Outgoing manager" text,
"Date of vacancy" text,
Team text,
"Date of appointment" text,
Position text,
"Manner of departure" text
);
CREATE TABLE IF NOT EXISTS table_1_10236830_4 (
Director text,
Nomination text,
"Actors Name" text,
Country ... | What is the team 1 when Ulisses is team 2? | SELECT "Team 1" FROM table_2_17372848_1 WHERE "Team 2" ILIKE '%ulisses%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_10798928_1 (
Director text,
"Film title used in nomination" text,
"Year (Ceremony)" text,
"Original title" text,
Result text
);
CREATE TABLE IF NOT EXISTS table_1_1213511_3 (
Player text,
Position text,
"College/junior/club team" text,
Nationality text,
"Pick #" numeric,
"N... | What type of school had an enrollment in 2009 of 224? | SELECT TYPE FROM table_1_2076595_1 WHERE "Enrollment (2009)" = '224' | [
"MySQL",
"Oracle",
"PostgreSQL",
"SQL Server",
"SQLite"
] |
CREATE TABLE IF NOT EXISTS table_2_1676073_13 (
"Points against" text,
Club text,
"Points for" text,
Played text,
"Points difference" text,
Lost text,
Drawn text,
Points text
);
CREATE TABLE IF NOT EXISTS table_1_10577579_3 (
"Women’s Nickname" text,
Founded numeric,
Joined text,
Location text,
Left text,
... | Which Points difference has Points against of 786? | SELECT "Points difference" FROM table_2_1676073_13 WHERE "Points against" ILIKE '%786%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_10392906_2 (
"Game site" text,
"Team record" text,
Date text,
Attendance numeric,
"Final score" text,
Week numeric,
Kickoff text,
Opponent text
);
CREATE TABLE IF NOT EXISTS table_2_12870321_2 (
Team text,
Relegations numeric,
Seasons numeric,
"Ch.Wins" numeric,
Promotion... | Whats the highest Promotions that has a Team of Pallacanestro Messina, along with Relegations larger than 0? | SELECT MAX(Promotions) FROM table_2_12870321_2 WHERE "Team" ILIKE '%pallacanestro%messina%' AND "Relegations" > '0' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_2_10887680_3 (
"Away team" text,
"Home team score" text,
Date text,
"Away team score" text,
Venue text,
"Home team" text,
Crowd numeric
);
CREATE TABLE IF NOT EXISTS table_1_1246665_1 (
"Area km²" numeric,
Population numeric,
"unnamed_6" text,
"Density Population per km²" num... | In the match where fitzroy was the away team, where was the venue? | SELECT Venue FROM table_2_10887680_3 WHERE "Away team" ILIKE '%fitzroy%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_1241987_1 (
"Open Cup" text,
League text,
"Regular Season" text,
Year numeric,
Division numeric,
Playoffs text
);
CREATE TABLE IF NOT EXISTS table_1_11656578_2 (
"No. of cities" numeric,
Capital text,
"Area km² (1998)" text,
Abbreviation text,
Voivodeship text,
"Population... | state the round that had a game attended attended by 9359 people | SELECT Round FROM table_1_21256068_3 WHERE "Attendance" = '9359' | [
"MySQL",
"Oracle",
"PostgreSQL",
"SQL Server",
"SQLite"
] |
CREATE TABLE IF NOT EXISTS table_1_10748727_1 (
"F/Laps" numeric,
Podiums numeric,
Points text,
"Team Name" text,
Races numeric,
Season text,
Position text,
Wins numeric,
Poles numeric
);
CREATE TABLE IF NOT EXISTS table_1_11562149_1 (
"Original air date" text,
"Featured character(s)" text,
"No. in series" ... | What series was Dick Johnson Racing the team? | SELECT Series FROM table_2_17001452_1 WHERE "Team" ILIKE '%dick%johnson%racing%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_1008653_9 (
"Capital ( exonym )" text,
"Country ( exonym )" text,
"Official or native language(s) (alphabet/script)" text,
"Capital ( endonym )" text,
"Country ( endonym )" text
);
CREATE TABLE IF NOT EXISTS table_1_1147705_1 (
"engine displacement" text,
"engine type" text,
"... | What position does Robert Brooks play? | SELECT COUNT(POSITION) FROM table_1_14649522_1 WHERE "Player" ILIKE '%Robert%Brooks%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_1013129_1 (
Nationality text,
Player text,
Position text,
Pick numeric,
"College/junior/club team" text,
"NHL team" text
);
CREATE TABLE IF NOT EXISTS table_2_13111652_1 (
"Runner-Up" text,
Winner text,
Year numeric,
Venue text,
Third text
); | What year did Kyle Newman place third? | SELECT YEAR FROM table_2_13111652_1 WHERE "Third" ILIKE '%kyle%newman%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_10975034_5 (
College text,
Position text,
"CFL Team" text,
"Pick #" numeric,
Player text
);
CREATE TABLE IF NOT EXISTS table_1_10284385_1 (
"End Date" text,
"House term" text,
"State served" text,
Party text,
"Date of birth" text,
"Begin Date" text,
Representative text,
"... | What is the ethnic group that in 2001 had 117,513? | SELECT "Ethnic Group" FROM table_1_18660332_2 WHERE "2001 (people)" ILIKE '%117,513%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_2_13045569_1 (
Total numeric,
Gold numeric,
Rank text,
Bronze numeric,
Silver numeric,
Nation text
);
CREATE TABLE IF NOT EXISTS table_1_11803648_22 (
"Club team" text,
Player text,
Round numeric,
Nationality text,
Position text,
Overall text
);
CREATE TABLE IF NOT EXISTS ta... | What is the value for Gold, when the value for Bronze is less than 0? | SELECT COUNT(Gold) FROM table_2_13045569_1 WHERE "Bronze" < '0' | [
"MySQL",
"Oracle",
"PostgreSQL",
"SQL Server",
"SQLite"
] |
CREATE TABLE IF NOT EXISTS table_1_1140085_2 (
Rnd numeric,
Race text,
"Pole Position" text,
Constructor text,
Location text,
Report text,
"Fastest Lap" text,
"Race Winner" text,
Date text
);
CREATE TABLE IF NOT EXISTS table_1_1067134_1 (
"Region 2" text,
"DVD Name" text,
"# of Ep" numeric,
"Region 4" text... | What is Joselito Escobar's Pick number? | SELECT SUM(Pick) FROM table_2_18703231_1 WHERE "Player" ILIKE '%joselito%escobar%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_10705060_1 (
Position text,
Season text,
"Team Name" text,
Wins numeric,
Races numeric,
Series text,
Points numeric,
Poles numeric
);
CREATE TABLE IF NOT EXISTS table_1_10470082_6 (
Villains text,
"No." numeric,
Title text,
"US air date" text,
Director text,
"#" numeric,... | What is the Game that came out before the year 2009 for the Playstation 3? | SELECT Game FROM table_2_1851722_36 WHERE "Platform(s)" ILIKE '%playstation%3%' AND "Year" < '2009' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_2_13041602_5 (
Date text,
Attendance numeric,
Record text,
Score text,
Loss text,
Opponent text
);
CREATE TABLE IF NOT EXISTS table_1_10580575_1 (
"unnamed_0" numeric,
Export numeric,
"CO 2 -emission" numeric,
Electricity numeric,
"Prim. energy" numeric,
Production numeric,
... | With a record of 48-51 for the team, the lowest 2005 attendance was listed as how many? | SELECT MIN(Attendance) FROM table_2_13041602_5 WHERE "Record" ILIKE '%48-51%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_1216675_1 (
Chinese text,
Subject text,
Chapter numeric,
Pinyin text,
Translation text
);
CREATE TABLE IF NOT EXISTS table_1_11900378_1 (
"Singles champions" text,
City text,
"Doubles champions" text,
Tournament text,
Country text,
Surface text
);
CREATE TABLE IF NOT EXISTS... | Where does Essendon play their home games? | SELECT Venue FROM table_2_1204658_12 WHERE "Home team" ILIKE '%essendon%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_1104312_5 (
"Population at 2010 Census" numeric,
"English name" text,
"Number of settlements and villages" numeric,
"Area in km²" text,
"Original name" text
);
CREATE TABLE IF NOT EXISTS table_1_1245350_1 (
"Engine Capacity" text,
"Quattroporte IV" text,
Power text,
"Max Spee... | Which team was the opponent that had a location of Madison Square Garden with a score of 87-83? | SELECT Team FROM table_2_16763663_12 WHERE "Location Attendance" ILIKE '%madison%square%garden%' AND "Score" ILIKE '%87-83%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_11251109_3 (
"Viewers (m)" text,
"#" numeric,
"Rank (#)" text,
"Air Date" text,
"Timeslot (EST)" text,
"18–49" text,
Rating text,
Episode text,
Share numeric
);
CREATE TABLE IF NOT EXISTS table_1_12232526_2 (
Note text,
"Hull Numbers" numeric,
Origin text,
Class text,
"S... | in which year the season was in 5th position | SELECT Season FROM table_1_29697744_1 WHERE "Position" ILIKE '%5th%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_1213511_6 (
Nationality text,
"NHL team" text,
Player text,
"Pick #" numeric,
Position text,
"College/junior/club team" text
);
CREATE TABLE IF NOT EXISTS table_1_13114949_3 (
Event text,
"Final-Rank" text,
Competition text,
Year numeric,
Location text,
"Final-Score" text,... | what is the final-rank for the uneven bars and the competition is u.s. championships? | SELECT FINAL-Rank FROM table_1_13114949_3 WHERE "Event" ILIKE '%Uneven%Bars%' AND "Competition" ILIKE '%U.S.%Championships%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_1099080_1 (
"Prothrombin time" text,
"Partial thromboplastin time" text,
"Bleeding time" text,
Condition text,
"Platelet count" text
);
CREATE TABLE IF NOT EXISTS table_2_18228282_3 (
Height numeric,
Position text,
"Year born (Age)" text,
Player text,
"Current Club" text
);
... | What year was Rowan Barrett born? | SELECT "Year born (Age)" FROM table_2_18228282_3 WHERE "Player" ILIKE '%rowan%barrett%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_11950720_8 (
"Bowling Style" text,
"No." text,
"Date of Birth" text,
"First Class Team" text,
"Batting Style" text,
Player text
);
CREATE TABLE IF NOT EXISTS table_1_11447995_2 (
Haydon text,
Larter text,
Liscumb text,
Lawrance text,
Libweshya text,
Ward text,
Furtenbache... | Which is the latest year that has an engine of Offenhauser l4, a chassis of Kurtis Kraft 500c, and the entrant of Federal Engineering? | SELECT MAX(YEAR) FROM table_2_1251953_3 WHERE "Engine" ILIKE '%offenhauser%l4%' AND "Chassis" ILIKE '%kurtis%kraft%500c%' AND "Entrant" ILIKE '%federal%engineering%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_12454156_1 (
"Winning Hand" text,
Winner text,
Entrants numeric,
"Losing Hand" text,
"Runner-Up" text,
"Prize Money" text,
Year numeric
);
CREATE TABLE IF NOT EXISTS table_1_2866456_1 (
Title text,
"#" numeric,
"Written by" text,
"U.S. viewers (million)" text,
"Production ... | Who is the directed by when 2t6404 is the production code? | SELECT "Directed by" FROM table_1_2866456_1 WHERE "Production code" ILIKE '%2T6404%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_11964263_13 (
Series text,
"High rebounds" text,
"High assists" text,
Game numeric,
"High points" text,
Team text,
Score text,
"Location Attendance" text,
Date text
);
CREATE TABLE IF NOT EXISTS table_1_28138035_27 (
"Year Location" text,
"Womens Doubles" text,
"Mens Doubl... | Who is listed under mens singles when womens has wang nan zhang yining? | SELECT "Mens Singles" FROM table_1_28138035_27 WHERE "Womens Doubles" ILIKE '%Wang%Nan%Zhang%Yining%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_2_18540104_2 (
"Japanese Title" text,
"Romaji Title" text,
Episodes numeric,
"Average Ratings" text,
"TV Station" text
);
CREATE TABLE IF NOT EXISTS table_1_10932739_2 (
Planet text,
"Planet Type" text,
"Orbital Period" text,
"Radial velocity (m/s)" text,
"Semimajor Axis ( AU ... | How many Episodes have a Romaji Title of slow dance? | SELECT SUM(Episodes) FROM table_2_18540104_2 WHERE "Romaji Title" ILIKE '%slow%dance%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_11960407_2 (
"High rebounds" text,
"Location Attendance" text,
Game numeric,
"High points" text,
Date text,
"High assists" text,
Record text,
Score text,
Team text
);
CREATE TABLE IF NOT EXISTS table_1_1123802_1 (
"Compression ratio" text,
Engine text,
"Octane rating" text... | What is Pick, when Round is greater than 1, and when School/Club Team is South Carolina? | SELECT Pick FROM table_2_16274053_1 WHERE "Round" > '1' AND "School/Club Team" ILIKE '%south%carolina%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_2_1123404_2 (
Constructor text,
Laps numeric,
"Time/Retired" text,
Driver text,
Grid numeric
);
CREATE TABLE IF NOT EXISTS table_1_10979230_4 (
"Japanese title" text,
"Release date" text,
Reference text,
"Romaji title" text,
Oricon numeric
);
CREATE TABLE IF NOT EXISTS table_1... | How many laps had a grid number of 7? | SELECT SUM(Laps) FROM table_2_1123404_2 WHERE "Grid" = '7' | [
"MySQL",
"Oracle",
"PostgreSQL",
"SQL Server",
"SQLite"
] |
CREATE TABLE IF NOT EXISTS table_2_1846470_1 (
Silver numeric,
Nation text,
Bronze numeric,
Rank numeric,
Gold numeric,
Total numeric
);
CREATE TABLE IF NOT EXISTS table_1_11960944_11 (
Score text,
Date text,
"High points" text,
Game numeric,
Team text,
"High assists" text,
Series text,
"High rebounds" te... | With a greater than 4 rank, and the silver medal greater than 0, and the bronze medal less than 1, what is the average total? | SELECT AVG(Total) FROM table_2_1846470_1 WHERE "Rank" > '4' AND "Silver" > '0' AND "Bronze" < '1' | [
"MySQL",
"Oracle",
"PostgreSQL",
"SQL Server",
"SQLite"
] |
CREATE TABLE IF NOT EXISTS table_1_1013168_3 (
Successor text,
Vacator text,
"Date successor seated" text,
"Reason for change" text,
District text
);
CREATE TABLE IF NOT EXISTS table_2_1137274_3 (
"Original air date" text,
"Directed by" text,
"Production code" text,
"Written by" text,
Title text
);
CREATE TAB... | What is the title of the episode with production code ad1c07? | SELECT Title FROM table_2_1137274_3 WHERE "Production code" ILIKE '%ad1c07%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_12275654_1 (
"Womens singles" text,
"Mixed doubles" text,
"Womens doubles" text,
"Mens singles" text,
Year numeric,
"Mens doubles" text
);
CREATE TABLE IF NOT EXISTS table_2_14608543_1 (
Opponent text,
Record text,
"Game site" text,
Date text,
Week numeric,
Result text
); | What was the earliest week with a game at the Braves Field on October 2, 1932? | SELECT MIN(WEEK) FROM table_2_14608543_1 WHERE "Game site" ILIKE '%braves%field%' AND "Date" ILIKE '%october%2,%1932%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_11636213_7 (
Against text,
Surface text,
Opponents text,
Partnering text,
Edition text,
Round text,
Result text,
"W–L" text,
Date text
);
CREATE TABLE IF NOT EXISTS table_2_1551027_1 (
Year numeric,
Venue text,
"Runners-up" text,
Winners text,
Location text
); | What is the Location when France was the runner-up at club de campo? | SELECT LOCATION FROM table_2_1551027_1 WHERE "Runners-up" ILIKE '%france%' AND "Venue" ILIKE '%club%de%campo%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_10647639_1 (
Result text,
"Game site" text,
Attendance numeric,
Date text
);
CREATE TABLE IF NOT EXISTS table_2_16912111_3 (
Opponent text,
Score text,
Date text,
Attendance text,
Week numeric,
Record text,
Result text
); | What is Record, when Attendance is 30,110? | SELECT Record FROM table_2_16912111_3 WHERE "Attendance" ILIKE '%30,110%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_1112176_1 (
Season text,
"FA Cup Goals" numeric,
"League Goals" numeric,
"Other Apps" numeric,
Division text,
"FA Cup Apps (Sub)" text,
"FL Cup Goals" numeric,
"FL Cup Apps (Sub)" numeric,
"League Apps (Sub)" numeric,
"Total Goals" numeric,
"Total Apps (Sub)" text,
"Other ... | Which college had rounds smaller than 2? | SELECT College FROM table_2_12536490_1 WHERE "Round" < '2' | [
"MySQL",
"Oracle",
"PostgreSQL",
"SQL Server",
"SQLite"
] |
CREATE TABLE IF NOT EXISTS table_1_10953197_3 (
"Original air date" text,
"Production code" text,
"No. in season" numeric,
"Writer(s)" text,
Director text,
"No. in series" numeric
);
CREATE TABLE IF NOT EXISTS table_1_1099080_1 (
"Bleeding time" text,
"Platelet count" text,
"Prothrombin time" text,
"Partial t... | What music is in the film before 1962? | SELECT Music FROM table_2_1176486_1 WHERE "Year" = '1962' | [
"MySQL",
"Oracle",
"PostgreSQL",
"SQL Server",
"SQLite"
] |
CREATE TABLE IF NOT EXISTS table_1_1140083_2 (
Constructor text,
"Pole Position" text,
Location text,
"Fastest Lap" text,
"Race Winner" text,
Rnd numeric,
Report text,
Date text,
Race text
);
CREATE TABLE IF NOT EXISTS table_1_12321870_32 (
Position text,
Country text,
Matches text,
Period text,
"Player n... | How many platinum points were awarded when 9 gold points were awarded? | SELECT "Points awarded (Platinum)" FROM table_1_11254821_2 WHERE "Points awarded (Gold)" = '9' | [
"MySQL",
"Oracle",
"PostgreSQL",
"SQL Server",
"SQLite"
] |
CREATE TABLE IF NOT EXISTS table_1_11630008_7 (
"Season #" numeric,
"Written by" text,
"Directed by" text,
"Original air date" text,
"Production code" numeric,
Title text,
"Series #" numeric
);
CREATE TABLE IF NOT EXISTS table_1_11622255_1 (
Tournament text,
Winner text,
"Purse( $ )" numeric,
Score text,
"1... | Which Test Standard has a Usage of secondary filters, and a Class of f5? Question 4 | SELECT "Test Standard" FROM table_2_1680877_1 WHERE "Usage" ILIKE '%secondary%filters%' AND "Class" ILIKE '%f5%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_11545282_6 (
"Years for Jazz" text,
"School/Club Team" text,
"No." numeric,
Position text,
Nationality text,
Player text
);
CREATE TABLE IF NOT EXISTS table_1_1012730_2 (
"Avg. Finish" text,
Wins numeric,
"Team(s)" text,
Poles numeric,
Winnings text,
"Avg. Start" text,
"T... | What nominated work received a tony award in 2009? | SELECT "Nominated Work" FROM table_2_1212502_1 WHERE "Award" ILIKE '%tony%award%' AND "Year" = '2009' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_12193259_1 (
Season text,
"Mens singles" text,
"Womens doubles" text,
"Womens singles" text,
"Mens doubles" text,
"Mixed doubles" text
);
CREATE TABLE IF NOT EXISTS table_1_11677100_16 (
Player text,
Position text,
"MLB Draft" text,
School text,
Hometown text
);
CREATE TABL... | Which Opponents have a Team of arsenal, and a Year of 1963–64? | SELECT Opponents FROM table_2_15234969_4 WHERE "Team" ILIKE '%arsenal%' AND "Year" ILIKE '%1963–64%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_11964154_9 (
"High rebounds" text,
"High assists" text,
Team text,
Game numeric,
"High points" text,
"Location Attendance" text
);
CREATE TABLE IF NOT EXISTS table_2_13244501_2 (
Record text,
Decision text,
Home text,
Visitor text,
Date text,
Score text,
Attendance numeri... | Name the visitor for october 19 | SELECT Visitor FROM table_2_13244501_2 WHERE "Date" ILIKE '%october%19%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_2_17288825_9 (
Team text,
"High assists" text,
Date text,
Score text,
"High rebounds" text,
"Location Attendance" text,
Game numeric,
Record text,
"High points" text
);
CREATE TABLE IF NOT EXISTS table_1_1131183_2 (
"Rank (ARDA)" numeric,
"Metro area" text,
"Number of Jews (... | What was the high assist for game 66? | SELECT "High assists" FROM table_2_17288825_9 WHERE "Game" = '66' | [
"MySQL",
"Oracle",
"PostgreSQL",
"SQL Server",
"SQLite"
] |
CREATE TABLE IF NOT EXISTS table_2_18766048_1 (
Attendance text,
Opponent text,
Date text,
Week numeric,
Result text,
"TV Time" text
);
CREATE TABLE IF NOT EXISTS table_1_11449590_2 (
Record text,
"Kickoff [a ]" text,
Result text,
Date text,
"Game site" text,
TV text
);
CREATE TABLE IF NOT EXISTS table_1_11... | What is the Tv Time of the game with an Attendance of 73,578? | SELECT "TV Time" FROM table_2_18766048_1 WHERE "Attendance" ILIKE '%73,578%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_11970261_2 (
Country text,
Swimsuit text,
Preliminaries text,
"Evening Gown" text,
Interview text,
Average text
);
CREATE TABLE IF NOT EXISTS table_1_10470082_7 (
"No." numeric,
Writer text,
Director text,
"#" numeric,
Villains text,
Title text,
"US air date" text,
Story... | What is the Location of the Competition with a Rank-Final of 10? | SELECT LOCATION FROM table_2_18507967_4 WHERE "Rank-Final" ILIKE '%10%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_11240028_3 (
Relationship text,
"First appearance" text,
"Last appearance" text,
Character text,
"Portrayed by" text
);
CREATE TABLE IF NOT EXISTS table_2_12207158_3 (
Attendance text,
Loss text,
Score text,
Record text,
Date text,
Opponent text
);
CREATE TABLE IF NOT EXIST... | Which of the opponents has a record of 17-25? | SELECT Opponent FROM table_2_12207158_3 WHERE "Record" ILIKE '%17-25%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_2_10807253_6 (
"Away team score" text,
Venue text,
Date text,
"Home team score" text,
"Home team" text,
"Away team" text,
Crowd numeric
);
CREATE TABLE IF NOT EXISTS table_1_11585313_2 (
"date of birth" text,
"number of caps" numeric,
"date of death†" text,
"date of debut" te... | What is glenferrie oval's home team? | SELECT "Home team" FROM table_2_10807253_6 WHERE "Venue" ILIKE '%glenferrie%oval%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_10812938_5 (
College text,
Position text,
"CFL Team" text,
"Pick #" numeric,
Player text
);
CREATE TABLE IF NOT EXISTS table_1_20928661_1 (
Opponents numeric,
Result text,
Record text,
Game numeric,
Date text,
"Cardinals points" numeric,
Opponent text
); | Name the number opponent for loss result | SELECT COUNT(Opponent) FROM table_1_20928661_1 WHERE "Result" ILIKE '%Loss%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_12001616_4 (
Status text,
Driver text,
Finish numeric,
Laps numeric,
Start numeric,
"Car Name" text,
"Car Make" text,
Entrant text,
"Car No." numeric
);
CREATE TABLE IF NOT EXISTS table_1_11303072_9 (
Rank numeric,
Stumpings numeric,
Nationality text,
Dismissals numeric,
... | What is the engine(s) on the car before 1978 with ensign n177 chassis? | SELECT Engine(s) FROM table_2_1262592_1 WHERE "Chassis" ILIKE '%ensign%n177%' AND "Year" < '1978' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_28523_3 (
"School website" text,
Gender text,
School text,
Location text,
"Religious Affiliation" text,
"Age Range" text
);
CREATE TABLE IF NOT EXISTS table_1_10718631_2 (
"U.S. viewers (millions)" text,
"No. in season" numeric,
"No. in series" numeric,
"Written by" text,
"... | What is the gender of the Roman Catholic school is AL4? | SELECT Gender FROM table_1_28523_3 WHERE "Religious Affiliation" ILIKE '%Roman%Catholic%' AND "Location" ILIKE '%AL4%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_11642945_1 (
Viewers text,
Celebrity text,
"Original air date" text,
Director text,
"Total No." numeric
);
CREATE TABLE IF NOT EXISTS table_1_11734041_10 (
"School/Club Team/Country" text,
"Years for Rockets" text,
"No.(s)" text,
Position text,
"Height in Ft." text,
Player ... | What are all the names of the players who are 7-0 tall? | SELECT Player FROM table_1_11734041_10 WHERE "Height in Ft." ILIKE '%7-0%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_10975034_5 (
Player text,
College text,
"CFL Team" text,
"Pick #" numeric,
Position text
);
CREATE TABLE IF NOT EXISTS table_1_11602313_4 (
TDP text,
Socket text,
Voltage text,
"Release price ( USD )" text,
"Release date" text,
"Part number(s)" text,
"Model number" text,
... | What frequency is the pentium dual-core t3200? | SELECT Frequency FROM table_1_11602313_4 WHERE "Model number" ILIKE '%Pentium%Dual-Core%T3200%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_10932739_2 (
Planet text,
"Planet Type" text,
"Semimajor Axis ( AU )" text,
"Detectable by:" text,
"Radial velocity (m/s)" text,
"Orbital Period" text
);
CREATE TABLE IF NOT EXISTS table_1_1015914_24 (
"Case/Suffix" text,
"we two" text,
"you and I" text,
"who-two" text,
"th... | What is the average decile for te puru school? | SELECT AVG(Decile) FROM table_2_12146269_1 WHERE "Name" ILIKE '%te%puru%school%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_2_18574677_3 (
"100s" text,
Player text,
Runs text,
Average text,
"Strike Rate" text,
Balls text,
Matches text
);
CREATE TABLE IF NOT EXISTS table_1_10470082_6 (
Villains text,
"No." numeric,
Title text,
"US air date" text,
Storyteller text,
Writer text,
Director text,
"#... | Which player has 79.62 as the strike rate? | SELECT Player FROM table_2_18574677_3 WHERE "Strike Rate" ILIKE '%79.62%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_293465_1 (
"Rank 2011" numeric,
"Rank 2010" numeric,
"Production in 2011 (1,000 ton)" numeric,
Country text,
"Production in 2010 (1,000 ton)" numeric,
"Share 2011" text
);
CREATE TABLE IF NOT EXISTS table_1_1140113_5 (
"Race Name" text,
Constructor text,
Date text,
Circuit t... | When 75849 is the production in 2010 (1,000 ton) what is the production in 2011 (1,000 ton)? | SELECT "Production in 2011 (1,000 ton)" FROM table_1_293465_1 WHERE "Production in 2010 (1,000 ton)" = '75849' | [
"MySQL",
"Oracle",
"PostgreSQL",
"SQL Server",
"SQLite"
] |
CREATE TABLE IF NOT EXISTS table_1_11677691_2 (
School text,
Hometown text,
Position text
);
CREATE TABLE IF NOT EXISTS table_1_11677100_17 (
Hometown text,
"MLB Draft" text,
Position text
);
CREATE TABLE IF NOT EXISTS table_1_1132588_3 (
"Grand Prix" text,
Constructor text,
"Fastest Lap" text,
"Rd." numeric,... | Which player went to Wake Forest and was selected with a pick after 145? | SELECT Player FROM table_2_17062990_1 WHERE "Pick" > '145' AND "College" ILIKE '%wake%forest%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_25401_15 (
"Old French" text,
Catalan text,
"Conservative Central Italian 1" text,
"Proto-Italo-Western 1" text,
English text,
Spanish text,
Latin text,
Italian text
);
CREATE TABLE IF NOT EXISTS table_1_11207040_6 (
"Manner of departure" text,
Team text,
"Date of appointme... | What is every entry for Latin when Catalan is Mar? | SELECT Latin FROM table_1_25401_15 WHERE "Catalan" ILIKE '%mar%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_1015914_15 (
"Kalau Kawau Ya" text,
"Kalaw Lagaw Ya" text,
"Kawalgau Ya" text,
"Kulkalgau Ya" text,
"unnamed_0" text,
"Kauraraigau Ya (Kowrareg)" text
);
CREATE TABLE IF NOT EXISTS table_2_18305523_3 (
"Story Title" text,
"Letterer/s" text,
"Writer/s" text,
"Colourist/s" tex... | Who is the Colourist that has a Story Title of Broken Glass (part 3) and a Letterer of Albers? | SELECT Colourist/s FROM table_2_18305523_3 WHERE "Letterer/s" ILIKE '%albers%' AND "Story Title" ILIKE '%broken%glass%(part%3)%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_11545282_7 (
Player text,
Nationality text,
"No." numeric,
Position text,
"School/Club Team" text,
"Years for Jazz" text
);
CREATE TABLE IF NOT EXISTS table_1_11677691_6 (
Hometown text,
School text,
College text,
Position text
);
CREATE TABLE IF NOT EXISTS table_1_11951237_... | What are the notes for Happy Camp? | SELECT Notes FROM table_2_17333702_3 WHERE "Title" ILIKE '%happy%camp%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_10716893_3 (
"Pre-race analyst" text,
"Lap-by-lap" text,
Year numeric,
"Pit reporters" text,
Network text,
Host text,
"Color commentator(s)" text
);
CREATE TABLE IF NOT EXISTS table_1_11960610_6 (
Game numeric,
Team text,
"High rebounds" text,
Record text,
"High points" te... | When was republican incumbent Joseph McKenna first elected? | SELECT "First elected" FROM table_2_1431450_2 WHERE "Party" ILIKE '%republican%' AND "Incumbent" ILIKE '%joseph%mckenna%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_11622771_1 (
Score text,
Location text,
"1st Prize( $ )" numeric,
"Purse( $ )" numeric,
Date text,
Winner text,
Tournament text
);
CREATE TABLE IF NOT EXISTS table_1_1246665_1 (
County text,
"Area km²" numeric,
"unnamed_6" text,
"Density Population per km²" numeric,
Munici... | Where was the Fairfield Barnett classic tournament held? | SELECT LOCATION FROM table_1_11622771_1 WHERE "Tournament" ILIKE '%Fairfield%Barnett%Classic%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_11793221_2 (
Missing text,
Wounded text,
Commander text,
Complement text,
Killed text,
Unit text
);
CREATE TABLE IF NOT EXISTS table_1_159614_2 (
Harris text,
"Opinion Research Centre (OPC)" text,
Marplan text,
Gallup text,
"National Opinion Polls (NOP)" text,
Party text
)... | On all other parties the National option polls are at 1.3% where as the opinion research pole is at what percentage? | SELECT "Opinion Research Centre (OPC)" FROM table_1_159614_2 WHERE "National Opinion Polls (NOP)" ILIKE '%1.3%%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_17012578_6 (
L numeric,
PF numeric,
W numeric,
"Shot Pct." numeric,
"Stolen Ends" numeric,
Province text,
"Ends Won" numeric,
"Ends Lost" numeric,
Skip text,
"Blank Ends" numeric,
PA numeric
);
CREATE TABLE IF NOT EXISTS table_1_12125069_2 (
Location text,
"Losing Pitcher... | Who was Alberta's skip when the shot pct was 88? | SELECT Skip FROM table_1_17012578_6 WHERE "Shot Pct." = '88' AND "Province" ILIKE '%Alberta%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_11677100_5 (
Hometown text,
Position text,
Player text,
"MLB Draft" text,
School text
);
CREATE TABLE IF NOT EXISTS table_2_14828499_9 (
Game numeric,
Record text,
Score text,
Date text,
Location text,
Opponent text
);
CREATE TABLE IF NOT EXISTS table_1_11647327_2 (
"Marri... | Which Date has a Score of 106–112? | SELECT Date FROM table_2_14828499_9 WHERE "Score" ILIKE '%106–112%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_2_11960713_7 (
Game numeric,
Score text,
"High points" text,
Series text,
"High assists" text,
"High rebounds" text,
"Location Attendance" text,
Date text,
Team text
);
CREATE TABLE IF NOT EXISTS table_1_10006830_1 (
Aircraft text,
"Max disk Loading" text,
Description text,
... | Name the series for april 30 | SELECT Series FROM table_2_11960713_7 WHERE "Date" ILIKE '%april%30%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_2_15095718_9 (
Date text,
Opponents text,
Partner text,
Outcome text,
Score text,
Surface text,
Tournament text
);
CREATE TABLE IF NOT EXISTS table_1_10402018_1 (
"Australia & New Zealand (Sydney - first run, Melbourne, Auckland)" text,
"UK Tour" text,
Brazil text,
Character ... | What was the Outcome of the match with a Score of w/o? | SELECT Outcome FROM table_2_15095718_9 WHERE "Score" ILIKE '%w/o%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_2_1711351_1 (
"PF per game" numeric,
Played numeric,
"PA per game" numeric,
Rank numeric,
"PD per game" numeric,
Loss numeric,
"Last 5" text,
Streak text,
Team text,
"Winning %" text
);
CREATE TABLE IF NOT EXISTS table_1_11662133_3 (
"Date withdrawn" text,
"Ships name" text,... | Which Loss has a Last 5 of 4-1, a Streak of w2, and a PA per game smaller than 88.43? | SELECT AVG(Loss) FROM table_2_1711351_1 WHERE "Last 5" ILIKE '%4-1%' AND "Streak" ILIKE '%w2%' AND "PA per game" < '88.43' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_12444503_1 (
Score text,
Winner text,
Season text,
"lost to eventual winner" text,
"lost to eventual runner-up" text,
"Runner-up" text
);
CREATE TABLE IF NOT EXISTS table_1_20726262_4 (
Writtenby text,
Title text,
"Production code" text,
Originalairdate text,
"No. in season... | what is the maximum number in the season wher the us viewers is 2.59? | SELECT MAX("No. in season") FROM table_1_20726262_4 WHERE "U.S.viewers (million)" ILIKE '%2.59%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_12226390_4 (
"Directed by" text,
Title text,
"No. in season" numeric,
"Written by" text,
"Original air date" text,
"No. in series" numeric,
"Production code" numeric
);
CREATE TABLE IF NOT EXISTS table_1_1013129_8 (
Nationality text,
Position text,
Player text,
"NHL team" t... | Who was on the Socialist Labor ticket in the race against W. Averell Harriman? | SELECT "Socialist Labor ticket" FROM table_2_14792819_1 WHERE "Liberal ticket" ILIKE '%w.%averell%harriman%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_11622562_1 (
Winner text,
Tournament text,
Date text,
Score text,
"1st Prize( $ )" numeric,
"Purse( $ )" numeric,
Location text
);
CREATE TABLE IF NOT EXISTS table_1_10335_1 (
"Current country of location" text,
"Estimated deaths" text,
Camp text,
"Primary means for mass ki... | what's the operational period with camp sajmište | SELECT Operational FROM table_1_10335_1 WHERE "Camp" ILIKE '%Sajmište%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_2_14069451_1 (
Opponent text,
Result text,
Score text,
Round text,
Event text
);
CREATE TABLE IF NOT EXISTS table_1_1012730_2 (
Poles numeric,
Wins numeric,
"Avg. Finish" text,
Starts numeric,
"Top 10" numeric,
"Avg. Start" text,
"Top 5" numeric,
"Team(s)" text,
Year numer... | Opponent of igor samoilenco had what result? | SELECT RESULT FROM table_2_14069451_1 WHERE "Opponent" ILIKE '%igor%samoilenco%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_10592536_8 (
"Date of appointment" text,
"Replaced by" text,
"Manner of departure" text,
"Position in table" text,
"Outgoing manager" text,
"Date of vacancy" text,
Team text
);
CREATE TABLE IF NOT EXISTS table_1_10361625_1 (
Position text,
Overall numeric,
College text,
Cho... | What is the partnership in the game with 166* runs and an opponent of Namibia? | SELECT Partnerships FROM table_2_11611293_8 WHERE "Versus" ILIKE '%namibia%' AND "Runs" ILIKE '%166*%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_10722506_6 (
"Win %" text,
Conference text,
"Championship Game" numeric,
"Round of 32" numeric,
Record text,
"Final Four" numeric,
"Elite Eight" numeric,
"Sweet Sixteen" numeric,
"# of Bids" numeric
);
CREATE TABLE IF NOT EXISTS table_1_11900773_5 (
Design text,
"Date of Is... | What is the format of the album with a year less than 1992? | SELECT Format FROM table_2_15593730_1 WHERE "Year" < '1992' | [
"MySQL",
"Oracle",
"PostgreSQL",
"SQL Server",
"SQLite"
] |
CREATE TABLE IF NOT EXISTS table_1_11206787_5 (
Capacity numeric,
Average numeric,
Stadium text,
Highest numeric,
Lowest numeric,
Team text
);
CREATE TABLE IF NOT EXISTS table_1_10295819_1 (
"Total W–L" text,
"Singles W–L" text,
"Current doubles ranking" text,
"Doubles W–L" text,
"Current singles ranking" te... | What date did the home team Richmond play? | SELECT Date FROM table_2_10789881_18 WHERE "Home team" ILIKE '%richmond%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_2_15434792_3 (
Draw numeric,
Lost numeric,
Team text,
Points numeric,
Match numeric
);
CREATE TABLE IF NOT EXISTS table_1_12113818_1 (
"Local Affairs" text,
"Academic & University Affairs" text,
Year text,
"Human Resources & Operations" text,
"Communications and Corporate Affa... | How many matches ended with more than 22 points? | SELECT SUM(MATCH) FROM table_2_15434792_3 WHERE "Points" > '22' | [
"MySQL",
"Oracle",
"PostgreSQL",
"SQL Server",
"SQLite"
] |
CREATE TABLE IF NOT EXISTS table_2_11964047_1 (
Pick numeric,
"School/Club Team" text,
Position text,
Player text,
Nationality text,
Round numeric
);
CREATE TABLE IF NOT EXISTS table_1_11129123_1 (
"Audition City" text,
"Golden Tickets" numeric,
"First Audition Venue" text,
Date text,
"Callback Date" text,
... | What nationality is Demetris Nichols? | SELECT Nationality FROM table_2_11964047_1 WHERE "Player" ILIKE '%demetris%nichols%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_11960944_4 (
"High assists" text,
"Location Attendance" text,
"High rebounds" text,
Record text,
Score text,
Team text,
Date text,
"High points" text,
Game numeric
);
CREATE TABLE IF NOT EXISTS table_1_1014319_1 (
Result text,
Total text,
Goodman text,
Horwood text,
"Dan... | How many songs received a 10 from Goodman and were rated by Tonioli? | SELECT COUNT(Tonioli) FROM table_1_1014319_1 WHERE "Goodman" ILIKE '%10%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_11970261_2 (
Preliminaries text,
"Evening Gown" text,
Country text,
Interview text,
Swimsuit text,
Average text
);
CREATE TABLE IF NOT EXISTS table_2_10806592_1 (
"Home team score" text,
Date text,
"Away team" text,
"Home team" text,
Venue text,
"Away team score" text,
Cr... | How much did the away team Melbourne score? | SELECT "Away team score" FROM table_2_10806592_1 WHERE "Away team" ILIKE '%melbourne%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_11662133_3 (
"Ships name" text,
"Date entered service" text,
"Type of Ship" text,
Tonnage numeric,
"Date withdrawn" text
);
CREATE TABLE IF NOT EXISTS table_2_15075508_1 (
Country text,
Skip text,
Lead text,
Second text,
Third text
);
CREATE TABLE IF NOT EXISTS table_1_11236... | Who is the Second when Michel Gribi is the lead? | SELECT SECOND FROM table_2_15075508_1 WHERE "Lead" ILIKE '%michel%gribi%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_1009087_1 (
"Season finale" text,
"TV season" text,
Ranking text,
"Viewers (in millions)" text,
Season text,
Network text,
"Season premiere" text
);
CREATE TABLE IF NOT EXISTS table_2_14225237_1 (
"Current map" text,
Name text,
Area text,
"Albedo feature name" text,
Number... | What is the current map designation of the feature for which derain crater was the namesake? | SELECT "Current map" FROM table_2_14225237_1 WHERE "Namesake" ILIKE '%derain%crater%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_1206114_2 (
"Vendor and type" text,
Comments text,
Implementation text,
"NetFlow Version" text,
Models text
);
CREATE TABLE IF NOT EXISTS table_2_17703223_11 (
Name text,
"Total (kg)" numeric,
"Clean & Jerk" numeric,
Snatch numeric,
Bodyweight numeric
); | What is the total (kg when the bodyweight is more than 57.8, and the clean & jerk is less than 103? | SELECT SUM("Total (kg)") FROM table_2_17703223_11 WHERE "Bodyweight" > '57.8' AND "Clean & Jerk" < '103' | [
"MySQL",
"Oracle",
"PostgreSQL",
"SQL Server",
"SQLite"
] |
CREATE TABLE IF NOT EXISTS table_1_12134383_1 (
"Length of retirement" text,
"Date of death" text,
"Date of inauguration" text,
"End of term" text,
"#" numeric,
Lifespan text,
"Date of birth" text,
"Age at inauguration" text,
President text
);
CREATE TABLE IF NOT EXISTS table_2_17325082_3 (
Partner text,
Opp... | Who were the opponent in the match on a clay surface that had a score of 6–3, 7–6 (11–9)? | SELECT Opponents FROM table_2_17325082_3 WHERE "Surface" ILIKE '%clay%' AND "Score" ILIKE '%6–3,%7–6%(11–9)%' | [
"PostgreSQL"
] |
CREATE TABLE IF NOT EXISTS table_1_12338595_1 (
Interview text,
"Evening Gown" text,
State text,
Preliminaries text,
Average text,
Swimsuit text
);
CREATE TABLE IF NOT EXISTS table_2_10527215_2 (
Circuit text,
Sanctioning text,
"Race Name" text,
Date text,
"City/Location" text
); | What is the date for the race that has a circuit of Milwaukee Mile and the sanctioning of cart? | SELECT Date FROM table_2_10527215_2 WHERE "Circuit" ILIKE '%milwaukee%mile%' AND "Sanctioning" ILIKE '%cart%' | [
"PostgreSQL"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.