question
stringlengths 19
162
| table_info
stringlengths 39
951
| sql_query
stringlengths 24
181
|
---|---|---|
What's the status for an against below 22 with an opposing team of Australia? | CREATE TABLE table_name_86 (
status VARCHAR,
against VARCHAR,
opposing_teams VARCHAR
) | SELECT status FROM table_name_86 WHERE CAST(against AS INTEGER) < 22 AND opposing_teams LIKE '%australia%' |
In what year was the republican incumbent from Kentucky 2 district first elected? | CREATE TABLE table_name_37 (
first_elected INTEGER,
party VARCHAR,
district VARCHAR
) | SELECT SUM(first_elected) FROM table_name_37 WHERE party LIKE "%republican%" AND district LIKE "%kentucky 2%" |
Who is the player when the economy is 6.14? | CREATE TABLE table_30797 (
"Player" text,
"Matches" real,
"Overs" text,
"Wickets" real,
"Average" text,
"Economy" text,
"BBI" text,
"4wi" real
) | SELECT "Player" FROM table_30797 WHERE "Economy" LIKE '%6.14%' |
What is every surface against Sweden? | CREATE TABLE table_24074130_5 (
surface VARCHAR,
against VARCHAR
) | SELECT surface FROM table_24074130_5 WHERE against LIKE '%sweden%' |
When they played San Lorenzo, what was the score of the second leg? | CREATE TABLE table_17282875_3 (
team__number1 VARCHAR
) | SELECT 2 AS nd_leg FROM table_17282875_3 WHERE team__number1 LIKE "%san lorenzo%" |
What are the highest points with 2012 as the year? | CREATE TABLE table_63408 (
"Year" text,
"Matches" real,
"Tries" real,
"Goals" real,
"Points" real
) | SELECT MAX("Points") FROM table_63408 WHERE "Year" LIKE '%2012%' |
When were the odds of winner 16.66? | CREATE TABLE table_21676617_1 (
year VARCHAR,
odds_of_winner VARCHAR
) | SELECT year FROM table_21676617_1 WHERE odds_of_winner LIKE "%16.66%" |
Who are all the runner ups when the score is 9.12 (66) 5.6 (36)? | CREATE TABLE table_1139835_9 (
runner_up VARCHAR,
score VARCHAR
) | SELECT runner_up FROM table_1139835_9 WHERE score LIKE "%9.12 (66) – 5.6 (36)%" |
What record was set when the result/game was equal to 9 games (28,595 avg.) | CREATE TABLE table_24361 (
"Type of Record" text,
"Attendance" real,
"Date/Year" text,
"Stadium" text,
"Result/Games" text
) | SELECT "Type of Record" FROM table_24361 WHERE "Result/Games" LIKE '%9 games (28,595 avg.)%' |
what is the lowest played when the position is more than 9? | CREATE TABLE table_name_76 (
played INTEGER,
position INTEGER
) | SELECT MIN(played) FROM table_name_76 WHERE position > 9 |
significant systemic illness ( including uncontrolled hypertension ) or organ failure. | CREATE TABLE table_train_132 (
"id" int,
"loss_of_consciousness" bool,
"deep_venous_thrombosis" bool,
"unstable_angina" bool,
"thromboembolic_vascular_disease" bool,
"head_injury" bool,
"stroke" bool,
"cerebrovascular_disease" bool,
"mental_retardation" bool,
"psychiatric_disease" bool,
"modified_hachinski_ischemia_scale" int,
"systemic_illness" bool,
"mental_illness" bool,
"hydrocephalus" bool,
"mri" bool,
"psychotic_disorder" bool,
"pulmonary_embolus" bool,
"arrythmias" bool,
"lacunar_infarcts" bool,
"bipolar_disorder" bool,
"cva" bool,
"cardiac_disease" bool,
"brain_damage" bool,
"neurological_disease" bool,
"seizure_disorder" bool,
"vascular_dementia" bool,
"organ_failure" bool,
"parkinson_disease" bool,
"lewy_body_disease" bool,
"hypertension" bool,
"NOUSE" float
) | SELECT * FROM table_train_132 WHERE systemic_illness = 1 OR hypertension = 1 OR organ_failure = 1 |
From which region is the album with release date of 19 June 2007? | CREATE TABLE table_name_7 (
region VARCHAR,
date VARCHAR
) | SELECT region FROM table_name_7 WHERE date LIKE "%19 june 2007%" |
What package/option has sky arte hd as the television service? | CREATE TABLE table_name_51 (
package_option VARCHAR,
television_service VARCHAR
) | SELECT package_option FROM table_name_51 WHERE television_service LIKE "%sky arte hd%" |
How many height entries are there for players from bayside high school? | CREATE TABLE table_22496374_1 (
height VARCHAR,
high_school VARCHAR
) | SELECT COUNT(height) FROM table_22496374_1 WHERE high_school LIKE "%bayside%" |
What is the Base Fare in the senior/disabled category? | CREATE TABLE table_name_18 (
base_fares VARCHAR,
fare_categories VARCHAR
) | SELECT base_fares FROM table_name_18 WHERE fare_categories LIKE "%senior/disabled%" |
what's the first elected with opponent being ralph regula (r) 75.0% j. michael finn (d) 25.0% | CREATE TABLE table_693 (
"District" text,
"Incumbent" text,
"Party" text,
"First elected" real,
"Status" text,
"Opponent" text
) | SELECT "First elected" FROM table_693 WHERE "Opponent" LIKE '%ralph regula (r) 75.0% j. michael finn (d) 25.0%' |
What is the order year of obi builder and 05.505 model that is 30 feet long? | CREATE TABLE table_name_89 (
order_year VARCHAR,
model VARCHAR,
builder VARCHAR,
length__ft_ VARCHAR
) | SELECT order_year FROM table_name_89 WHERE builder LIKE "%obi%" AND length__ft_ = "30" AND model LIKE "%05.505%" |
What is Southern Illinois University Edwardsville's affiliation? | CREATE TABLE table_77489 (
"Institution" text,
"Location" text,
"Founded" real,
"Affiliation" text,
"Enrollment" real,
"Nickname" text
) | SELECT "Affiliation" FROM table_77489 WHERE "Institution" LIKE '%southern illinois university edwardsville%' |
In which city is the network latv licensed? | CREATE TABLE table_35510 (
"Dish" text,
"Callsign" text,
"Network" text,
"Resolution" text,
"City of License" text,
"Official Website" text
) | SELECT "City of License" FROM table_35510 WHERE "Network" LIKE '%latv%' |
stae the least number of wins in 1986 | CREATE TABLE table_19864214_3 (
wins INTEGER,
seasons VARCHAR
) | SELECT MIN(wins) FROM table_19864214_3 WHERE seasons LIKE "%1986%" |
What is Away Team, when Home Team is 'Sheffield Wednesday'? | CREATE TABLE table_51089 (
"Tie no" text,
"Home team" text,
"Score" text,
"Away team" text,
"Date" text
) | SELECT "Away team" FROM table_51089 WHERE "Home team" LIKE '%sheffield wednesday%' |
When the Altrincham was the home team what was the tie no? | CREATE TABLE table_name_52 (
tie_no VARCHAR,
home_team VARCHAR
) | SELECT tie_no FROM table_name_52 WHERE home_team LIKE "%altrincham%" |
What is Years Exp, when Height is '7-2'? | CREATE TABLE table_name_94 (
years_exp VARCHAR,
height VARCHAR
) | SELECT years_exp FROM table_name_94 WHERE height LIKE "%7-2%" |
What is Jockey, when Horse is 'Eight Belles'? | CREATE TABLE table_name_74 (
jockey VARCHAR,
horse VARCHAR
) | SELECT jockey FROM table_name_74 WHERE horse LIKE "%eight belles%" |
What are the dates of leaving office for politician from the province of Seville? | CREATE TABLE table_26362472_1 (
left_office VARCHAR,
province VARCHAR
) | SELECT left_office FROM table_26362472_1 WHERE province LIKE "%seville%" |
What is the round of 32 if the round of 16 is drenovak ( srb ) w 20 11? | CREATE TABLE table_27294107_11 (
round_of_32 VARCHAR,
round_of_16 VARCHAR
) | SELECT round_of_32 FROM table_27294107_11 WHERE round_of_16 LIKE "%drenovak ( srb ) w 20–11%" |
Where does St Kilda play? | CREATE TABLE table_name_48 (
venue VARCHAR,
home_team VARCHAR
) | SELECT venue FROM table_name_48 WHERE home_team LIKE "%st kilda%" |
What was the innings when caught was 20? | CREATE TABLE table_24039597_26 (
innings VARCHAR,
caught VARCHAR
) | SELECT innings FROM table_24039597_26 WHERE CAST(caught AS INTEGER) = 20 |
WHich Category in White has a Amerindian of 4,87%? | CREATE TABLE table_name_96 (
white VARCHAR,
amerindian VARCHAR
) | SELECT white FROM table_name_96 WHERE amerindian LIKE "%4,87%%" |
What are the members listed with the sorority classification | CREATE TABLE table_10054296_1 (
member VARCHAR,
classification VARCHAR
) | SELECT member FROM table_10054296_1 WHERE classification LIKE "%sorority%" |
WHAT'S THE TIE NUMBER WITH AN AWAY TEAM OF WREXHAM? | CREATE TABLE table_name_52 (
tie_no VARCHAR,
away_team VARCHAR
) | SELECT tie_no FROM table_name_52 WHERE away_team LIKE "%wrexham%" |
What is the US A.C. in 1974? | CREATE TABLE table_41035 (
"Year" real,
"Song" text,
"Canada Singles" text,
"US Hot 100" text,
"US A.C." text
) | SELECT "US A.C." FROM table_41035 WHERE "Year" = 1974 |
What are the average points after 1992? | CREATE TABLE table_68924 (
"Year" real,
"Entrant" text,
"Chassis" text,
"Engine" text,
"Points" real
) | SELECT AVG("Points") FROM table_68924 WHERE "Year" > 1992 |
What is the rank for the total less than 1? | CREATE TABLE table_name_34 (
rank INTEGER,
total INTEGER
) | SELECT AVG(rank) FROM table_name_34 WHERE total < 1 |
How many titles did Trupti Murgunde claim? | CREATE TABLE table_461 (
"Season" real,
"Mens singles" text,
"Womens singles" text,
"Mens doubles" text,
"Womens doubles" text,
"Mixed doubles" text
) | SELECT "Womens doubles" FROM table_461 WHERE "Womens singles" LIKE '%trupti murgunde%' |
What is the Home team when the Attendance was 1920? | CREATE TABLE table_name_20 (
home VARCHAR,
attendance VARCHAR
) | SELECT home FROM table_name_20 WHERE attendance = '1920' |
The match that was held at Club Med Sandpiper has what method? | CREATE TABLE table_name_54 (
method VARCHAR,
venue VARCHAR
) | SELECT method FROM table_name_54 WHERE venue LIKE "%club med sandpiper%" |
What is the main color(s) for marlboro? | CREATE TABLE table_name_36 (
main_colour_s_ VARCHAR,
main_sponsor_s_ VARCHAR
) | SELECT main_colour_s_ FROM table_name_36 WHERE main_sponsor_s_ LIKE '%marlboro%' |
which Oberliga Baden-W rttemberg has a Season of 1991-92? | CREATE TABLE table_75233 (
"Season" text,
"Oberliga Bayern" text,
"Oberliga Hessen" text,
"Oberliga Baden-W\u00fcrttemberg" text,
"Oberliga S\u00fcdwest" text
) | SELECT "Oberliga Baden-W\u00fcrttemberg" FROM table_75233 WHERE "Season" LIKE '%1991-92%' |
How many points did the opponents score on the game where Sooners' record was 16-5? | CREATE TABLE table_25553 (
"Date" text,
"Location" text,
"Opponent" text,
"Sooners Points" real,
"Opp. Points" real,
"Record" text
) | SELECT MAX("Opp. Points") FROM table_25553 WHERE "Record" LIKE '%16-5%' |
What date had the home team as brentford? | CREATE TABLE table_name_30 (
date VARCHAR,
home_team VARCHAR
) | SELECT date FROM table_name_30 WHERE home_team LIKE "%brentford%" |
Name the total number of segment c for pressure cookers | CREATE TABLE table_15187735_13 (
segment_c VARCHAR,
segment_a VARCHAR
) | SELECT COUNT(segment_c) FROM table_15187735_13 WHERE segment_a LIKE "%pressure cookers%" |
what was the earliest winner ? | CREATE TABLE table_204_655 (
id number,
"year" number,
"winner" text,
"album" text,
"other finalists" text
) | SELECT "winner" FROM table_204_655 ORDER BY "year" LIMIT 1 |
Where is the audition city when the venue is upi convention center? | CREATE TABLE table_28793672_1 (
audition_city VARCHAR,
venue VARCHAR
) | SELECT audition_city FROM table_28793672_1 WHERE venue LIKE '%upi convention center%' |
Who is the lead for the team from Saskatoon, Saskatchewan? | CREATE TABLE table_62757 (
"Team" text,
"Country" text,
"Home" text,
"Skip" text,
"Third" text,
"Second" text,
"Lead" text
) | SELECT "Lead" FROM table_62757 WHERE "Home" LIKE '%saskatoon, saskatchewan%' |
Which Time/Retired has a Grid of 2? | CREATE TABLE table_58264 (
"Driver" text,
"Constructor" text,
"Laps" real,
"Time/Retired" text,
"Grid" real
) | SELECT "Time/Retired" FROM table_58264 WHERE "Grid" = 2 |
Name the year with percentage of 9.66% | CREATE TABLE table_name_55 (
year VARCHAR,
percentage VARCHAR
) | SELECT year FROM table_name_55 WHERE percentage LIKE "%9.66%" |
What is the results from 2003 that has a 2012 result of 1r and a 2004 result of 2r and from the Australian Open? | CREATE TABLE table_41426 (
"Tournament" text,
"2003" text,
"2004" text,
"2012" text,
"2013" text
) | SELECT "2003" FROM table_41426 WHERE "2012" LIKE '%1r%' AND "2004" LIKE '%2r%' AND "Tournament" LIKE '%australian open%' |
What is the modern equivalent of the former kingdom 'silla' with the hanja ? | CREATE TABLE table_160510_1 (
modern_equivalent VARCHAR,
former_kingdom VARCHAR,
hanja VARCHAR
) | SELECT COUNT(modern_equivalent) FROM table_160510_1 WHERE former_kingdom LIKE "%silla%" AND hanja LIKE "%尙州%" |
Which Frequency has a Facility ID of 13598? | CREATE TABLE table_name_33 (
frequency VARCHAR,
facility_id VARCHAR
) | SELECT frequency FROM table_name_33 WHERE facility_id LIKE '%13598%' |
What is the lowest played number when goals for is 47, and wins is smaller than 14? | CREATE TABLE table_name_48 (
played INTEGER,
goals_for VARCHAR,
wins VARCHAR
) | SELECT MIN(played) FROM table_name_48 WHERE goals_for LIKE '%47%' AND wins < '14' |
What date was the record 20 16? | CREATE TABLE table_name_38 (
date VARCHAR,
record VARCHAR
) | SELECT date FROM table_name_38 WHERE record LIKE "%20–16%" |
What's Jorge Santana's elimination? | CREATE TABLE table_name_71 (
elimination VARCHAR,
wrestler VARCHAR
) | SELECT elimination FROM table_name_71 WHERE wrestler LIKE "%jorge santana%" |
What was the latest year that a Bardahl entrant had a Kurtis Kraft 500c chassis with no more than 0 points? | CREATE TABLE table_15040 (
"Year" real,
"Entrant" text,
"Chassis" text,
"Engine" text,
"Points" real
) | SELECT MAX("Year") FROM table_15040 WHERE "Chassis" LIKE '%kurtis kraft 500c%' AND "Entrant" LIKE '%bardahl%' AND "Points" < 0 |
What is the rank (csa) for the percentage change (1990-2000) was a034 +8.71%? | CREATE TABLE table_12720275_1 (
rank__csa_ VARCHAR,
percent_change__1990_2000_ VARCHAR
) | SELECT rank__csa_ FROM table_12720275_1 WHERE percent_change__1990_2000_ LIKE '%a034 +8.71%%' |
who are the candidates where the district is florida 8? | CREATE TABLE table_18340 (
"District" text,
"Incumbent" text,
"Party" text,
"First elected" real,
"Result" text,
"Candidates" text
) | SELECT "Candidates" FROM table_18340 WHERE "District" LIKE '%florida 8%' |
Which college did Dean Kirkland go to | CREATE TABLE table_15353123_1 (
college VARCHAR,
player VARCHAR
) | SELECT college FROM table_15353123_1 WHERE player LIKE "%dean kirkland%" |
The player who had 145 yards had how many touchdowns? | CREATE TABLE table_20938922_2 (
touchdowns VARCHAR,
yards VARCHAR
) | SELECT COUNT(touchdowns) FROM table_20938922_2 WHERE yards LIKE '%145%' |
What was the result when incumbent John R. Tyson was elected? | CREATE TABLE table_18720 (
"District" text,
"Incumbent" text,
"Party" text,
"First elected" real,
"Result" text,
"Candidates" text
) | SELECT "Result" FROM table_18720 WHERE "Incumbent" LIKE '%john r. tyson%' |
what is the mission when the location is rome? | CREATE TABLE table_name_13 (
mission VARCHAR,
location VARCHAR
) | SELECT mission FROM table_name_13 WHERE location LIKE "%rome%" |
If the national trophy/rookie is Simone Iaquinta, what is the season total number? | CREATE TABLE table_25563779_4 (
season VARCHAR,
national_trophy_rookie VARCHAR
) | SELECT COUNT(season) FROM table_25563779_4 WHERE national_trophy_rookie LIKE "%simone iaquinta%" |
What is the famous for where the finished is 5th? | CREATE TABLE table_14345690_5 (
famous_for VARCHAR,
finished VARCHAR
) | SELECT famous_for FROM table_14345690_5 WHERE finished LIKE "%5th%" |
Tell me the portfolio of minister of carlo giovanardi | CREATE TABLE table_4312 (
"Portfolio" text,
"Minister" text,
"Took office" text,
"Left office" text,
"Party" text
) | SELECT "Portfolio" FROM table_4312 WHERE "Minister" LIKE '%carlo giovanardi%' |
What Category has a Result of Nominated, Year of 2006, and the Title of Pierrepoint? | CREATE TABLE table_name_64 (
category VARCHAR,
title VARCHAR,
result VARCHAR,
year VARCHAR
) | SELECT category FROM table_name_64 WHERE result LIKE "%nominated%" AND year LIKE "%2006%" AND title LIKE "%pierrepoint%" |
Which play was done by the Radu Stanca National Theatre company? | CREATE TABLE table_name_47 (
play VARCHAR,
company VARCHAR
) | SELECT play FROM table_name_47 WHERE company LIKE "%radu stanca national theatre%" |
What is the Nationality that shows 4 as the ranking? | CREATE TABLE table_name_57 (
nationality VARCHAR,
ranking VARCHAR
) | SELECT nationality FROM table_name_57 WHERE ranking LIKE '%4%' |
What day did they play in week 6? | CREATE TABLE table_44794 (
"Week" real,
"Date" text,
"Opponent" text,
"Result" text,
"Attendance" text
) | SELECT "Date" FROM table_44794 WHERE "Week" = 6 |
Which label had a CD format and a date of June 25, 2002? | CREATE TABLE table_name_38 (
label VARCHAR,
format VARCHAR,
date VARCHAR
) | SELECT label FROM table_name_38 WHERE format LIKE "%cd%" AND date LIKE "%june 25, 2002%" |
What is the Weight for the Name Billy Miller Category:Articles with hcards? | CREATE TABLE table_33383 (
"Name" text,
"Pos." text,
"Height" text,
"Weight" text,
"2012 club" text
) | SELECT "Weight" FROM table_33383 WHERE "Name" LIKE '%billy miller category:articles with hcards%' |
What is the Draw for the team of tramwajarz d ? | CREATE TABLE table_41180 (
"Team" text,
"Match" text,
"Points" text,
"Draw" text,
"Lost" text
) | SELECT "Draw" FROM table_41180 WHERE "Team" LIKE '%tramwajarz łódź%' |
What is the 2nd leg of team 2 Far rabat? | CREATE TABLE table_name_92 (
team_2 VARCHAR
) | SELECT 2 AS nd_leg FROM table_name_92 WHERE team_2 LIKE "%far rabat%" |
how many times was tom boonen listed as the rider ? | CREATE TABLE table_204_4 (
id number,
"date" text,
"race" text,
"competition" text,
"rider" text,
"country" text,
"location" text
) | SELECT COUNT(*) FROM table_204_4 WHERE "rider" LIKE '%tom boonen%' |
What is the name of the episode with 418 as the production code? | CREATE TABLE table_2818164_5 (
title VARCHAR,
production_code VARCHAR
) | SELECT title FROM table_2818164_5 WHERE production_code LIKE '%418%' |
What is the smallest number of assists with 70 Pims and less than 19 goals? | CREATE TABLE table_name_71 (
assists INTEGER,
pims VARCHAR,
goals VARCHAR
) | SELECT MIN(assists) FROM table_name_71 WHERE pims LIKE '%70%' AND goals < '19' |
What is the highest year that a candidate was first elected? | CREATE TABLE table_1341738_11 (
first_elected INTEGER
) | SELECT MAX(first_elected) FROM table_1341738_11 |
With the Winter Olympics was 1960, what was the country? | CREATE TABLE table_name_53 (
country VARCHAR,
winter_olympics VARCHAR
) | SELECT country FROM table_name_53 WHERE winter_olympics LIKE "%1960%" |
When colgate is the team how many times did they place fourth? | CREATE TABLE table_1571238_2 (
fourth_place VARCHAR,
team VARCHAR
) | SELECT COUNT(fourth_place) FROM table_1571238_2 WHERE team LIKE "%colgate%" |
Which score has a Decision of johnson? | CREATE TABLE table_56681 (
"Date" text,
"Visitor" text,
"Score" text,
"Home" text,
"Decision" text,
"Attendance" real,
"Record" text
) | SELECT "Score" FROM table_56681 WHERE "Decision" LIKE '%johnson%' |
What is the division record for Woodbridge? | CREATE TABLE table_70187 (
"School" text,
"Team" text,
"Division Record" text,
"Overall Record" text,
"Season Outcome" text
) | SELECT "Division Record" FROM table_70187 WHERE "School" LIKE '%woodbridge%' |
Name the number of area km 2 for population density is 87 | CREATE TABLE table_1606824_1 (
area_km_2 VARCHAR,
pop_density_people_km_2 VARCHAR
) | SELECT COUNT(area_km_2) FROM table_1606824_1 WHERE pop_density_people_km_2 LIKE "%87%" |
What was the percentage of firefox was chrome was 23.90% | CREATE TABLE table_65407 (
"Date" text,
"Internet Explorer" text,
"Chrome" text,
"Firefox" text,
"Safari" text
) | SELECT "Firefox" FROM table_65407 WHERE "Chrome" LIKE '%23.90%' |
What is the 2nd leg score for the match with a team 2 of Werder Bremen? | CREATE TABLE table_48623 (
"Team 1" text,
"Agg." text,
"Team 2" text,
"1st leg" text,
"2nd leg" text
) | SELECT "2nd leg" FROM table_48623 WHERE "Team 2" LIKE '%werder bremen%' |
What is the time/retired for grid 5? | CREATE TABLE table_57657 (
"Driver" text,
"Constructor" text,
"Laps" real,
"Time/Retired" text,
"Grid" real
) | SELECT "Time/Retired" FROM table_57657 WHERE "Grid" = 5 |
Which crystal structures has a Tc(K) of 110 and the number of Cu-O planes in the unit cell is 3? | CREATE TABLE table_name_67 (
crystal_structure VARCHAR,
no_of_cu_o_planes_in_unit_cell VARCHAR,
t_c__k_ VARCHAR
) | SELECT crystal_structure FROM table_name_67 WHERE no_of_cu_o_planes_in_unit_cell LIKE '%3%' AND t_c__k_ LIKE '%110%' |
What is the total number of weeks that the Giants played against the Dallas Cowboys? | CREATE TABLE table_name_25 (
week VARCHAR,
opponent VARCHAR
) | SELECT COUNT(week) FROM table_name_25 WHERE opponent LIKE "%dallas cowboys%" |
What artist was released in 2005? | CREATE TABLE table_name_71 (
artist VARCHAR,
year VARCHAR
) | SELECT artist FROM table_name_71 WHERE year LIKE '%2005%' |
What is the number of tries for the player who is larger than 16? | CREATE TABLE table_name_81 (
tries INTEGER,
played INTEGER
) | SELECT SUM(tries) FROM table_name_81 WHERE played > 16 |
What open cups where played in 2002 | CREATE TABLE table_1214035_1 (
open_cup VARCHAR,
year VARCHAR
) | SELECT open_cup FROM table_1214035_1 WHERE year LIKE '%2002%' |
Which rider from the 1971 Isle of Man Junior TT 250cc final standings had a speed equal to 86.15mph? | CREATE TABLE table_33544 (
"Place" real,
"Rider" text,
"Country" text,
"Machine" text,
"Speed" text,
"Time" text,
"Points" real
) | SELECT "Rider" FROM table_33544 WHERE "Speed" LIKE '%86.15mph%' |
What was the loss of the game when the record was 27-17? | CREATE TABLE table_name_61 (
loss VARCHAR,
record VARCHAR
) | SELECT loss FROM table_name_61 WHERE record LIKE "%27-17%" |
What is the lowest number of poles? | CREATE TABLE table_20985 (
"Season" real,
"Class" text,
"Team" text,
"Motorcycle" text,
"Type" text,
"Races" real,
"Wins" real,
"Podiums" real,
"Poles" real,
"Fastest Laps" real,
"Pts" text,
"Position" text
) | SELECT MIN("Poles") FROM table_20985 |
What is the result for salmonella spp. if you use citrate? | CREATE TABLE table_16083989_1 (
citrate VARCHAR,
species VARCHAR
) | SELECT COUNT(citrate) FROM table_16083989_1 WHERE species LIKE "%salmonella spp.%" |
What happened on 2009-09-05? | CREATE TABLE table_68617 (
"Date" text,
"Location" text,
"Nature of incident" text,
"Circumstances" text,
"Casualties" text
) | SELECT "Circumstances" FROM table_68617 WHERE "Date" LIKE '%2009-09-05%' |
What shape has nickel as the metal, and one rupee as the denomination? | CREATE TABLE table_name_78 (
shape VARCHAR,
metal VARCHAR,
denomination VARCHAR
) | SELECT shape FROM table_name_78 WHERE metal LIKE "%nickel%" AND denomination LIKE "%one rupee%" |
What date did the Geelong team play on as a home team? | CREATE TABLE table_name_12 (
date VARCHAR,
home_team VARCHAR
) | SELECT date FROM table_name_12 WHERE home_team LIKE "%geelong%" |
which chassis were in use prior to 1988? | CREATE TABLE table_name_31 (
chassis VARCHAR,
year INTEGER
) | SELECT chassis FROM table_name_31 WHERE year < 1988 |
What was gary player's score? | CREATE TABLE table_name_25 (
score VARCHAR,
player VARCHAR
) | SELECT score FROM table_name_25 WHERE player LIKE "%gary player%" |
In how many different years did the race happen on February 27? | CREATE TABLE table_2241101_1 (
year VARCHAR,
date VARCHAR
) | SELECT COUNT(year) FROM table_2241101_1 WHERE date LIKE '%february 27%' |
Who does Rockstar Games use as a developer? | CREATE TABLE table_name_97 (
developer VARCHAR,
publisher VARCHAR
) | SELECT developer FROM table_name_97 WHERE publisher LIKE "%rockstar games%" |
Who is the constructor for the car driven by George Heath? | CREATE TABLE table_18893428_1 (
constructor VARCHAR,
driver VARCHAR
) | SELECT constructor FROM table_18893428_1 WHERE driver LIKE "%george heath%" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.