Dataset Viewer
Auto-converted to Parquet Duplicate
context
stringlengths
249
1.51k
question
stringlengths
20
171
answer
stringlengths
40
173
dbms
sequencelengths
0
5
CREATE TABLE IF NOT EXISTS table_1_10815352_1 ( Country text, Sport text, Season text, "Average attendance" numeric, "Total attendance" numeric, League text, Games numeric ); CREATE TABLE IF NOT EXISTS table_1_11960610_10 ( "High rebounds" text, Team text, Date text, "Location Attendance" text, Score text, ...
What's the total attendance of the leagues in season of 2010?
SELECT COUNT("Total attendance") FROM table_1_10815352_1 WHERE "Season" ILIKE '%2010%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_11545282_6 ( "No." numeric, Nationality text, "Years for Jazz" text ); CREATE TABLE IF NOT EXISTS table_1_10020178_1 ( Canton text, Name text, "Height (meters)" numeric, Type text, "Crest length (meters)" numeric, "Year of construction" numeric, "Name of the Lake" text ); CR...
What is the round of pick 63?
SELECT Round FROM table_2_17383560_1 WHERE "Pick" = '63'
[ "MySQL", "Oracle", "PostgreSQL", "SQL Server", "SQLite" ]
CREATE TABLE IF NOT EXISTS table_1_10932739_2 ( "Semimajor Axis ( AU )" text, "Radial velocity (m/s)" text, "Planet Type" text, "Orbital Period" text, "Detectable by:" text, Planet text ); CREATE TABLE IF NOT EXISTS table_1_23114705_7 ( "Directed by" text, "Written by" text, "Original air date" text, Title te...
How many thousands of viewers tuned in for "Make Mad the Guilty and Appal the Free"?
SELECT "N.Z. viewers (thousand)" FROM table_1_23114705_7 WHERE "Title" ILIKE '%"Make%Mad%the%Guilty%and%Appal%the%Free"%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_2_14203256_2 ( "Call sign" text, "FCC info" text, "City of license" text, "Frequency MHz" numeric, Class text, "ERP W" numeric ); CREATE TABLE IF NOT EXISTS table_1_1213511_2 ( "Pick #" numeric, "College/junior/club team" text, Position text, Player text, "NHL team" text, Na...
What is the ERP W of a Frequency MHz greater than 89.5 in the city of Washburn, Texas?
SELECT "ERP W" FROM table_2_14203256_2 WHERE "Frequency MHz" > '89.5' AND "City of license" ILIKE '%washburn,%texas%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_2_18707391_1 ( Date text, Competition text, Score text, Venue text, Result text ); CREATE TABLE IF NOT EXISTS table_1_1104312_5 ( "English name" text, "Number of settlements and villages" numeric, "Area in km²" text, "Original name" text, "Population at 2010 Census" numeric );...
what is the date when the venue is stade général seyni kountché , niamey?
SELECT Date FROM table_2_18707391_1 WHERE "Venue" ILIKE '%stade%général%seyni%kountché%,%niamey%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_11621915_1 ( Winner text, "Purse( $ )" numeric, Date text, Tournament text, Score text, "1st Prize( $ )" numeric, Location text ); CREATE TABLE IF NOT EXISTS table_1_15463188_17 ( "School/Club Team" text, Name text, Position text, Season text, "Acquisition via" text, Numb...
How many players with a position are listed for the 2009 season?
SELECT COUNT(POSITION) FROM table_1_15463188_17 WHERE "Season" ILIKE '%2009%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_11677100_5 ( Player text, Position text, Hometown text, "MLB Draft" text, School text ); CREATE TABLE IF NOT EXISTS table_1_11748792_2 ( Series text, Monday text, Thursday text, Friday text, Saturday text, Wednesday text, Sunday text, Tuesday text ); CREATE TABLE IF NOT E...
Who is the home team at Victoria Park on 20 April 1957?
SELECT "Home team" FROM table_2_10774891_1 WHERE "Date" ILIKE '%20%april%1957%' AND "Venue" ILIKE '%victoria%park%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_1231892_4 ( Title text, "Broadcast Order" text, "U.S. Air Date" text, "Number in series" numeric, "Villain/s" text, "Production Code" text ); CREATE TABLE IF NOT EXISTS table_1_12121208_1 ( "Mens doubles" text, "Womens singles" text, "Mixed doubles" text, "Mens singles" text...
What's the earliest year listed for "where are you going to my love" from the album united we stand?
SELECT MIN(YEAR) FROM table_2_16865180_1 WHERE "Album" ILIKE '%united%we%stand%' AND "Single" ILIKE '%"where%are%you%going%to%my%love"%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_11147852_1 ( "Owned since" text, Station text, "City of license/Market" text, "Channel TV ( DT )" text, "Year of affiliation" text ); CREATE TABLE IF NOT EXISTS table_1_1253396_5 ( "Goals Against Avg." text, "Goals Against" numeric, "Overall Record" text, Club text, "Goals F...
Partnering of franco ferreiro had what tournament?
SELECT Tournament FROM table_2_14924949_12 WHERE "Partnering" ILIKE '%franco%ferreiro%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_1245350_1 ( "Quattroporte IV" text, "Max Speed" text, Power text, "Production Period" text, "Engine Capacity" text, "Units Produced" numeric ); CREATE TABLE IF NOT EXISTS table_1_12159115_3 ( "Original air date" text, "U.S. viewers (millions)" text, "Written by" text, "Serie...
What was the record when the New York Knicks played at the Boston Garden?
SELECT Record FROM table_2_13821868_4 WHERE "Location" ILIKE '%boston%garden%' AND "Opponent" ILIKE '%new%york%knicks%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_10015132_14 ( "No." numeric, Position text, Player text, "School/Club Team" text, Nationality text, "Years in Toronto" text ); CREATE TABLE IF NOT EXISTS table_2_15353223_2 ( "Game Site" text, Record text, Date text, Week numeric, Attendance text, Opponent text, "Final Sc...
Which date has 1 as the week?
SELECT Date FROM table_2_15353223_2 WHERE "Week" = '1'
[ "MySQL", "Oracle", "PostgreSQL", "SQL Server", "SQLite" ]
CREATE TABLE IF NOT EXISTS table_1_20170644_5 ( "Pick #" numeric, College text, "CFL Team" text, Position text, Player text ); CREATE TABLE IF NOT EXISTS table_1_11964047_9 ( Visitor text, "#" numeric, Record text, Attendance text, Home text, "Leading scorer" text, Streak text, Date text, Score text ); CR...
How many players were drafted from laval?
SELECT COUNT("CFL Team") FROM table_1_20170644_5 WHERE "College" ILIKE '%Laval%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_11604804_5 ( Founded numeric, Color text, Nickname text, Institution text, Location text, Status text ); CREATE TABLE IF NOT EXISTS table_1_11570261_6 ( Year numeric, "3rd" numeric, "Top 25" numeric, "Wins (Majors)" text, "Cuts made" text, "Earnings ($)" numeric, "Top 10"...
What is the total number of points with less than 49 points in 2008-09, and 46 points in 2006-07?
SELECT COUNT("Total Pts") FROM table_2_18226336_10 WHERE "2008–09 Pts" < '49' AND "2006–07 Pts" ILIKE '%46%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_1012730_1 ( Winnings text, Poles numeric, "Top 10" numeric, Wins numeric, "Avg. Start" text, "Avg. Finish" text, Year numeric, "Team(s)" text, "Top 5" numeric, Starts numeric ); CREATE TABLE IF NOT EXISTS table_1_1140083_2 ( "Pole Position" text, Constructor text, Date te...
Which School/Club Team has a Round larger than 16?
SELECT "School/Club Team" FROM table_2_15093658_1 WHERE "Round" > '16'
[ "MySQL", "Oracle", "PostgreSQL", "SQL Server", "SQLite" ]
CREATE TABLE IF NOT EXISTS table_1_11780179_1 ( Population numeric, "Area (km²)" numeric, "GDP (nominal)" text, "GDP per capita (nominal)" text, Country text ); CREATE TABLE IF NOT EXISTS table_1_1123802_1 ( "Power, continuous" text, "Compression ratio" text, "Supercharger gear ratio" text, "Critical altitude ...
What is the score of game 37?
SELECT Score FROM table_2_17599495_6 WHERE "Game" = '37'
[ "MySQL", "Oracle", "PostgreSQL", "SQL Server", "SQLite" ]
CREATE TABLE IF NOT EXISTS table_1_11963536_11 ( "Location Attendance" text, Team text, Game numeric, "High points" text, Series text, Score text, "High rebounds" text, "High assists" text, Date text ); CREATE TABLE IF NOT EXISTS table_2_12079744_1 ( Elector text, Elevator text, Elevated text, Faction text...
What is the Elector with a Nationality with roman, and an Elevator of urban iv, and an Elevated with 1261, december 17?
SELECT Elector FROM table_2_12079744_1 WHERE "Nationality" ILIKE '%roman%' AND "Elevator" ILIKE '%urban%iv%' AND "Elevated" ILIKE '%1261,%december%17%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_23292220_3 ( "First broadcast" text, Scores text, "Seans team" text, "Daves team" text, Episode text ); CREATE TABLE IF NOT EXISTS table_1_1161065_28 ( "Up/Down" text, Hosted numeric, Lowest numeric, "Last Year" text, Total numeric, Average numeric, Highest numeric, Venue...
In which episode is Sean's team made up of Krishnan Guru-Murthy and Vic Reeves?
SELECT Episode FROM table_1_23292220_3 WHERE "Seans team" ILIKE '%Krishnan%Guru-Murthy%and%Vic%Reeves%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_12027364_1 ( "Womens singles" text, Year numeric, "Mixed doubles" text, "Womens doubles" text, "Mens doubles" text, "Mens singles" text ); CREATE TABLE IF NOT EXISTS table_1_11622562_1 ( "Purse( $ )" numeric, Date text, "1st Prize( $ )" numeric, Score text, Winner text, Lo...
What 2009 has grand slam tournaments of 2008?
SELECT 2009 FROM table_2_15746889_11 WHERE "2008" ILIKE '%grand%slam%tournaments%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_12262182_2 ( Opponent text, Number numeric, Titles text, Defenses numeric, Name text ); CREATE TABLE IF NOT EXISTS table_1_11071897_1 ( "Count Palatine of Saxony" text, "Interregnum began" text, Duration text, "Count Palatine of the Rhine" text, "Interregnum ended" text ); C...
What is the record of the game on week 13?
SELECT Record FROM table_2_14942423_1 WHERE "Week" = '13'
[ "MySQL", "Oracle", "PostgreSQL", "SQL Server", "SQLite" ]
CREATE TABLE IF NOT EXISTS table_1_11621873_1 ( Score text, "1st Prize( $ )" numeric, "Purse( $ )" numeric, Tournament text ); CREATE TABLE IF NOT EXISTS table_2_13113805_2 ( Series text, Location text, Score text, Winner text, Date text );
What is the Winner, when the Location is Clemson, SC, and when the Date is November 17, 2012?
SELECT Winner FROM table_2_13113805_2 WHERE "Location" ILIKE '%clemson,%sc%' AND "Date" ILIKE '%november%17,%2012%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_11658094_1 ( Enrollment numeric, Joined text, Institution text, Type text, Location text, Founded numeric, Nickname text ); CREATE TABLE IF NOT EXISTS table_1_11677100_15 ( Player text, "MLB Draft" text, Position text, Hometown text, School text ); CREATE TABLE IF NOT EXIS...
What's the save when the loss was santiago (2–2)?
SELECT Save FROM table_2_11633481_5 WHERE "Loss" ILIKE '%santiago%(2–2)%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_10023387_1 ( "Doubles W-L" text, "Total W-L" text, "Years Played" text, "Singles W-L" text ); CREATE TABLE IF NOT EXISTS table_1_10527215_3 ( "Winning team" text, "Winning driver" text, "Fastest Lap" text, "Pole Position" text, Name text, Rd numeric, Report text ); CREATE T...
What is Graeme Bonar's lowest pick number?
SELECT MIN("Pick #") FROM table_1_2850912_3 WHERE "Player" ILIKE '%Graeme%Bonar%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_10577579_2 ( Type text, Enrollment numeric, Founded numeric, Institution text, "Mens Nickname" text, Joined text, Location text, "Womens Nickname" text ); CREATE TABLE IF NOT EXISTS table_1_10966926_2 ( Weight numeric, Round numeric, "Player name" text, College text, Choi...
What are the wins for the 7th position?
SELECT Wins FROM table_1_27631002_1 WHERE "Position" ILIKE '%7th%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_11960944_11 ( Team text, "High points" text, Date text, Score text, Game numeric, Series text, "Location Attendance" text, "High rebounds" text, "High assists" text ); CREATE TABLE IF NOT EXISTS table_1_11960944_6 ( "High rebounds" text, Record text, Score text, "Location...
What is the acronym for the English name Northern management and technological institute?
SELECT Acronym FROM table_2_18144241_2 WHERE "Name in English" ILIKE '%northern%management%and%technological%institute%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_10921309_1 ( Export numeric, "Prim. energy" numeric, "CO 2 -emission" text, Electricity numeric, Capita text, Production numeric, "unnamed_0" numeric ); CREATE TABLE IF NOT EXISTS table_1_12086015_7 ( "Year(s)" text, Finals numeric, Nationality text, "Win-Loss" text, Playe...
With the population in 2005 of 572, what is the former name?
SELECT "Former Name" FROM table_1_21302_1 WHERE "Population (2005)" = '572'
[ "MySQL", "Oracle", "PostgreSQL", "SQL Server", "SQLite" ]
CREATE TABLE IF NOT EXISTS table_1_26708105_2 ( "Conserved in Mus Musculus" text, "Detailed Family Information" text, To numeric, From numeric, Anchor numeric, "Matrix Sim" text, Sequence text, Occurrence numeric, Orientation text ); CREATE TABLE IF NOT EXISTS table_1_1140067_2 ( "Fastest Lap" text, Rnd nume...
What is the number listed in from for the Krueppel Like Transcription Factors?
SELECT MIN(FROM) FROM table_1_26708105_2 WHERE "Detailed Family Information" ILIKE '%Krueppel%like%transcription%factors%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_12001616_4 ( "Car Make" text, Laps numeric, Status text, Entrant text, Start numeric, "Car No." numeric, Finish numeric, Driver text, "Car Name" text ); CREATE TABLE IF NOT EXISTS table_1_10664957_2 ( "2nd players choice" text, "Probability 1st player wins" text, "1st play...
Name the population density where population % is 1.1% for slovakia
SELECT "Pop. density People/km 2" FROM table_1_1606824_1 WHERE "Population % of EU" ILIKE '%1.1%%' AND "Member State" ILIKE '%Slovakia%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_11677100_15 ( Position text, Player text, Hometown text, School text, "MLB Draft" text ); CREATE TABLE IF NOT EXISTS table_1_10718631_2 ( "No. in season" numeric, "Directed by" text, "No. in series" numeric, "U.S. viewers (millions)" text, Title text, "Written by" text, "O...
What is the name of a location in Nigeria?
SELECT Name FROM table_2_1499203_1 WHERE "Location" ILIKE '%nigeria%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_12305325_4 ( "Craigs vote" text, "Lens vote" text, Week numeric, Safe text, Eliminated text, "Brunos vote" text, "Arlenes vote" text ); CREATE TABLE IF NOT EXISTS table_2_12472200_7 ( Tournament text, "2007" text, "2010" text, "2011" text, "2009" text, "2008" text ); CREA...
Name the 2011 for 2010 of olympic games
SELECT 2011 FROM table_2_12472200_7 WHERE "2010" ILIKE '%olympic%games%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_10819266_8 ( "Season finale" text, Episodes numeric, "TV season" text, "Season premiere" text, Rank text, "Viewers (in millions)" text, Season numeric, "Time slot (EST)" text ); CREATE TABLE IF NOT EXISTS table_1_10568553_1 ( Location text, "Roads Intersected" text, Notes t...
What tournament was Thomas Enqvist runner up?
SELECT Tournament FROM table_2_11346282_12 WHERE "Runner-up" ILIKE '%thomas%enqvist%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_283203_1 ( Founded numeric, Location text, "Home Venue" text, Club text, Capacity text, "Years Active" text ); CREATE TABLE IF NOT EXISTS table_1_1011906_1 ( "Seat of RCM" text, "Population Canada 2011 Census" numeric, "Land Area" text, "Regional County Municipality (RCM)" t...
How long has the team who owns North Shore Events Centre Vector Arena been active?
SELECT "Years Active" FROM table_1_283203_1 WHERE "Home Venue" ILIKE '%North%Shore%Events%Centre%Vector%Arena%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_12262182_2 ( Opponent text, Titles text, Date text, Name text, Result text, Number numeric, Defenses numeric ); CREATE TABLE IF NOT EXISTS table_1_11960407_4 ( "High assists" text, Score text, "High rebounds" text, "High points" text, Team text, Record text, Game numeric...
Which finish had a win percentage that was more than 0.598 and also had less than 53 wins?
SELECT Finish FROM table_2_15685366_3 WHERE "Win%" > '0.598' AND "Wins" < '53'
[ "MySQL", "Oracle", "PostgreSQL", "SQL Server", "SQLite" ]
CREATE TABLE IF NOT EXISTS table_2_17887548_2 ( "9:00 am" text, "11:00 am" text, "2:00 pm" text, "12:30 pm" text, "7:30 am" text, noon text, "6:30 pm" text, "10:00 am" text, "1:00 pm" text, "3:30 pm" text, "8:00 am" text, "1:30 pm" text, "5:00 pm" text, "3:00 pm" text, "7:00 am" text ); CREATE TABLE IF N...
What is the 5pm show where CBS This Morning is on at 7am?
SELECT "5:00 pm" FROM table_2_17887548_2 WHERE "7:00 am" ILIKE '%cbs%this%morning%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_2_17382411_4 ( Game numeric, Date text, Score text, "High points" text, "Location Attendance" text, Record text, Team text ); CREATE TABLE IF NOT EXISTS table_1_11677100_18 ( Position text, Player text, Hometown text, "MLB Draft" text, School text ); CREATE TABLE IF NOT EXIS...
what is the record when the game is 13?
SELECT Record FROM table_2_17382411_4 WHERE "Game" = '13'
[ "MySQL", "Oracle", "PostgreSQL", "SQL Server", "SQLite" ]
CREATE TABLE IF NOT EXISTS table_1_1130632_1 ( "Original air date" text, "Written by" text, Title text, "Featured character(s)" text, "U.S. viewers (million)" text, "Directed by" text, "No. in series" numeric ); CREATE TABLE IF NOT EXISTS table_2_11240028_5 ( "Portrayed by" text, "Last appearance" text, "Firs...
Which character is portrayed by Elias Koteas?
SELECT CHARACTER FROM table_2_11240028_5 WHERE "Portrayed by" ILIKE '%elias%koteas%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_1140067_2 ( Constructor text, Report text, Location text, "Race Winner" text, Race text, "Pole Position" text, Rnd numeric, "Fastest Lap" text, Date text ); CREATE TABLE IF NOT EXISTS table_2_12095519_1 ( Frequency text, Destination text, "Train No." text, "Train Name" te...
From where did Train No. 15929/30 originate?
SELECT Origin FROM table_2_12095519_1 WHERE "Train No." ILIKE '%15929/30%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_2_17325580_8 ( "High rebounds" text, Date text, Team text, Score text, "Location Attendance" text, Game numeric, Record text, "High points" text, "High assists" text ); CREATE TABLE IF NOT EXISTS table_1_1137718_2 ( "Grand Prix" text, "Pole Position" text, "Rd." numeric, "W...
What was the score of the game when Maurice Williams (7) had the high assists?
SELECT Score FROM table_2_17325580_8 WHERE "High assists" ILIKE '%maurice%williams%(7)%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_2_16395908_2 ( Model text, "Active Pixels" text, "ISO range" text, "Seconds/Frame" numeric, "Lens conversion factor" numeric, Display text, Resolution text, Released numeric, "Dynamic range (f-stops)" numeric, Storage text, "Sensor Size" text ); CREATE TABLE IF NOT EXISTS tab...
Which display has an ISO range of 80-800, and 0.8 Seconds/Frame?
SELECT Display FROM table_2_16395908_2 WHERE "ISO range" ILIKE '%80-800%' AND "Seconds/Frame" = '0.8'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_2_1486444_3 ( Method text, Location text, "Res." text, Round text, Opponent text, Record text, Event text, Time text ); CREATE TABLE IF NOT EXISTS table_1_1147701_4 ( "Model name" text, Comment text, "Torque (Nm@rpm)" text, "Displacement (cm³)" numeric, "Power (ps)" numeric...
Which event had the opponent of shinya aoki and was at 4:56?
SELECT Event FROM table_2_1486444_3 WHERE "Opponent" ILIKE '%shinya%aoki%' AND "Time" ILIKE '%4:56%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_10236830_6 ( Nomination text, "Actors Name" text, Country text, Director text, "Film Name" text ); CREATE TABLE IF NOT EXISTS table_1_2226817_2 ( "No. in series" numeric, Title text, "Original air date" text, "Written by" text, "Directed by" text, "Production code" text ); ...
How many number of series have a production code of 1.11?
SELECT "No. in series" FROM table_1_2226817_2 WHERE "Production code" ILIKE '%1.11%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_11900773_5 ( "First Day Cover Cancellation" text, "Printing Process" text, Illustration text, "Date of Issue" text, Design text, Theme text, Denomination text, "Paper Type" text ); CREATE TABLE IF NOT EXISTS table_1_10399701_2 ( "Class AAAA" text, "Class AAAAA" text, "Schoo...
How many were in attendance during week 12?
SELECT Attendance FROM table_2_16644703_2 WHERE "Week" = '12'
[ "MySQL", "Oracle", "PostgreSQL", "SQL Server", "SQLite" ]
CREATE TABLE IF NOT EXISTS table_1_11734041_17 ( "School/Club Team/Country" text, Position text, Player text, "Height in Ft." text, "Years for Rockets" text, "No.(s)" numeric ); CREATE TABLE IF NOT EXISTS table_1_1067441_1 ( "GDP per cap. (2003, in €)" numeric, Density text, Province text, "Area (km²)" numeri...
Where the fastest lap is Mike Rockenfeller, who is the winning driver?
SELECT "Winning Driver" FROM table_1_26267607_2 WHERE "Fastest Lap" ILIKE '%Mike%Rockenfeller%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_11173827_1 ( "English title" text, Rank numeric, Peak numeric, Finale numeric, "HK viewers" text, Premiere numeric, Average numeric, "Chinese title" text ); CREATE TABLE IF NOT EXISTS table_1_10477224_1 ( Species text, "Sepal length" text, "Sepal width" text, "Petal width"...
Who was the opponent when the result was w24-7?
SELECT Opponent# FROM table_2_17432115_1 WHERE "Result" ILIKE '%w24-7%'
[ "MySQL", "Oracle", "PostgreSQL", "SQL Server" ]
CREATE TABLE IF NOT EXISTS table_1_12283621_6 ( "Serbian League Belgrade" text, "Serbian League Vojvodina" text, "Serbian League West" text, "Serbian League East" text, Season text ); CREATE TABLE IF NOT EXISTS table_1_10566855_1 ( "Runner-up" text, Margin numeric, Premier text, Venue text ); CREATE TABLE IF N...
What was the score of the Kings game attended by more than 18,630 people?
SELECT Score FROM table_2_11821711_4 WHERE "Attendance" > '18,630'
[ "MySQL", "Oracle", "PostgreSQL", "SQL Server", "SQLite" ]
CREATE TABLE IF NOT EXISTS table_1_11753080_2 ( Rating text, "18-49" text, "#" numeric, Episode text, Viewers text, "Air Date" text, Timeslot text, "Weekly Rank" text, Share numeric ); CREATE TABLE IF NOT EXISTS table_2_18860278_2 ( Player text, Year text, "Cross Code Debut" text, Date text, "Int'l Debut"...
What is the Date of the Int'l Debut of 1967?
SELECT Date FROM table_2_18860278_2 WHERE "Year" ILIKE '%1967%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_10748727_1 ( Poles numeric, Season text, Wins numeric, "F/Laps" numeric, Position text, "Team Name" text, Points text, Series text, Podiums numeric, Races numeric ); CREATE TABLE IF NOT EXISTS table_1_12407546_1 ( "#" numeric, Total numeric, Shooting text, Riding text, ...
what is the greatest number of wins by japanese formula three?
SELECT MAX(Wins) FROM table_1_10748727_1 WHERE "Series" ILIKE '%Japanese%Formula%Three%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_11630008_7 ( "Written by" text, "Series #" numeric, "Directed by" text, "Original air date" text, "Production code" numeric, Title text, "Season #" numeric ); CREATE TABLE IF NOT EXISTS table_2_18729407_7 ( "35mm EFL and equivalent aperture" text, Brand text, "Max. aperture"...
What is the brand of the slr magic hyperprime cine 35mm t0.95, which has a focal length of 35mm?
SELECT Brand FROM table_2_18729407_7 WHERE "Focal Length" ILIKE '%35mm%' AND "Product Name" ILIKE '%slr%magic%hyperprime%cine%35mm%t0.95%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_1067441_1 ( "Area (km²)" numeric, Density text, "GDP per cap. (2003, in €)" numeric, "GDP (2003, PPS in mil. € )" numeric, Province text, "Population (2004 estimate)" numeric ); CREATE TABLE IF NOT EXISTS table_1_12226390_2 ( "Directed by" text, "Written by" text, "Production...
Name the assists for 157 games
SELECT Assists FROM table_1_17309500_1 WHERE "Games" = '157'
[ "MySQL", "Oracle", "PostgreSQL", "SQL Server", "SQLite" ]
CREATE TABLE IF NOT EXISTS table_1_10908676_7 ( "No. in season" numeric, "Written by" text, Title text, "Original air date" text, "No. in series" numeric, "Directed by" text ); CREATE TABLE IF NOT EXISTS table_2_17326036_9 ( "High points" text, Date text, Record text, "Location Attendance" text, "High reboun...
What is Date, when High Points is "Danny Granger (32)"?
SELECT Date FROM table_2_17326036_9 WHERE "High points" ILIKE '%danny%granger%(32)%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_1167698_1 ( "Runner-up" text, Champion text, Season text, "Top scorer" text, "Third place" text ); CREATE TABLE IF NOT EXISTS table_1_2840500_2 ( Position text, Player text, Pick numeric, "NHL team" text, "College/junior/club team" text, Nationality text ); CREATE TABLE IF ...
Who was drafted by the Washington Capitals?
SELECT Player FROM table_1_2840500_2 WHERE "NHL team" ILIKE '%Washington%Capitals%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_10312547_1 ( Character text, "1998 Broadway" text, "1999 Broadway" text, "1960 broadcast" text, "1979 Broadway" text, "1955 broadcast" text, "1954 Broadway" text, "1991 Broadway" text, "1990 Broadway" text ); CREATE TABLE IF NOT EXISTS table_2_10944289_4 ( "Host Team" text, ...
What is the final score when the visiting team is the Washington Redskins and the date is September 4?
SELECT "Final Score" FROM table_2_10944289_4 WHERE "Visiting Team" ILIKE '%washington%redskins%' AND "Date" ILIKE '%september%4%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_2_18171018_1 ( "To par" text, Country text, "Year(s) won" text, Player text, Total numeric, Finish text ); CREATE TABLE IF NOT EXISTS table_1_10021158_3 ( "Money list rank" text, "2nd" numeric, "Earnings ($)" numeric, "Cuts made*" numeric, "Top 10s" numeric, "Tournaments pla...
What is Bob Charles' To par?
SELECT "To par" FROM table_2_18171018_1 WHERE "Player" ILIKE '%bob%charles%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_2_14828511_3 ( Result text, "76ers points" numeric, Game numeric, "Opponent points" numeric, Streak text, Record text, Date text, Opponent text ); CREATE TABLE IF NOT EXISTS table_1_11253290_2 ( "Rating/Share (18-49)" text, Share numeric, "Rank (timeslot)" numeric, "#" numer...
Which Date has a Streak of lost 1, and 76ers points smaller than 94, and a Game larger than 13, and a Record of 14-40?
SELECT Date FROM table_2_14828511_3 WHERE "Streak" ILIKE '%lost%1%' AND "76ers points" < '94' AND "Game" > '13' AND "Record" ILIKE '%14-40%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_11240028_1 ( "First appearance" text, "Portrayed by" text, "Last appearance" text, Episodes text, Character text, Duration text ); CREATE TABLE IF NOT EXISTS table_2_16484261_3 ( Tournament text, Surface text, Opponent text, Date text, Score text ); CREATE TABLE IF NOT EXIS...
Who is the opponent for the game played on august 20, 2006?
SELECT Opponent FROM table_2_16484261_3 WHERE "Date" ILIKE '%august%20,%2006%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_2_1585090_1 ( Power text, Frequency text, Identifier text, Class text, RECNet text, "City of license" text ); CREATE TABLE IF NOT EXISTS table_1_10236830_1 ( Country text, "Actors Name" text, Director text, "Film Name" text, Nomination text ); CREATE TABLE IF NOT EXISTS table...
What is Class, when Power is 78 Watts?
SELECT CLASS FROM table_2_1585090_1 WHERE "Power" ILIKE '%78%watts%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_2_12913985_5 ( Score text, Place text, Country text, "To par" text, Player text ); CREATE TABLE IF NOT EXISTS table_1_11642945_1 ( "Original air date" text, "Total No." numeric, Director text, Viewers text, Celebrity text );
What place was Corey Pavin in?
SELECT Place FROM table_2_12913985_5 WHERE "Player" ILIKE '%corey%pavin%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_11803648_17 ( Overall numeric, Player text, Round numeric, Nationality text, Position text, "Club team" text ); CREATE TABLE IF NOT EXISTS table_2_16176416_3 ( Total text, Yellow text, Category text, Frequency text, White text, Black text, Brown text, "difference between...
Which Category in Brown has a Frequency of 0.08%?
SELECT Brown FROM table_2_16176416_3 WHERE "Frequency" ILIKE '%0.08%%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_100518_1 ( Weapon text, Name text, Mantra text, Consort text, "Graha (Planet)" text, Direction text, "Guardian Mātṛkā" text ); CREATE TABLE IF NOT EXISTS table_2_11636955_43 ( "Team (League)" text, "Rd #" numeric, Player text, "Reg GP" numeric, "Pl GP" numeric, "Pick #" n...
What average Reg GP has a pick # larger than 210?
SELECT AVG("Reg GP") FROM table_2_11636955_43 WHERE "Pick #" > '210'
[ "MySQL", "Oracle", "PostgreSQL", "SQL Server", "SQLite" ]
CREATE TABLE IF NOT EXISTS table_2_12280777_2 ( "10:00" text, "7:30" text, "8:30" text, "9:30" text, "7:00" text, "8:00" text, "9:00" text ); CREATE TABLE IF NOT EXISTS table_1_11753080_2 ( Episode text, Share numeric, "Weekly Rank" text, "18-49" text, Timeslot text, "#" numeric, "Air Date" text, Rating ...
What is on at 8:30 when occupation double is on at 7:00 at that channel?
SELECT 8:30 FROM table_2_12280777_2 WHERE "7:00" ILIKE '%occupation%double%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_12028543_3 ( Season text, "Cup FinalDate" text, LosingTeam text, Score text, WinningTeam text, "Cup Final Attendance" numeric, Location text ); CREATE TABLE IF NOT EXISTS table_1_12262182_2 ( Number numeric, Name text, Opponent text, Date text, Titles text, Defenses numer...
What's the category in 1998 with the role/episode of David Duchovny?
SELECT Category FROM table_2_18552926_7 WHERE "Year" = '1998' AND "Role/Episode" ILIKE '%david%duchovny%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_11303072_5 ( "Fielding team" text, Season text, Wicket text, Venue text, Runs text, "Batting partners" text, "Batting team" text ); CREATE TABLE IF NOT EXISTS table_1_1131183_2 ( "Number of Jews (ASARB)" numeric, "Rank ( WJC )" numeric, "Rank (ARDA)" numeric, "Metro area" t...
What Entrant has a 1952 maserati straight-6 engine?
SELECT Entrant FROM table_2_1228353_1 WHERE "Engine" ILIKE '%maserati%straight-6%' AND "Year" = '1952'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_1013129_8 ( "College/junior/club team" text, Nationality text, Player text, "NHL team" text ); CREATE TABLE IF NOT EXISTS table_1_11178271_1 ( "Weekly Rank" numeric, "Air Date" text, Rating text, Share numeric, "18–49 (Rating/Share)" text, Episode text, "#" numeric, "Viewe...
Which round's position is according to official website?
SELECT Round FROM table_2_15185487_1 WHERE "Position" ILIKE '%according%to%official%website%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_2_18596194_1 ( President text, "End of term" text, "Date of birth" text, "Date of inauguration" text, "Length of retirement" text, "Date of death" text, Lifespan text, "Age at inauguration" text ); CREATE TABLE IF NOT EXISTS table_1_11677691_2 ( Player text, Position text, Sc...
What was the date of death entry in the row that has a date of inauguration entry of date of inauguration?
SELECT "Date of death" FROM table_2_18596194_1 WHERE "Date of inauguration" ILIKE '%date%of%inauguration%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_2_15494883_26 ( "Annual change" text, "Total Passengers" numeric, "Capacity in use" text, Rank numeric, Location text ); CREATE TABLE IF NOT EXISTS table_1_11622829_1 ( Date text, "Purse( $ )" numeric, Winner text, "1st Prize( $ )" numeric, Score text, Tournament text ); CREA...
what is the highest amount of passengers when there is a rank of 1?
SELECT MAX("Total Passengers") FROM table_2_15494883_26 WHERE "Rank" = '1'
[ "MySQL", "Oracle", "PostgreSQL", "SQL Server", "SQLite" ]
CREATE TABLE IF NOT EXISTS table_1_10284385_1 ( "Age (years, days)" text, "State served" text, Party text, "Begin Date" text, "End Date" text, "Date of birth" text, Representative text, "House term" text ); CREATE TABLE IF NOT EXISTS table_1_1139087_2 ( Report text, "Winning Driver" text, Constructor text, ...
Who played against away team hereford united?
SELECT "Home team" FROM table_2_17751827_2 WHERE "Away team" ILIKE '%hereford%united%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_11545282_11 ( "Years for Jazz" text, "School/Club Team" text, Position text, "No." text, Nationality text, Player text ); CREATE TABLE IF NOT EXISTS table_1_1140090_6 ( Report text, Constructor text, Circuit text, "Winning driver" text, "Race Name" text ); CREATE TABLE IF N...
When was the game that was held at the Princes Park?
SELECT Date FROM table_2_10747009_15 WHERE "Venue" ILIKE '%princes%park%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_10021158_3 ( "Money list rank" text, "Cuts made*" numeric, "Scoring rank" text, "Tournaments played" numeric, "Scoring average" text, Wins numeric, Year numeric, "2nd" numeric, "Best finish" text, "Top 10s" numeric, "Earnings ($)" numeric ); CREATE TABLE IF NOT EXISTS table...
How many different lead margins were stated in the poll administered on September 11, 2008?
SELECT COUNT("Lead Margin") FROM table_1_17538810_10 WHERE "Dates administered" ILIKE '%September%11,%2008%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_11934032_1 ( Type text, Location text, District text, Registrations text, "Station Number" text, Appliances text ); CREATE TABLE IF NOT EXISTS table_2_13656998_1 ( Class text, Length text, Circuit text, Race text, Date text ); CREATE TABLE IF NOT EXISTS table_1_11391954_3 (...
Which circuit has a length of 45 minutes and is held on August 6?
SELECT Circuit FROM table_2_13656998_1 WHERE "Length" ILIKE '%45%minutes%' AND "Date" ILIKE '%august%6%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_11585313_2 ( number numeric, "date of death†" text, name text, "date of birth" text, "number of caps" numeric, "number of goals" numeric, "date of debut" text ); CREATE TABLE IF NOT EXISTS table_1_11354111_3 ( "Viewers (m)" text, "#" numeric, Episode text, "Air Date" text, ...
When was the game with 13-5-6 record played?
SELECT Date FROM table_1_23308178_5 WHERE "Record" ILIKE '%13-5-6%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_10647639_1 ( Result text, Opponent text, Attendance numeric, Record text, Week numeric, Date text, "Game site" text ); CREATE TABLE IF NOT EXISTS table_1_12232843_1 ( "Mens doubles" text, "Mixed doubles" text, Season numeric, "Womens singles" text, "Mens singles" text, "W...
What is the place with a to par of E and a score of 69-69-72=210?
SELECT Place FROM table_2_17162214_4 WHERE "To par" ILIKE '%e%' AND "Score" ILIKE '%69-69-72=210%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_27734286_1 ( "High assists" text, "High points" text, "Location Attendance" text, Game numeric, Date text, Record text, Score text, "High rebounds" text, Team text ); CREATE TABLE IF NOT EXISTS table_1_1137718_2 ( Constructor text, "Rd." numeric, "Grand Prix" text, "Winni...
What's the location attendance of the @ portland team?
SELECT "Location Attendance" FROM table_1_27734286_1 WHERE "Team" ILIKE '%@%Portland%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_10361453_2 ( Attendance numeric, Record text, Date text, "Vikings points" numeric, Opponents numeric, Opponent text, Result text, Game numeric ); CREATE TABLE IF NOT EXISTS table_1_1143966_1 ( "Pct %" text, Standing text, Season text, Points numeric, Tied numeric, Games ...
What is the name of the title that was directed by Friz Freleng and has a production number of 443?
SELECT Title FROM table_2_18792945_3 WHERE "Director" ILIKE '%friz%freleng%' AND "Production Number" ILIKE '%443%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_29087004_3 ( "Written by" text, "Canada Original Airdate" text, "Directed by" text, "Production Code" numeric, Title text, "Series #" numeric, "United States Original Airdate" text ); CREATE TABLE IF NOT EXISTS table_1_10975034_4 ( Position text, College text, "CFL Team" tex...
Who were the writers of the episodes directed by Greg Sullivan and which first aired on July 21, 2012?
SELECT "Written by" FROM table_1_29087004_3 WHERE "Directed by" ILIKE '%Greg%Sullivan%' AND "United States Original Airdate" ILIKE '%July%21,%2012%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_11658094_3 ( Joined numeric, Location text, Nickname text, Founded numeric, Institution text, Type text, "Current Conference" text, Enrollment numeric, Left numeric ); CREATE TABLE IF NOT EXISTS table_1_10420426_1 ( Podiums numeric, Team text, "F/Laps" numeric, Races nume...
Who won the season for which Brendan Lynch is the runner-up?
SELECT Winner FROM table_1_28962227_1 WHERE "Runners-up" ILIKE '%Brendan%Lynch%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_11951237_2 ( "Written by" text, "Original air date" text, "Musical guest and song" text, "Directed by" text, "Season #" numeric, "Production code" text, Title text, "Series #" numeric ); CREATE TABLE IF NOT EXISTS table_1_17103729_8 ( "Location/Attendance" text, "High reboun...
Name the high rebounds for score of 64-74
SELECT COUNT("High rebounds") FROM table_1_17103729_8 WHERE "Score" ILIKE '%64-74%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_2_15190346_2 ( Result text, "Bowl game" text, Season numeric, Stadium text, Location text, Opponent text, Attendance text ); CREATE TABLE IF NOT EXISTS table_1_10120207_8 ( "Season finale" text, "Season premiere" text, "Timeslot ( ET )" text, Rank text, "Viewers (millions)" ...
What was the Bowl game in San Francisco, CA after 1968?
SELECT "Bowl game" FROM table_2_15190346_2 WHERE "Season" > '1968' AND "Location" ILIKE '%san%francisco,%ca%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_12134383_1 ( "#" numeric, "Age at inauguration" text, "End of term" text, "Date of death" text, "Date of inauguration" text, "Length of retirement" text, Lifespan text, President text, "Date of birth" text ); CREATE TABLE IF NOT EXISTS table_2_1255407_1 ( Material text, "Re...
What is the average relative permeability with a resistivity smaller than 1.12 and a surface resistance relative to copper smaller than 1?
SELECT AVG("Relative permeability") FROM table_2_1255407_1 WHERE "Resistivity (10 −6 ohm-inches)" < '1.12' AND "Surface resistance, Relative to copper" < '1'
[ "MySQL", "Oracle", "PostgreSQL", "SQL Server", "SQLite" ]
CREATE TABLE IF NOT EXISTS table_1_11963536_11 ( Series text, "High rebounds" text, Game numeric, "Location Attendance" text, Score text, "High points" text, Team text, "High assists" text, Date text ); CREATE TABLE IF NOT EXISTS table_1_10908676_7 ( "Written by" text, "Original air date" text, "No. in seri...
Churai has what as the fewest number of electorates?
SELECT MIN("Number of electorates (2009)") FROM table_2_18508640_1 WHERE "Name" ILIKE '%churai%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_1231316_5 ( Athlete text, Nation text, Date text, Location text, "Fastest time (s)" text, "Wind (m/s)" text, Rank numeric ); CREATE TABLE IF NOT EXISTS table_1_1081459_1 ( "No. Built" numeric, Region text, Withdrawn numeric, Builder text, Introduced numeric, "Number Range...
Which seasons were directed by Nelson McCormick?
SELECT Title FROM table_1_17355933_1 WHERE "Directed by" ILIKE '%Nelson%McCormick%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_10120207_8 ( "Season finale" text, "Timeslot ( ET )" text, "Viewers (millions)" text, Rank text, "TV season" text, "Season premiere" text, Season numeric ); CREATE TABLE IF NOT EXISTS table_2_16799784_7 ( Latitude text, "Diameter (km)" numeric, "Year named" numeric, Longitu...
Which Diameter (km) has a Name of alma-merghen planitia, and a Year named smaller than 1997?
SELECT MAX("Diameter (km)") FROM table_2_16799784_7 WHERE "Name" ILIKE '%alma-merghen%planitia%' AND "Year named" < '1997'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_19982699_1 ( "DVD release" text, Maneater text, "Television Premiere" text, "#" numeric, Director text, Producer text, Title text, Writer text ); CREATE TABLE IF NOT EXISTS table_1_11891841_2 ( Source text, EU text, N numeric, Name text, "Transfer window" text, "Transfer...
How many numbers have Charles Salmon as the producer and January 27, 2007 was the television premiere?
SELECT MIN(#) FROM table_1_19982699_1 WHERE "Producer" ILIKE '%Charles%Salmon%' AND "Television Premiere" ILIKE '%January%27,%2007%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_1341884_20 ( Result text, "First elected" numeric, District text, Candidates text, Party text, Incumbent text ); CREATE TABLE IF NOT EXISTS table_1_10470082_6 ( Storyteller text, Villains text, Writer text, "No." numeric, Director text, "US air date" text, Title text, "#...
Who were all the candidates when the first elected year was 1961?
SELECT Candidates FROM table_1_1341884_20 WHERE "First elected" = '1961'
[ "MySQL", "Oracle", "PostgreSQL", "SQL Server", "SQLite" ]
CREATE TABLE IF NOT EXISTS table_1_11677100_16 ( Player text, Hometown text, "MLB Draft" text, School text ); CREATE TABLE IF NOT EXISTS table_1_23963781_2 ( "Athletica career" text, Name text, Minutes numeric, Position text, Appearances numeric, Assists numeric, Nationality text, Goals numeric, Starts num...
who has the 1 goal and the position is fw?
SELECT Name FROM table_1_23963781_2 WHERE "Goals" = '1' AND "Position" ILIKE '%FW%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_1140113_5 ( Date text, Report text, "Race Name" text, Constructor text, Circuit text, "Winning driver" text ); CREATE TABLE IF NOT EXISTS table_1_11734041_15 ( "Height in Ft." text, "School/Club Team/Country" text, Player text, "Years for Rockets" text, "No.(s)" numeric, P...
Which regular season contains playoffs in division finals?
SELECT "Regular Season" FROM table_1_1241987_1 WHERE "Playoffs" ILIKE '%Division%Finals%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_10015132_3 ( "No." numeric, "School/Club Team" text, Position text, Player text, "Years in Toronto" text, Nationality text ); CREATE TABLE IF NOT EXISTS table_1_10960039_6 ( "CFL Team" text, College text, "Pick #" numeric, Position text ); CREATE TABLE IF NOT EXISTS table_1_...
What was the informational CVBS Lines of the encoding with max character of 32 and has B (global) standard?
SELECT "Informational CVBS Lines" FROM table_1_1926240_1 WHERE "Max. Characters (per page row)" = '32' AND "Standard" ILIKE '%B%(global)%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_1212189_1 ( "Power/rpm" text, "Torque (Nm)/rpm" text, Capacity text, "Cylinders/Valves" text, "Model/Engine" text ); CREATE TABLE IF NOT EXISTS table_1_10262329_1 ( "Temp (°C)" text, Pressure text, "Adhesive Type" text, "Time(Sec)" text, "Assembly Type" text ); CREATE TABLE ...
What is the smallest amount sampled of product 蒙牛牌嬰幼兒配方乳粉 ?
SELECT MIN("Samples taken") FROM table_1_18943444_1 WHERE "Product" ILIKE '%蒙牛牌嬰幼兒配方乳粉%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_10592536_8 ( Team text, "Date of appointment" text, "Replaced by" text, "Date of vacancy" text, "Position in table" text, "Outgoing manager" text, "Manner of departure" text ); CREATE TABLE IF NOT EXISTS table_1_1137707_2 ( "Grand Prix" text, "Winning Constructor" text, "Win...
I want to see the result for venue of n and attendance more than 20,664
SELECT RESULT FROM table_2_11163521_5 WHERE "Venue" ILIKE '%n%' AND "Attendance" > '20,664'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_1140105_6 ( Date text, "Race Name" text, Circuit text, "Winning driver" text, Constructor text, Report text ); CREATE TABLE IF NOT EXISTS table_1_1253396_5 ( "Goals For" numeric, Club text, "Overall Record" text, "Goals For Avg." text, "Goals Against" numeric, "Goals Again...
Which leader born on December 17, 1874 started their term before 1984?
SELECT Name FROM table_2_149536_3 WHERE "Term start" < '1984' AND "Date of Birth" ILIKE '%december%17,%1874%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_1067134_1 ( "# of Ep" numeric, "Region 2" text, "DVD Name" text, "Region 1" text, "Region 4" text ); CREATE TABLE IF NOT EXISTS table_1_28819393_1 ( Candidates numeric, "Total votes" numeric, "Average votes per candidate" numeric, "Saved Deposits" numeric, Year text, "% of ...
What was the percentage of total votes in 1997?
SELECT "% of total vote" FROM table_1_28819393_1 WHERE "Year" ILIKE '%1997%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_1255110_7 ( "Goals Against" numeric, Club text, Wins numeric, "No." numeric, Player text, "Games Played" numeric, "GA Average" text, Loses numeric, Minutes numeric ); CREATE TABLE IF NOT EXISTS table_1_27734286_6 ( "High rebounds" text, Team text, "Location Attendance" tex...
List records for game 29.
SELECT Record FROM table_1_27734286_6 WHERE "Game" = '29'
[ "MySQL", "Oracle", "PostgreSQL", "SQL Server", "SQLite" ]
CREATE TABLE IF NOT EXISTS table_2_18624792_5 ( Name text, Time text, Nationality text, Lane numeric, Rank numeric ); CREATE TABLE IF NOT EXISTS table_1_12444503_1 ( Winner text, Score text, "Runner-up" text, "lost to eventual runner-up" text, "lost to eventual winner" text, Season text );
What was lane 4's time?
SELECT TIME FROM table_2_18624792_5 WHERE "Lane" = '4'
[ "MySQL", "Oracle", "PostgreSQL", "SQL Server", "SQLite" ]
CREATE TABLE IF NOT EXISTS table_2_14971788_1 ( "Game Site" text, Opponent text, Attendance numeric, Week numeric, Result text, Record text, Date text ); CREATE TABLE IF NOT EXISTS table_1_11964154_7 ( "High assists" text, Score text, "Location Attendance" text, Game numeric, "High points" text, "High rebo...
How many attendances had the Detroit Lions as opponents?
SELECT SUM(Attendance) FROM table_2_14971788_1 WHERE "Opponent" ILIKE '%detroit%lions%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_2_1725416_2 ( Location text, Opponent text, Record text, "Res." text, Event text, Method text, Round numeric, Time text ); CREATE TABLE IF NOT EXISTS table_1_1137718_2 ( Report text, Date text, "Grand Prix" text, "Rd." numeric, "Fastest Lap" text, "Pole Position" text, "W...
Which Opponent has a Time of 4:51?
SELECT Opponent FROM table_2_1725416_2 WHERE "Time" ILIKE '%4:51%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_11066073_1 ( "Registration No." text, "Pilot car No." numeric, "Serial No." text, "Engine No." numeric, Colour text ); CREATE TABLE IF NOT EXISTS table_1_23316034_16 ( Average text, "Not Out" numeric, Innings numeric, Rank numeric, Player text, Matches numeric, Runs numeri...
If the innings is 68, what is the average?
SELECT Average FROM table_1_23316034_16 WHERE "Innings" = '68'
[ "MySQL", "Oracle", "PostgreSQL", "SQL Server", "SQLite" ]
CREATE TABLE IF NOT EXISTS table_1_11545282_4 ( Player text, Nationality text, "Years for Jazz" text, "School/Club Team" text, Position text, "No." numeric ); CREATE TABLE IF NOT EXISTS table_1_11677691_12 ( Position text, College text, Hometown text, School text ); CREATE TABLE IF NOT EXISTS table_2_12694869...
What Region is the MHCL-20004 Catalog?
SELECT Region FROM table_2_12694869_2 WHERE "Catalog" ILIKE '%mhcl-20004%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_12584173_1 ( "Population (Warwick)" numeric, Year numeric, "Population (Stanthorpe)" numeric, "Population (Allora)" numeric, "Population (Rosenthal)" numeric, "Population (Region total)" numeric, "Population (Glengallan)" numeric ); CREATE TABLE IF NOT EXISTS table_1_10120207_8...
who are the awardees when the name of award is best agricultural film?
SELECT Awardee(s) FROM table_1_25926120_7 WHERE "Name of Award" ILIKE '%Best%Agricultural%Film%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_11691212_2 ( Viewers text, "Pit reporters" text, "Color commentator(s)" text, "Lap-by-lap" text, Year numeric, Network text, Ratings text, Host text ); CREATE TABLE IF NOT EXISTS table_1_10470082_5 ( Villains text, Writer text, Director text, Title text, "No." numeric, "...
How many scores did Goodman give to "samba / young hearts run free", which was in second place?
SELECT COUNT(Goodman) FROM table_1_1014319_1 WHERE "Result" ILIKE '%Second%place%' AND "Dance/song" ILIKE '%Samba%/%Young%Hearts%Run%Free%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_1_11254821_2 ( "Points awarded (Gold)" numeric, "Finishing position" text, "Points awarded (Silver)" numeric, "Points awarded (Platinum)" numeric, "Points awarded (Satellite)" numeric ); CREATE TABLE IF NOT EXISTS table_1_1112176_1 ( "Other Goals" numeric, "Total Apps (Sub)" text...
Name the high points for 21-45 record
SELECT COUNT("High Points") FROM table_1_22871239_9 WHERE "Record" ILIKE '%21-45%'
[ "PostgreSQL" ]
CREATE TABLE IF NOT EXISTS table_2_15186827_1 ( Venue text, Result text, Tournament text, Year numeric, Extra text ); CREATE TABLE IF NOT EXISTS table_1_11959669_6 ( "High assists" text, Record text, Team text, "High rebounds" text, "Location Attendance" text, Date text, Score text, Game numeric, "High po...
What result has a year after 2002?
SELECT RESULT FROM table_2_15186827_1 WHERE "Year" > '2002'
[ "MySQL", "Oracle", "PostgreSQL", "SQL Server", "SQLite" ]
CREATE TABLE IF NOT EXISTS table_1_11621915_1 ( "Purse( $ )" numeric, "1st Prize( $ )" numeric, Winner text, Location text, Score text, Tournament text, Date text ); CREATE TABLE IF NOT EXISTS table_2_1236138_1 ( Laps numeric, Finish text, Rank text, Qual text, Start text ); CREATE TABLE IF NOT EXISTS table...
What is the sum of all laps with rank 3?
SELECT COUNT(Laps) FROM table_2_1236138_1 WHERE "Rank" ILIKE '%3%'
[ "PostgreSQL" ]
End of preview. Expand in Data Studio
README.md exists but content is empty.
Downloads last month
5