answer stringlengths 6 3.91k | question stringlengths 7 766 | context stringlengths 27 7.14k |
|---|---|---|
SELECT date FROM table_name_33 WHERE result = "1-0" | On what date was the Result 1-0? | CREATE TABLE table_name_33 (date VARCHAR, result VARCHAR) |
SELECT score FROM table_18904831_7 WHERE record = "25-8" | What was the score in the game that had a record of 25-8? | CREATE TABLE table_18904831_7 (score VARCHAR, record VARCHAR) |
SELECT 24 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', icustays.intime)) FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 5828) AND icustays.outtime IS NULL | how many hours had passed since patient 5828 had been admitted to the icu? | CREATE TABLE d_icd_diagnoses (
row_id number,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE inputevents_cv (
row_id number,
subject_id number,
hadm_id number,
icustay_id number,
charttime time,
itemid number,
amount number
)
CREATE TABLE labevents (
r... |
SELECT AVG(attendance) FROM table_name_31 WHERE date = "10 november 2004" | What was the attendance on 10 november 2004? | CREATE TABLE table_name_31 (attendance INTEGER, date VARCHAR) |
SELECT MIN(game) FROM table_18904831_7 WHERE date = "August 20" | What was # of the first game played on August 20? | CREATE TABLE table_18904831_7 (game INTEGER, date VARCHAR) |
SELECT score FROM table_name_1 WHERE player = "tom lehman" | What is Score, when Player is 'Tom Lehman'? | CREATE TABLE table_name_1 (
score VARCHAR,
player VARCHAR
) |
SELECT COUNT(crowd) FROM table_name_29 WHERE home_team = "fitzroy" | What is the size of the crowd when the home team is Fitzroy? | CREATE TABLE table_name_29 (crowd VARCHAR, home_team VARCHAR) |
SELECT COUNT(high_points) FROM table_18904831_7 WHERE location = "MCI Center" | What were the high points for the game played at the MCI Center? | CREATE TABLE table_18904831_7 (high_points VARCHAR, location VARCHAR) |
SELECT chartevents.valuenum FROM chartevents WHERE chartevents.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 23436 AND admissions.dischtime IS NULL)) AND chartevents.itemid IN (SELECT d_items.itemid FROM d_items... | what was patient 23436 last height during the current hospital visit? | CREATE TABLE d_labitems (
row_id number,
itemid number,
label text
)
CREATE TABLE patients (
row_id number,
subject_id number,
gender text,
dob time,
dod time
)
CREATE TABLE chartevents (
row_id number,
subject_id number,
hadm_id number,
icustay_id number,
itemid nu... |
SELECT COUNT(laps) FROM table_name_96 WHERE time_retired = "+ 1 lap" AND driver = "riccardo patrese" | How many laps did riccardo patrese do when he had a time/retird of + 1 lap? | CREATE TABLE table_name_96 (laps VARCHAR, time_retired VARCHAR, driver VARCHAR) |
SELECT location FROM table_18904831_7 WHERE record = "19-6" | Where was the game played that had a record of 19-6? | CREATE TABLE table_18904831_7 (location VARCHAR, record VARCHAR) |
SELECT points FROM table_name_44 WHERE performer = "nigel connell" | How many points did Nigel Connell have? | CREATE TABLE table_name_44 (
points VARCHAR,
performer VARCHAR
) |
SELECT episode FROM table_name_16 WHERE year = 2004 AND nominee_s_ = "jenny bicks and cindy chupack" | Name the episode for jenny bicks and cindy chupack nominees in 2004 | CREATE TABLE table_name_16 (episode VARCHAR, year VARCHAR, nominee_s_ VARCHAR) |
SELECT MAX(col__m_) FROM table_18946749_2 WHERE peak = "Barurumea Ridge" | What is the col (m) of the Barurumea Ridge peak? | CREATE TABLE table_18946749_2 (col__m_ INTEGER, peak VARCHAR) |
SELECT SUM("Average") FROM table_34867 WHERE "Played" > '38' AND "1990-91" = '39' AND "1989-90" = '34' | What is the total number of averages where the played is more than 38, the 1990-91 is 39, and the 1989-90 is 34? | CREATE TABLE table_34867 (
"Team" text,
"Average" real,
"Points" real,
"Played" real,
"1989-90" text,
"1990-91" text,
"1991-1992" real
) |
SELECT episode FROM table_name_30 WHERE year > 1999 | Name the episode for year more than 1999 | CREATE TABLE table_name_30 (episode VARCHAR, year INTEGER) |
SELECT MAX(elevation__m_) FROM table_18946749_2 WHERE peak = "Mount Wilhelm" | What is the elevation (m) of the Mount Wilhelm peak? | CREATE TABLE table_18946749_2 (elevation__m_ INTEGER, peak VARCHAR) |
SELECT COUNT(stage) FROM table_15294880_2 WHERE winner = "Alberto Contador" AND points_classification = "Alberto Contador" | How many stages were there where the winner and the points classification were Alberto Contador? | CREATE TABLE table_15294880_2 (
stage VARCHAR,
winner VARCHAR,
points_classification VARCHAR
) |
SELECT home_team AS score FROM table_name_13 WHERE venue = "junction oval" | What was the home team's score at the game held at Junction Oval? | CREATE TABLE table_name_13 (home_team VARCHAR, venue VARCHAR) |
SELECT MIN(col__m_) FROM table_18946749_2 WHERE peak = "Bewani Mountains High Point" | What is the col (m) of the Bewani Mountains High Point peak? | CREATE TABLE table_18946749_2 (col__m_ INTEGER, peak VARCHAR) |
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.ethnicity = "BLACK/CAPE VERDEAN" AND lab.itemid = "51249" | How many patients are with black/cape verdan ethnicity and lab test id 51249? | CREATE TABLE diagnoses (
subject_id text,
hadm_id text,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE lab (
subject_id text,
hadm_id text,
itemid text,
charttime text,
flag text,
value_unit text,
label text,
fluid text
)
CREATE TABLE procedures (
... |
SELECT away_team AS score FROM table_name_44 WHERE venue = "mcg" | What was the away team's score at the game held at MCG? | CREATE TABLE table_name_44 (away_team VARCHAR, venue VARCHAR) |
SELECT island FROM table_18946749_1 WHERE peak = "Mount Wondiwoi" | When mount wondiwoi is the peak what is the island? | CREATE TABLE table_18946749_1 (island VARCHAR, peak VARCHAR) |
SELECT "Time" FROM table_66484 WHERE "Notes" = 'fb' AND "Country" = 'france' | What time was the race for the country of france with fb listed under notes? | CREATE TABLE table_66484 (
"Rank" real,
"Athlete" text,
"Country" text,
"Time" text,
"Notes" text
) |
SELECT away_team FROM table_name_53 WHERE venue = "arden street oval" | Who was the away team at the game held at Arden Street Oval? | CREATE TABLE table_name_53 (away_team VARCHAR, venue VARCHAR) |
SELECT island FROM table_18946749_1 WHERE peak = "Mount Gauttier" | When mount gauttier is the peak what is the island? | CREATE TABLE table_18946749_1 (island VARCHAR, peak VARCHAR) |
SELECT "Years" FROM table_69467 WHERE "Ranking" < '8' AND "Goals" < '66' AND "Name" = 'paul mcgee' | What are the years when the ranking is less than 8 with less than 66 goals and name is Paul McGee? | CREATE TABLE table_69467 (
"Ranking" real,
"Nationality" text,
"Name" text,
"Years" text,
"Goals" real
) |
SELECT crowd FROM table_name_94 WHERE home_team = "fitzroy" | What was the size of the crowd at the game where Fitzroy was the home team? | CREATE TABLE table_name_94 (crowd VARCHAR, home_team VARCHAR) |
SELECT MAX(elevation__m_) FROM table_18946749_1 WHERE peak = "Mount Kobowre" | When mount kobowre is the peak what is the highest elevation in meters? | CREATE TABLE table_18946749_1 (elevation__m_ INTEGER, peak VARCHAR) |
SELECT "Event" FROM table_51071 WHERE "Location" = 'northfield, mn' | Which event is located in Northfield, Mn? | CREATE TABLE table_51071 (
"Date" text,
"Distance" text,
"Handler" text,
"Event" text,
"Location" text
) |
SELECT MAX(bronze) FROM table_name_17 WHERE silver > 6 AND total < 127 AND gold < 11 | Name the most bronze for silver more than 6 and total less than 127 with gold less than 11 | CREATE TABLE table_name_17 (bronze INTEGER, gold VARCHAR, silver VARCHAR, total VARCHAR) |
SELECT MAX(prominence__m_) FROM table_18946749_1 WHERE peak = "Mount Gauttier" | When mount gauttier is the peak what is the highest prominence in meters? | CREATE TABLE table_18946749_1 (prominence__m_ INTEGER, peak VARCHAR) |
SELECT chartevents.valuenum FROM chartevents WHERE chartevents.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 18457 AND NOT admissions.dischtime IS NULL ORDER BY admissions.admittime DESC LIMIT 1)) AND chartevent... | how much patient 18457 weighs on their last hospital encounter for the first time? | CREATE TABLE icustays (
row_id number,
subject_id number,
hadm_id number,
icustay_id number,
first_careunit text,
last_careunit text,
first_wardid number,
last_wardid number,
intime time,
outtime time
)
CREATE TABLE inputevents_cv (
row_id number,
subject_id number,
... |
SELECT MAX(silver) FROM table_name_18 WHERE sport = "table tennis" AND bronze > 0 | Name the highest silver for table tennis and bronze more than 0 | CREATE TABLE table_name_18 (silver INTEGER, sport VARCHAR, bronze VARCHAR) |
SELECT country FROM table_18946749_1 WHERE col__m_ = 44 | When 44 is the col in meters what is the country? | CREATE TABLE table_18946749_1 (country VARCHAR, col__m_ VARCHAR) |
SELECT MIN(car__number) FROM table_name_22 WHERE sponsor = "ups" AND season < 2001 | What is the lowest car number sponsored by UPS before 2001? | CREATE TABLE table_name_22 (
car__number INTEGER,
sponsor VARCHAR,
season VARCHAR
) |
SELECT kickoff_[a_] FROM table_name_9 WHERE attendance = "58,120" | Which kickoff had an attendance of 58,120? | CREATE TABLE table_name_9 (kickoff_ VARCHAR, a_ VARCHAR, attendance VARCHAR) |
SELECT release_date FROM table_1893815_1 WHERE album_number = "2nd" | Name the release date for album # 2nd | CREATE TABLE table_1893815_1 (release_date VARCHAR, album_number VARCHAR) |
SELECT U.Id, U.DisplayName, COUNT(CASE WHEN P.AcceptedAnswerId IS NULL THEN 1 ELSE NULL END) AS PreguntasSinAceptar, COUNT(CASE WHEN NOT P.AcceptedAnswerId IS NULL THEN 1 ELSE NULL END) AS PreguntasAceptadas FROM Users AS U INNER JOIN Posts AS P ON U.Id = P.OwnerUserId WHERE P.PostTypeId = 1 AND P.AnswerCount > 0 GROUP... | Usuarios con 10 o m s preguntas sin aceptar. | CREATE TABLE ReviewTaskTypes (
Id number,
Name text,
Description text
)
CREATE TABLE PostTags (
PostId number,
TagId number
)
CREATE TABLE SuggestedEditVotes (
Id number,
SuggestedEditId number,
UserId number,
VoteTypeId number,
CreationDate time,
TargetUserId number,
T... |
SELECT week FROM table_name_14 WHERE date = "november 19, 1989" | What week number did November 19, 1989 games fall on? | CREATE TABLE table_name_14 (week VARCHAR, date VARCHAR) |
SELECT label FROM table_1893815_1 WHERE english_title = "Grown Up Overnight" | Name the label for grown up overnight | CREATE TABLE table_1893815_1 (label VARCHAR, english_title VARCHAR) |
SELECT COUNT("Series") FROM table_1728 WHERE "Date" = 'April 26' | Name the total number of series for april 26 | CREATE TABLE table_1728 (
"Game" real,
"Date" text,
"Team" text,
"Score" text,
"High points" text,
"High rebounds" text,
"High assists" text,
"Location Attendance" text,
"Series" text
) |
SELECT game_site FROM table_name_58 WHERE record = "2-2" | Which game site(s) had record of 2-2? | CREATE TABLE table_name_58 (game_site VARCHAR, record VARCHAR) |
SELECT label FROM table_1893815_1 WHERE chinese__traditional_ = "情歌沒有告訴你" | Name the label for traditional chinese 情歌沒有告訴你 | CREATE TABLE table_1893815_1 (label VARCHAR, chinese__traditional_ VARCHAR) |
SELECT COUNT("district") FROM table_204_109 | how many districts are there in virginia ? | CREATE TABLE table_204_109 (
id number,
"district" text,
"incumbent" text,
"party" text,
"first\nelected" text,
"result" text,
"candidates" text
) |
SELECT opponent FROM table_name_53 WHERE kickoff_[a_] = "1:00" AND record = "3-7" | Which game had a kickoff at 1:00 and a record of 3-7? | CREATE TABLE table_name_53 (opponent VARCHAR, record VARCHAR, kickoff_ VARCHAR, a_ VARCHAR) |
SELECT COUNT(chinese__traditional_) FROM table_1893815_1 WHERE album_number = "6th" | Name the number of traditional chinese for album number 6th | CREATE TABLE table_1893815_1 (chinese__traditional_ VARCHAR, album_number VARCHAR) |
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.ethnicity = "ASIAN" AND demographic.age < "47" | how many asian patients are less than 47 years? | CREATE TABLE diagnoses (
subject_id text,
hadm_id text,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE procedures (
subject_id text,
hadm_id text,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE demographic (
subject_id text,
hadm_id t... |
SELECT date FROM table_name_12 WHERE attendance = "56,271" | Which game had an attendance of 56,271? | CREATE TABLE table_name_12 (date VARCHAR, attendance VARCHAR) |
SELECT chinese__traditional_ FROM table_1893815_1 WHERE chinese__simplified_ = "美丽人生" | Name the chinese traditional for 美丽人生 | CREATE TABLE table_1893815_1 (chinese__traditional_ VARCHAR, chinese__simplified_ VARCHAR) |
SELECT COUNT("Qualifying start date") FROM table_26468 WHERE "Confederation" = 'CONCACAF' | How many qualifying start dates for the Concacaf confederation? | CREATE TABLE table_26468 (
"Confederation" text,
"Teams started" text,
"Teams that have secured qualification" text,
"Teams that can still qualify" text,
"Teams that have been eliminated" text,
"Remaining places in finals" text,
"Total places in finals" text,
"Qualifying start date" text... |
SELECT driver FROM table_name_22 WHERE engine = "ford cosworth dfv 3.0 v8" AND chassis = "ts19 ts20" | Tell me the driver for ford cosworth dfv 3.0 v8 and chassis of ts19 ts20 | CREATE TABLE table_name_22 (driver VARCHAR, engine VARCHAR, chassis VARCHAR) |
SELECT english_title FROM table_1893815_1 WHERE album_number = "2nd" | Name the english title for album # 2nd | CREATE TABLE table_1893815_1 (english_title VARCHAR, album_number VARCHAR) |
SELECT MIN(game) FROM table_name_98 WHERE location_attendance = "alexander memorial coliseum" AND date = "october 16" | What is the least game that was played in Alexander Memorial Coliseum on October 16? | CREATE TABLE table_name_98 (
game INTEGER,
location_attendance VARCHAR,
date VARCHAR
) |
SELECT constructor FROM table_name_3 WHERE driver = "alberto colombo" AND chassis = "a1" | Tell me the constructor for alberto colombo and chassis of a1 | CREATE TABLE table_name_3 (constructor VARCHAR, driver VARCHAR, chassis VARCHAR) |
SELECT COUNT(samples_taken) FROM table_18943444_1 WHERE product = "嬰幼兒配方乳粉2段基粉" | How many samples were taken of 嬰幼兒配方乳粉2段基粉 ? | CREATE TABLE table_18943444_1 (samples_taken VARCHAR, product VARCHAR) |
SELECT attendance FROM table_name_13 WHERE result = "l12–21" | What Attendance has a Result of l12 21? | CREATE TABLE table_name_13 (
attendance VARCHAR,
result VARCHAR
) |
SELECT constructor FROM table_name_24 WHERE driver = "clay regazzoni" | Tell me the constructor for clay regazzoni | CREATE TABLE table_name_24 (constructor VARCHAR, driver VARCHAR) |
SELECT producer FROM table_18943444_1 WHERE product = "磊磊牌嬰幼兒配方乳粉" | What are the producers of 磊磊牌嬰幼兒配方乳粉 ? | CREATE TABLE table_18943444_1 (producer VARCHAR, product VARCHAR) |
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.diagnosis = "CHEST PAIN" AND demographic.days_stay > "1" | how many patients are diagnosed with primary disease chest pain and stayed in hospital for more than 1 day? | 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 chassis FROM table_name_29 WHERE entrant = "team tissot ensign" AND driver = "brett lunger" | Tell me the chassis for team tissot ensign and driver of brett lunger | CREATE TABLE table_name_29 (chassis VARCHAR, entrant VARCHAR, driver VARCHAR) |
SELECT MIN(samples_taken) FROM table_18943444_1 WHERE product = "蒙牛牌嬰幼兒配方乳粉" | What is the smallest amount sampled of product 蒙牛牌嬰幼兒配方乳粉 ? | CREATE TABLE table_18943444_1 (samples_taken INTEGER, product VARCHAR) |
SELECT nation FROM table_name_29 WHERE total > 3 AND bronze > 5 AND silver < 4 | What nation has a total more than 3, with more than 5 for bronze, and less than 4 for the silver? | CREATE TABLE table_name_29 (
nation VARCHAR,
silver VARCHAR,
total VARCHAR,
bronze VARCHAR
) |
SELECT tyres FROM table_name_46 WHERE driver = "hans binder" | I want the tyres for hans binder | CREATE TABLE table_name_46 (tyres VARCHAR, driver VARCHAR) |
SELECT producer FROM table_18943444_1 WHERE product = "金必氏牌嬰幼兒配方乳粉" | Who is the producer of 金必氏牌嬰幼兒配方乳粉 ? | CREATE TABLE table_18943444_1 (producer VARCHAR, product VARCHAR) |
SELECT COUNT("protein") FROM table_203_589 | how many prions have been characterized ? | CREATE TABLE table_203_589 (
id number,
"protein" text,
"natural host" text,
"normal function" text,
"prion state" text,
"prion phenotype" text,
"year identified" number
) |
SELECT constructor FROM table_name_54 WHERE rounds = "1-2" AND driver = "divina galica" | I want the constructor for divina galica rounds of 1-2 | CREATE TABLE table_name_54 (constructor VARCHAR, rounds VARCHAR, driver VARCHAR) |
SELECT live_births_per_year FROM table_18950570_2 WHERE life_expectancy_females = "73.3" | How many live births per year are there in the period where the life expectancy for females is 73.3? | CREATE TABLE table_18950570_2 (live_births_per_year VARCHAR, life_expectancy_females VARCHAR) |
SELECT party FROM table_1805191_34 WHERE first_elected = 1998 | Which party was elected first in 1998? | CREATE TABLE table_1805191_34 (
party VARCHAR,
first_elected VARCHAR
) |
SELECT opponent FROM table_name_16 WHERE date = "june 3" | What team did the Red Sox play against on June 3? | CREATE TABLE table_name_16 (opponent VARCHAR, date VARCHAR) |
SELECT live_births_per_year FROM table_18950570_2 WHERE deaths_per_year = "998 000" | How many births per year are there for the period with 998 000 deaths per year? | CREATE TABLE table_18950570_2 (live_births_per_year VARCHAR, deaths_per_year VARCHAR) |
SELECT COUNT(position) FROM table_10975034_5 WHERE pick__number = 43 | What is the number of position where the pick number is 43? | CREATE TABLE table_10975034_5 (
position VARCHAR,
pick__number VARCHAR
) |
SELECT record FROM table_name_22 WHERE attendance = "21,191" | What was the Record at the game that had an attendance of 21,191? | CREATE TABLE table_name_22 (record VARCHAR, attendance VARCHAR) |
SELECT MAX(col__m_) FROM table_18946749_4 WHERE prominence__m_ = 3755 | What is the highest value for col(m) when prominence(m) is 3755? | CREATE TABLE table_18946749_4 (col__m_ INTEGER, prominence__m_ VARCHAR) |
SELECT MIN(year) FROM table_12275654_1 WHERE mens_singles = "Chetan Anand" | When did Chetan Anand win his first men's single? | CREATE TABLE table_12275654_1 (
year INTEGER,
mens_singles VARCHAR
) |
SELECT score FROM table_name_74 WHERE date = "june 17" | What was the final score of the game on June 17? | CREATE TABLE table_name_74 (score VARCHAR, date VARCHAR) |
SELECT MAX(col__m_) FROM table_18946749_4 WHERE island = "North island" | What is the highest value for col(m) at North Island? | CREATE TABLE table_18946749_4 (col__m_ INTEGER, island VARCHAR) |
SELECT COUNT("Points") FROM table_15127 WHERE "Entrant" = 'beta team march' AND "Year" = '1975' AND "Chassis" = 'march 751' | Name the total number of points for beta team march 1975 and chassis of march 751 | CREATE TABLE table_15127 (
"Year" real,
"Entrant" text,
"Chassis" text,
"Engine" text,
"Points" real
) |
SELECT 1 AS st_ship_delivery_date FROM table_name_87 WHERE total_number_of_ways = "6 ways" | What is the 1st ship delivery date of 6 ways? | CREATE TABLE table_name_87 (total_number_of_ways VARCHAR) |
SELECT MIN(elevation__m_) FROM table_18946749_4 WHERE peak = "Mount Taylor" | What is the lowest elevation(m) for the peak Mount Taylor? | CREATE TABLE table_18946749_4 (elevation__m_ INTEGER, peak VARCHAR) |
SELECT SUM(prescriptions.dose_val_rx) FROM prescriptions WHERE prescriptions.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 16554) AND prescriptions.drug = 'bisacodyl' AND STRFTIME('%y-%m', prescriptions.startdate) >= '2105-01' | what is the amount of bisacodyl dose prescribed to patient 16554 since 01/2105? | CREATE TABLE d_icd_diagnoses (
row_id number,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE patients (
row_id number,
subject_id number,
gender text,
dob time,
dod time
)
CREATE TABLE prescriptions (
row_id number,
subject_id number,
hadm_id number,
... |
SELECT final FROM table_name_44 WHERE athlete = "mohammad reza samadi" | What was the final round result of Mohammad Reza Samadi? | CREATE TABLE table_name_44 (final VARCHAR, athlete VARCHAR) |
SELECT COUNT(prominence__m_) FROM table_18946749_4 WHERE rank = 5 | How many values of prominence(m) occur at rank 5? | CREATE TABLE table_18946749_4 (prominence__m_ VARCHAR, rank VARCHAR) |
SELECT "Score" FROM table_57752 WHERE "Home" = 'colorado' AND "Date" = 'may 11' | What is the Score with a Home of colorado, and a Date with may 11? | CREATE TABLE table_57752 (
"Date" text,
"Visitor" text,
"Score" text,
"Home" text,
"Series" text
) |
SELECT home_team AS score FROM table_name_53 WHERE home_team = "footscray" | When the Home team of footscray is playing, what's the Home team score? | CREATE TABLE table_name_53 (home_team VARCHAR) |
SELECT brazil_100_percentage__percent_of_the_population_ FROM table_18950570_4 WHERE age_group = "15-17" | what ae all of the brazil 100% where the age group is 15-17? | CREATE TABLE table_18950570_4 (brazil_100_percentage__percent_of_the_population_ VARCHAR, age_group VARCHAR) |
SELECT "1st Party" FROM table_71749 WHERE "Election" = '1847' | Which 1st Party has an election in 1847? | CREATE TABLE table_71749 (
"Election" text,
"1st Member" text,
"1st Party" text,
"2nd Member" text,
"2nd Party" text
) |
SELECT song_title FROM table_name_78 WHERE chart_peak = "#1" AND track = 20 | What was the title of the song that peaked the charts at #1 with track 20? | CREATE TABLE table_name_78 (song_title VARCHAR, chart_peak VARCHAR, track VARCHAR) |
SELECT interval_name FROM table_18955077_1 WHERE size__cents_ = 560 AND just_ratio = "11:8" | If the just ratio is 11:8 and the cents size is 560, what is the interval name? | CREATE TABLE table_18955077_1 (interval_name VARCHAR, size__cents_ VARCHAR, just_ratio VARCHAR) |
SELECT nation FROM table_name_27 WHERE silver > 0 AND rank = "1" | What nation has more than 0 silver medals and is ranked 1? | CREATE TABLE table_name_27 (
nation VARCHAR,
silver VARCHAR,
rank VARCHAR
) |
SELECT time FROM table_name_29 WHERE song_title = "treat me nice" | What is the time from the song called Treat Me Nice? | CREATE TABLE table_name_29 (time VARCHAR, song_title VARCHAR) |
SELECT just_ratio FROM table_18955077_1 WHERE just__cents_ = "84.46" | If the just cents is 84.46, what is the just ratio? | CREATE TABLE table_18955077_1 (just_ratio VARCHAR, just__cents_ VARCHAR) |
SELECT to_par FROM table_name_42 WHERE score = 67 - 68 - 76 = 211 | what is the to par when the score is 67-68-76=211? | CREATE TABLE table_name_42 (
to_par VARCHAR,
score VARCHAR
) |
SELECT copyright_information FROM table_name_7 WHERE publisher = "random house" | What was Random House's copyright information? | CREATE TABLE table_name_7 (copyright_information VARCHAR, publisher VARCHAR) |
SELECT interval_name FROM table_18955077_1 WHERE just__cents_ = "701.96" | If the just cents is 701.96, what is the interval name? | CREATE TABLE table_18955077_1 (interval_name VARCHAR, just__cents_ VARCHAR) |
SELECT DISTINCT COUNT(paper.paperid) FROM paper, venue WHERE paper.year = 2016 AND venue.venueid = paper.venueid AND venue.venuename = 'emnlp' | how many papers in emnlp 2016 | CREATE TABLE writes (
paperid int,
authorid int
)
CREATE TABLE journal (
journalid int,
journalname varchar
)
CREATE TABLE cite (
citingpaperid int,
citedpaperid int
)
CREATE TABLE venue (
venueid int,
venuename varchar
)
CREATE TABLE author (
authorid int,
authorname varchar... |
SELECT release_date FROM table_name_19 WHERE isbn = 0 AND year = 1992 | What was release date in 1992 with the ISBN #0? | CREATE TABLE table_name_19 (release_date VARCHAR, isbn VARCHAR, year VARCHAR) |
SELECT MAX(asian_american_population__2010_) FROM table_18963843_1 WHERE combined_statistical_area = "Kansas City-Overland Park-Kansas City, MO-KS CSA" | Name the asian american population 2010 for kansas city-overland park-kansas city, mo-ks csa | CREATE TABLE table_18963843_1 (asian_american_population__2010_ INTEGER, combined_statistical_area VARCHAR) |
SELECT "Club" FROM table_67688 WHERE "Lost" = '9' AND "Tries for" = '55' | What is the Club, when the value for Lost is 9, and when the value for Tries is 55? | CREATE TABLE table_67688 (
"Club" text,
"Played" text,
"Drawn" text,
"Lost" text,
"Points for" text,
"Points against" text,
"Tries for" text,
"Tries against" text,
"Try bonus" text,
"Losing bonus" text,
"Points" text
) |
SELECT club_team FROM table_name_70 WHERE overall = 216 | What club team has 216 overall? | CREATE TABLE table_name_70 (club_team VARCHAR, overall VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.