answer stringlengths 6 3.91k | question stringlengths 7 766 | context stringlengths 27 7.14k |
|---|---|---|
SELECT MIN(yards) FROM table_name_30 WHERE avg = 7 AND long < 7 | what is the least yards when the average is 7 and the long is less than 7? | CREATE TABLE table_name_30 (yards INTEGER, avg VARCHAR, long VARCHAR) |
SELECT score FROM table_20745685_1 WHERE _number = 7 | What is the score for game #7? | CREATE TABLE table_20745685_1 (score VARCHAR, _number VARCHAR) |
SELECT notes FROM table_19161046_1 WHERE model = "HIS HD4850 (512MB)" | What are the notes recorded for the model HIS HD4850 (512MB)? | CREATE TABLE table_19161046_1 (
notes VARCHAR,
model VARCHAR
) |
SELECT AVG(laps) FROM table_name_32 WHERE driver = "ralph firman" AND grid > 19 | What is the average laps for ralph firman with a grid of over 19? | CREATE TABLE table_name_32 (laps INTEGER, driver VARCHAR, grid VARCHAR) |
SELECT opponent FROM table_20745685_1 WHERE date = "February 28, 1991" | Who was the opponent on February 28, 1991 | CREATE TABLE table_20745685_1 (opponent VARCHAR, date VARCHAR) |
SELECT COUNT("Viewers") FROM table_26809 WHERE "BBC Three weekly ranking" = '6' | How many individuals watched the show that had a bbc ranking of 6? | CREATE TABLE table_26809 (
"Episode no." real,
"Airdate" text,
"Viewers" text,
"BBC Three weekly ranking" text,
"Cable rank" text
) |
SELECT grid FROM table_name_53 WHERE laps = 6 | What grid features 6 laps? | CREATE TABLE table_name_53 (grid VARCHAR, laps VARCHAR) |
SELECT date FROM table_20745444_1 WHERE record = "1-0" | What was the date when the record was 1-0? | CREATE TABLE table_20745444_1 (date VARCHAR, record VARCHAR) |
SELECT SCHOOL_CODE, COUNT(DISTINCT DEPT_ADDRESS) FROM DEPARTMENT | A bar chart about how many different locations does each school have? | CREATE TABLE ENROLL (
CLASS_CODE varchar(5),
STU_NUM int,
ENROLL_GRADE varchar(50)
)
CREATE TABLE DEPARTMENT (
DEPT_CODE varchar(10),
DEPT_NAME varchar(30),
SCHOOL_CODE varchar(8),
EMP_NUM int,
DEPT_ADDRESS varchar(20),
DEPT_EXTENSION varchar(4)
)
CREATE TABLE COURSE (
CRS_CODE... |
SELECT SUM(asts) FROM table_name_35 WHERE school_country = "boston college" AND rebs > 63 | What's the sum of asts for boston college with a rebs over 63? | CREATE TABLE table_name_35 (asts INTEGER, school_country VARCHAR, rebs VARCHAR) |
SELECT COUNT(tar_heels_points) FROM table_20745444_1 WHERE result = "Loss" | How many results finished in a loss? | CREATE TABLE table_20745444_1 (tar_heels_points VARCHAR, result VARCHAR) |
SELECT "Opponent" FROM table_72572 WHERE "Week" = '9' | In week 9 who were the opponent? | CREATE TABLE table_72572 (
"Week" real,
"Date" text,
"Opponent" text,
"Result" text,
"Game site" text,
"Record" text,
"Attendance" real
) |
SELECT pos FROM table_name_52 WHERE asts < 117 | What's the pos for an asts less than 117? | CREATE TABLE table_name_52 (pos VARCHAR, asts INTEGER) |
SELECT MAX(game) FROM table_20745444_1 WHERE opponent = "Furman" | How many games were against Furman? | CREATE TABLE table_20745444_1 (game INTEGER, opponent VARCHAR) |
SELECT Class, COUNT(*) FROM race GROUP BY Class ORDER BY Class | Show the race class and number of races in each class with a bar chart, and list x axis in asc order please. | CREATE TABLE track (
Track_ID int,
Name text,
Location text,
Seating real,
Year_Opened real
)
CREATE TABLE race (
Race_ID int,
Name text,
Class text,
Date text,
Track_ID text
) |
SELECT COUNT(release_date) FROM table_name_7 WHERE country = "canada" | How many release dates has Canada had? | CREATE TABLE table_name_7 (release_date VARCHAR, country VARCHAR) |
SELECT COUNT(opponents) FROM table_20745444_1 WHERE opponent = "Duke" | How many times were Duke the opponents? | CREATE TABLE table_20745444_1 (opponents VARCHAR, opponent VARCHAR) |
SELECT hometown FROM table_name_83 WHERE player = "cody zeller" | What is the hometown of Cody Zeller? | CREATE TABLE table_name_83 (
hometown VARCHAR,
player VARCHAR
) |
SELECT constructor FROM table_name_67 WHERE time_retired = "engine" AND grid = 1 | What constructor is grid 1 with a time/retired of engine? | CREATE TABLE table_name_67 (constructor VARCHAR, time_retired VARCHAR, grid VARCHAR) |
SELECT MAX(opponents) FROM table_20745444_1 WHERE record = "4-0" | How many losses were there when the record was 4-0? | CREATE TABLE table_20745444_1 (opponents INTEGER, record VARCHAR) |
SELECT vitalperiodic.observationtime FROM vitalperiodic WHERE vitalperiodic.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '013-33898')) AND vitalperiodic.heartrate < 121.0 AN... | when was patient 013-33898's heartrate less than 121.0 for the last time today? | CREATE TABLE intakeoutput (
intakeoutputid number,
patientunitstayid number,
cellpath text,
celllabel text,
cellvaluenumeric number,
intakeoutputtime time
)
CREATE TABLE allergy (
allergyid number,
patientunitstayid number,
drugname text,
allergyname text,
allergytime time
)... |
SELECT constructor FROM table_name_34 WHERE grid = 14 | Who constructed grid 14? | CREATE TABLE table_name_34 (constructor VARCHAR, grid VARCHAR) |
SELECT at_vs FROM table_20745754_1 WHERE _number = "7" | What was the game #7, at or versus (home or at)? | CREATE TABLE table_20745754_1 (at_vs VARCHAR, _number VARCHAR) |
SELECT MIN("Round") FROM table_31838 WHERE "Event" = 'total combat 15' | Tell me the lowest round for total combat 15 | CREATE TABLE table_31838 (
"Res." text,
"Record" text,
"Opponent" text,
"Method" text,
"Event" text,
"Round" real,
"Time" text,
"Location" text
) |
SELECT 2001 FROM table_name_53 WHERE 2004 = "a" AND 2003 = "a" AND 2012 = "3r" | I want to know the 2001 that has a 2004 of a and 2003 of a with 2012 of 3r | CREATE TABLE table_name_53 (Id VARCHAR) |
SELECT opponent FROM table_20745754_1 WHERE _number = "7" | Who did they play against in game 7? | CREATE TABLE table_20745754_1 (opponent VARCHAR, _number VARCHAR) |
SELECT "Type" FROM table_66691 WHERE "Course" = 'marostica to bibione' | tell me the type that has the marostica to bibione course. | CREATE TABLE table_66691 (
"Date" text,
"Course" text,
"Distance" text,
"Type" text,
"Winner" text
) |
SELECT 2008 FROM table_name_87 WHERE 2001 = "wta premier 5 tournaments" | Tell me the 2008 for when 2001 of wta premier 5 tournaments | CREATE TABLE table_name_87 (Id VARCHAR) |
SELECT _number FROM table_20745754_1 WHERE attendance = 2813 | What game number had an attendance of 2813? | CREATE TABLE table_20745754_1 (_number VARCHAR, attendance VARCHAR) |
SELECT Payment_Method_Code, SUM(Amount_Payment) FROM Payments GROUP BY Payment_Method_Code ORDER BY SUM(Amount_Payment) | Bar chart of sum amount payment from each payment method code, and could you sort in asc by the Y? | CREATE TABLE Settlements (
Settlement_ID INTEGER,
Claim_ID INTEGER,
Date_Claim_Made DATE,
Date_Claim_Settled DATE,
Amount_Claimed INTEGER,
Amount_Settled INTEGER,
Customer_Policy_ID INTEGER
)
CREATE TABLE Payments (
Payment_ID INTEGER,
Settlement_ID INTEGER,
Payment_Method_Code ... |
SELECT 2013 FROM table_name_87 WHERE 2001 = "wta premier 5 tournaments" | I want to know the 2013 when 2001 was wta premier 5 tournaments | CREATE TABLE table_name_87 (Id VARCHAR) |
SELECT date FROM table_20746062_1 WHERE game = 9 | What day did the play game number 9? | CREATE TABLE table_20746062_1 (date VARCHAR, game VARCHAR) |
SELECT Date, COUNT(Date) FROM game AS T1 JOIN injury_accident AS T2 ON T1.id = T2.game_id GROUP BY Date ORDER BY Date DESC | How many players are injured in each day? Show a bar chart, and I want to order from high to low by the x-axis. | CREATE TABLE injury_accident (
game_id int,
id int,
Player text,
Injury text,
Number_of_matches text,
Source text
)
CREATE TABLE stadium (
id int,
name text,
Home_Games int,
Average_Attendance real,
Total_Attendance real,
Capacity_Percentage real
)
CREATE TABLE game (
... |
SELECT 2007 FROM table_name_14 WHERE 2010 = "olympic games" | Tell me the 2007 for 2010 olympic games | CREATE TABLE table_name_14 (Id VARCHAR) |
SELECT result FROM table_20746062_1 WHERE record = "2-1" | What was the result of the game when they were 2-1? | CREATE TABLE table_20746062_1 (result VARCHAR, record VARCHAR) |
SELECT Event_Details, COUNT(Event_Details) FROM Events GROUP BY Event_Details ORDER BY Event_Details DESC | Bar chart x axis event details y axis how many event details, and I want to sort by the X-axis in descending. | CREATE TABLE Events (
Event_ID INTEGER,
Service_ID INTEGER,
Event_Details VARCHAR(255)
)
CREATE TABLE Participants_in_Events (
Event_ID INTEGER,
Participant_ID INTEGER
)
CREATE TABLE Participants (
Participant_ID INTEGER,
Participant_Type_Code CHAR(15),
Participant_Details VARCHAR(255)... |
SELECT 2004 FROM table_name_61 WHERE 2012 = "21" | Tell me the 2004 for 2012 of 21 | CREATE TABLE table_name_61 (Id VARCHAR) |
SELECT record FROM table_20760407_1 WHERE bruins_points = 41 | What was the record when the Bruins had 41 points? | CREATE TABLE table_20760407_1 (record VARCHAR, bruins_points VARCHAR) |
SELECT demographic.age, demographic.religion FROM demographic WHERE demographic.subject_id = "1121" | tell me the age and religious background of patient with patient id 1121. | CREATE TABLE demographic (
subject_id text,
hadm_id text,
name text,
marital_status text,
age text,
dob text,
gender text,
language text,
religion text,
admission_type text,
days_stay text,
insurance text,
ethnicity text,
expire_flag text,
admission_location t... |
SELECT away_team FROM table_name_97 WHERE home_team = "richmond" | When Richmond was the Home team, who was the away team? | CREATE TABLE table_name_97 (away_team VARCHAR, home_team VARCHAR) |
SELECT date FROM table_20760407_1 WHERE game = 9 | What was the date for game 9? | CREATE TABLE table_20760407_1 (date VARCHAR, game VARCHAR) |
SELECT character FROM actor ORDER BY age DESC | What are the characters of actors in descending order of age? | CREATE TABLE actor (
actor_id number,
name text,
musical_id number,
character text,
duration text,
age number
)
CREATE TABLE musical (
musical_id number,
name text,
year number,
award text,
category text,
nominee text,
result text
) |
SELECT home_team FROM table_name_29 WHERE venue = "corio oval" | Which home team plays in the Corio Oval venue? | CREATE TABLE table_name_29 (home_team VARCHAR, venue VARCHAR) |
SELECT MAX(game) FROM table_20760407_1 WHERE bruins_points = 56 | What game did the Bruins have 56 points? | CREATE TABLE table_20760407_1 (game INTEGER, bruins_points VARCHAR) |
SELECT player FROM table_2508633_2 WHERE nfl_team = "New Orleans Saints" | Name the player for new orleans saints | CREATE TABLE table_2508633_2 (
player VARCHAR,
nfl_team VARCHAR
) |
SELECT away_team FROM table_name_60 WHERE venue = "emcg" | When the game was played at the EMCG venue, who was the away team? | CREATE TABLE table_name_60 (away_team VARCHAR, venue VARCHAR) |
SELECT played FROM table_20760802_1 WHERE lost = "4" AND drawn = "1" | What is the total of played where lost equals 4 and drawn equals 1? | CREATE TABLE table_20760802_1 (played VARCHAR, lost VARCHAR, drawn VARCHAR) |
SELECT COUNT("Director") FROM table_17870 WHERE "Viewers(millions)" = '9.14' | What's the total number of directors whose episodes have been seen by 9.14 million viewers? | CREATE TABLE table_17870 (
"#" real,
"Episode" text,
"Writer" text,
"Director" text,
"Viewers(millions)" text,
"Original airdate" text
) |
SELECT constructor FROM table_name_55 WHERE driver = "jenson button" | who is the constructor when the driver is jenson button? | CREATE TABLE table_name_55 (constructor VARCHAR, driver VARCHAR) |
SELECT drawn FROM table_20760802_1 WHERE club = "New Ross" | How many drawn are there where the Club is new ross? | CREATE TABLE table_20760802_1 (drawn VARCHAR, club VARCHAR) |
SELECT magnitude FROM table_name_67 WHERE epicenter = "vrancea county" AND intensity = "unknown" AND time__utc_ = "06:36" | What is the magnitude with epicenter at Vrancea County, unknown intensity and which happened at 06:36? | CREATE TABLE table_name_67 (
magnitude VARCHAR,
time__utc_ VARCHAR,
epicenter VARCHAR,
intensity VARCHAR
) |
SELECT grid FROM table_name_79 WHERE time_retired = "+27.112" | what is the grid when the time/retired is +27.112? | CREATE TABLE table_name_79 (grid VARCHAR, time_retired VARCHAR) |
SELECT drawn FROM table_20760802_1 WHERE points_against = "129" | How may drawn equal points against at 129? | CREATE TABLE table_20760802_1 (drawn VARCHAR, points_against VARCHAR) |
SELECT series_ep FROM table_15187735_17 WHERE segment_a = "Rolled Wafers" | are rolled wafers in many episodes | CREATE TABLE table_15187735_17 (
series_ep VARCHAR,
segment_a VARCHAR
) |
SELECT MIN(laps) FROM table_name_88 WHERE driver = "huub rothengatter" AND grid < 24 | I want the fewest Laps for Huub Rothengatter and grid less than 24 | CREATE TABLE table_name_88 (laps INTEGER, driver VARCHAR, grid VARCHAR) |
SELECT points_difference FROM table_20760802_1 WHERE points_for = "134" | How many points differ from 134? | CREATE TABLE table_20760802_1 (points_difference VARCHAR, points_for VARCHAR) |
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.age < "36" AND diagnoses.long_title = "Hypotension of hemodialysis" | provide me with the number of patients younger than 36 years who are diagnosed with hypotension of hemodialysis. | CREATE TABLE prescriptions (
subject_id text,
hadm_id text,
icustay_id text,
drug_type text,
drug text,
formulary_drug_cd text,
route text,
drug_dose text
)
CREATE TABLE diagnoses (
subject_id text,
hadm_id text,
icd9_code text,
short_title text,
long_title text
)
C... |
SELECT time_retired FROM table_name_47 WHERE laps = 47 AND driver = "rené arnoux" | Tell me the time/retired with Laps of 47 and driver of rené arnoux | CREATE TABLE table_name_47 (time_retired VARCHAR, laps VARCHAR, driver VARCHAR) |
SELECT points_difference FROM table_20760802_1 WHERE lost = "10" | How many of the points difference lost equal 10? | CREATE TABLE table_20760802_1 (points_difference VARCHAR, lost VARCHAR) |
SELECT competition FROM table_name_54 WHERE date = "14 june 2008" | Tell me the competition that happened on 14 june 2008 | CREATE TABLE table_name_54 (
competition VARCHAR,
date VARCHAR
) |
SELECT MAX(oricon) FROM table_name_17 WHERE romaji_title = "nakitakunalu" | Which Oricon has a Romaji title of nakitakunalu? | CREATE TABLE table_name_17 (oricon INTEGER, romaji_title VARCHAR) |
SELECT played FROM table_20760802_1 WHERE won = "0" | How many teams that played won 0 games? | CREATE TABLE table_20760802_1 (played VARCHAR, won VARCHAR) |
SELECT COUNT(DISTINCT admissions.subject_id) FROM admissions WHERE admissions.hadm_id IN (SELECT transfers.hadm_id FROM transfers WHERE transfers.careunit = 'ccu' AND STRFTIME('%y', transfers.intime) <= '2102') | how many patients until 2102 were staying in the careunit ccu? | CREATE TABLE cost (
row_id number,
subject_id number,
hadm_id number,
event_type text,
event_id number,
chargetime time,
cost number
)
CREATE TABLE transfers (
row_id number,
subject_id number,
hadm_id number,
icustay_id number,
eventtype text,
careunit text,
war... |
SELECT reference FROM table_name_92 WHERE release_date = "1996/10/10" | Which Reference has a Release date of 1996/10/10? | CREATE TABLE table_name_92 (reference VARCHAR, release_date VARCHAR) |
SELECT location_s_ FROM table_2076595_1 WHERE control = "Public" AND type = "Master's university" | What are the public schools with a master's university? | CREATE TABLE table_2076595_1 (location_s_ VARCHAR, control VARCHAR, type VARCHAR) |
SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, airport_service AS AIRPORT_SERVICE_2, airport_service AS AIRPORT_SERVICE_3, city AS CITY_0, city AS CITY_1, city AS CITY_2, city AS CITY_3, flight, flight_stop AS FLIGHT_STOP_0, flight_stop AS FLIGHT_STOP_1... | yes i'm looking for a flight between OAKLAND and BOSTON with a stopover in DALLAS FORT WORTH do you have one of those | CREATE TABLE equipment_sequence (
aircraft_code_sequence varchar,
aircraft_code varchar
)
CREATE TABLE restriction (
restriction_code text,
advance_purchase int,
stopovers text,
saturday_stay_required text,
minimum_stay int,
maximum_stay int,
application text,
no_discounts text
... |
SELECT occupation FROM table_name_38 WHERE residence = "windsor junction" | What is the occupation of the candidate that resides in Windsor Junction? | CREATE TABLE table_name_38 (occupation VARCHAR, residence VARCHAR) |
SELECT MIN(enrollment__2009_) FROM table_2076595_1 WHERE location_s_ = "Plainfield" | What is the minimum enrollment for Plainfield? | CREATE TABLE table_2076595_1 (enrollment__2009_ INTEGER, location_s_ VARCHAR) |
SELECT "Venue" FROM table_48004 WHERE "Notes" = '1:23:07' | Which venue did the runner have a note of 1:23:07? | CREATE TABLE table_48004 (
"Year" real,
"Competition" text,
"Venue" text,
"Position" text,
"Event" text,
"Notes" text
) |
SELECT COUNT(votes) FROM table_name_48 WHERE rank = "3rd" AND candidate = "mary louise lorefice" | How many votes did 3rd ranking candidate Mary Louise Lorefice receive? | CREATE TABLE table_name_48 (votes VARCHAR, rank VARCHAR, candidate VARCHAR) |
SELECT type FROM table_2076595_1 WHERE enrollment__2009_ = 224 | What type of school had an enrollment in 2009 of 224? | CREATE TABLE table_2076595_1 (type VARCHAR, enrollment__2009_ VARCHAR) |
SELECT score FROM table_16864968_9 WHERE opponent = "Philadelphia Flyers" | Name the score for philadelphia flyers | CREATE TABLE table_16864968_9 (
score VARCHAR,
opponent VARCHAR
) |
SELECT occupation FROM table_name_35 WHERE candidate = "mary louise lorefice" | What occupation does Mary Louise Lorefice have? | CREATE TABLE table_name_35 (occupation VARCHAR, candidate VARCHAR) |
SELECT MAX(founded) FROM table_2076595_1 WHERE school = "Southern Vermont College" | When was Southern Vermont College founded? | CREATE TABLE table_2076595_1 (founded INTEGER, school VARCHAR) |
SELECT class FROM table_19897896_7 WHERE position = "Forward" | in which class is the position forward | CREATE TABLE table_19897896_7 (
class VARCHAR,
position VARCHAR
) |
SELECT date FROM table_name_83 WHERE away_team = "essendon" | When was the game at Essendon? | CREATE TABLE table_name_83 (date VARCHAR, away_team VARCHAR) |
SELECT control FROM table_2076595_1 WHERE type = "Art school" | Is art school public or private? | CREATE TABLE table_2076595_1 (control VARCHAR, type VARCHAR) |
SELECT score FROM table_23944006_4 WHERE championship = "San Diego" | Name the score for san diego | CREATE TABLE table_23944006_4 (
score VARCHAR,
championship VARCHAR
) |
SELECT constructor FROM table_name_25 WHERE grid = 8 | Who is the constructor with the grid of 8? | CREATE TABLE table_name_25 (constructor VARCHAR, grid VARCHAR) |
SELECT school FROM table_2076595_1 WHERE founded = 1791 | What school was founded in 1791? | CREATE TABLE table_2076595_1 (school VARCHAR, founded VARCHAR) |
SELECT COUNT("Location") FROM table_26598 WHERE "Week" = '7' | How many locations did the team play at on week 7? | CREATE TABLE table_26598 (
"Week" real,
"Date" text,
"Opponent" text,
"Location" text,
"Final Score" text,
"Attendance" real,
"Record" text
) |
SELECT time_retired FROM table_name_95 WHERE grid < 3 AND laps = 45 | what is the time/retired when the grid is less than 3 and 45 laps? | CREATE TABLE table_name_95 (time_retired VARCHAR, grid VARCHAR, laps VARCHAR) |
SELECT COUNT(enrollment__spring_2012_) FROM table_2076557_2 WHERE school = "Sioux Falls Seminary" | Name the number of spring enrollment for sioux falls seminary | CREATE TABLE table_2076557_2 (enrollment__spring_2012_ VARCHAR, school VARCHAR) |
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE diagnoses.icd9_code = "0380" | how many patients whose diagnoses icd9 code is 0380? | CREATE TABLE prescriptions (
subject_id text,
hadm_id text,
icustay_id text,
drug_type text,
drug text,
formulary_drug_cd text,
route text,
drug_dose text
)
CREATE TABLE diagnoses (
subject_id text,
hadm_id text,
icd9_code text,
short_title text,
long_title text
)
C... |
SELECT MAX(laps) FROM table_name_43 WHERE driver = "jackie stewart" | what is the most laps for driver jackie stewart? | CREATE TABLE table_name_43 (laps INTEGER, driver VARCHAR) |
SELECT accreditation FROM table_2076557_2 WHERE school = "Southeast Technical Institute" | Name the accrediatation for southeast technical institute | CREATE TABLE table_2076557_2 (accreditation VARCHAR, school VARCHAR) |
SELECT MAX(demographic.age) FROM demographic WHERE demographic.marital_status = "MARRIED" AND demographic.admityear >= "2190" | Out of total number of patients admitted in or after the year 2190, how many of them were married? | CREATE TABLE lab (
subject_id text,
hadm_id text,
itemid text,
charttime text,
flag text,
value_unit text,
label text,
fluid text
)
CREATE TABLE demographic (
subject_id text,
hadm_id text,
name text,
marital_status text,
age text,
dob text,
gender text,
... |
SELECT time_retired FROM table_name_56 WHERE driver = "richard attwood" | what is the time/retired for driver richard attwood? | CREATE TABLE table_name_56 (time_retired VARCHAR, driver VARCHAR) |
SELECT COUNT(founded) FROM table_2076557_2 WHERE location_s_ = "Yankton" | Name the total number of founded for yankton | CREATE TABLE table_2076557_2 (founded VARCHAR, location_s_ VARCHAR) |
SELECT "district" FROM table_200_33 ORDER BY "density\nper km2" DESC LIMIT 1 | which district has the highest population density ? | CREATE TABLE table_200_33 (
id number,
"district" text,
"area size\n(km2)" text,
"population" text,
"density\nper km2" number
) |
SELECT d_41 FROM table_name_33 WHERE r_51 = "r 11" | Tell me the D 41 and R 51 of r 11 | CREATE TABLE table_name_33 (d_41 VARCHAR, r_51 VARCHAR) |
SELECT italian FROM table_2077192_2 WHERE english = "otter" | What is the Italian word for the English word "otter"? | CREATE TABLE table_2077192_2 (italian VARCHAR, english VARCHAR) |
SELECT "Winner" FROM table_10647 WHERE "Tournament" = 'london' | Name the winner for london tournament | CREATE TABLE table_10647 (
"Tournament" text,
"Winner" text,
"Runner-up" text,
"Score" text,
"Third Place" text
) |
SELECT d_46 FROM table_name_35 WHERE d_44 = "r 17" | I want the D 46 which has a D 44 of r 17 | CREATE TABLE table_name_35 (d_46 VARCHAR, d_44 VARCHAR) |
SELECT COUNT(french) FROM table_2077192_2 WHERE central_southern_calabrian = "zinnapòtamu" | How many French words does zinnapòtamu in Central-Southern Calabrian translate to? | CREATE TABLE table_2077192_2 (french VARCHAR, central_southern_calabrian VARCHAR) |
SELECT skip FROM table_name_80 WHERE ends_lost > 44 AND blank_ends = 10 | Which Skip has Ends Lost larger than 44, and Blank Ends of 10? | CREATE TABLE table_name_80 (
skip VARCHAR,
ends_lost VARCHAR,
blank_ends VARCHAR
) |
SELECT d_41 FROM table_name_63 WHERE d_43 = "d 18" | Tell me the D 41 for D 43 of d 18 | CREATE TABLE table_name_63 (d_41 VARCHAR, d_43 VARCHAR) |
SELECT french FROM table_2077192_2 WHERE english = "orange" | What is the French translation for the English word "orange"? | CREATE TABLE table_2077192_2 (french VARCHAR, english VARCHAR) |
SELECT "Marriage" FROM table_68309 WHERE "Ceased to be Consort" = '29 september 1898' | Name the marriagefor ceased to be consort of 29 september 1898 | CREATE TABLE table_68309 (
"Name" text,
"Birth" text,
"Marriage" text,
"Became Consort" text,
"Ceased to be Consort" text,
"Spouse" text
) |
SELECT d_47 FROM table_name_44 WHERE d_46 = "r 35" | Tell me the D 47 for D 46 of r 35 | CREATE TABLE table_name_44 (d_47 VARCHAR, d_46 VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.