instruction stringlengths 0 1.06k | input stringlengths 11 5.3k | response stringlengths 2 4.44k |
|---|---|---|
What is the Team with a Score that is w 101 97 (2ot)? | CREATE TABLE table_40501 ("Game" real,"Date" text,"Team" text,"Score" text,"High points" text,"High rebounds" text,"Location Attendance" text,"Record" text) | SELECT "Team" FROM table_40501 WHERE "Score" = 'w 101–97 (2ot)' |
Which General classification has a Stage of 7? | CREATE TABLE table_52601 ("Stage" text,"Winner" text,"General classification" text,"Points classification" text,"Trofeo Fast Team" text) | SELECT "General classification" FROM table_52601 WHERE "Stage" = '7' |
in 2105, patient 28600 has made an admission? | CREATE TABLE d_items (row_id number,itemid number,label text,linksto text)CREATE TABLE patients (row_id number,subject_id number,gender text,dob time,dod time)CREATE TABLE outputevents (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,value number)CREATE TABLE d_icd_procedur... | SELECT COUNT(*) > 0 FROM admissions WHERE admissions.subject_id = 28600 AND STRFTIME('%y', admissions.admittime) = '2105' |
since 37 months ago, what was the last drug patient 005-77687 was prescribed via the imv route? | CREATE TABLE microlab (microlabid number,patientunitstayid number,culturesite text,organism text,culturetakentime time)CREATE TABLE allergy (allergyid number,patientunitstayid number,drugname text,allergyname text,allergytime time)CREATE TABLE intakeoutput (intakeoutputid number,patientunitstayid number,cellpath text,c... | SELECT medication.drugname FROM medication WHERE medication.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '005-77687')) AND medication.routeadmin = 'imv' AND DATETIME(medicat... |
What is Prize, when Name is 'Valdemar Kwaysser'? | CREATE TABLE table_43940 ("Rank" text,"Event" text,"Place" text,"Name" text,"Prize" text) | SELECT "Prize" FROM table_43940 WHERE "Name" = 'valdemar kwaysser' |
what is the number of patients on pb route of drug administration who are diagnosed with hypothyroidism nos? | 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 (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title ... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE diagnoses.short_title = "Hypothyroidism NOS" AND prescriptions.route = "PB" |
9:30 PM when the 8:00 PM is l'auberge du chien noir? | CREATE TABLE table_10416 ("7:00 PM" text,"8:00 PM" text,"8:30 PM" text,"9:00 PM" text,"9:30 PM" text,"10:00 PM" text) | SELECT "9:30 PM" FROM table_10416 WHERE "8:00 PM" = 'l''auberge du chien noir' |
What are the candidates in the district whose incumbent is Gus Yatron? | CREATE TABLE table_1341604_39 (candidates VARCHAR,incumbent VARCHAR) | SELECT candidates FROM table_1341604_39 WHERE incumbent = "Gus Yatron" |
Name the outcome for aliz cornet janette hus rov being opponent in final | CREATE TABLE table_name_97 (outcome VARCHAR,opponent_in_final VARCHAR) | SELECT outcome FROM table_name_97 WHERE opponent_in_final = "alizé cornet janette husárová" |
Name the most rank for 2 gold | CREATE TABLE table_24955 ("Rank" real,"Athlete" text,"Nation" text,"Olympics" text,"Gold" real,"Silver" real,"Bronze" real,"Total(min. 2 medals)" real) | SELECT MIN("Rank") FROM table_24955 WHERE "Gold" = '2' |
number of models manufactured in france | CREATE TABLE table_204_161 (id number,"name" text,"1968 cf\ndesignator" text,"place of\nmanufacture" text,"primary\nrole(s)" text,"service\nperiod" text,"#\nused" number) | SELECT COUNT("name") FROM table_204_161 WHERE "place of\nmanufacture" = 'france' |
Which Yacht Club is part of the America 3 Foundation syndicate on the America 3 yacht? | CREATE TABLE table_name_84 (yacht VARCHAR,syndicate VARCHAR) | SELECT yacht AS Club FROM table_name_84 WHERE syndicate = "america 3 foundation" AND yacht = "america 3" |
Show weight from each date of birth, list X in desc order. | CREATE TABLE candidate (Candidate_ID int,People_ID int,Poll_Source text,Date text,Support_rate real,Consider_rate real,Oppose_rate real,Unsure_rate real)CREATE TABLE people (People_ID int,Sex text,Name text,Date_of_Birth text,Height real,Weight real) | SELECT Date_of_Birth, Weight FROM people ORDER BY Date_of_Birth DESC |
I want to see trend of the number of yearid by yearid, and display x-axis in ascending order. | CREATE TABLE salary (year INTEGER,team_id TEXT,league_id TEXT,player_id TEXT,salary INTEGER)CREATE TABLE fielding_outfield (player_id TEXT,year INTEGER,stint INTEGER,glf NUMERIC,gcf NUMERIC,grf NUMERIC)CREATE TABLE batting_postseason (year INTEGER,round TEXT,player_id TEXT,team_id TEXT,league_id TEXT,g INTEGER,ab INTEG... | SELECT yearid, COUNT(yearid) FROM hall_of_fame ORDER BY yearid |
What is the home team for punt road oval? | CREATE TABLE table_74668 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT "Home team" FROM table_74668 WHERE "Venue" = 'punt road oval' |
Name of choice b. Randell is the name of which District Residence? | CREATE TABLE table_name_4 (district_residence VARCHAR,name VARCHAR) | SELECT district_residence FROM table_name_4 WHERE name = "choice b. randell" |
What is the famous release date of the artist with the oldest age? | CREATE TABLE artist (artist_id number,artist text,age number,famous_title text,famous_release_date text)CREATE TABLE volume (volume_id number,volume_issue text,issue_date text,weeks_on_top number,song text,artist_id number)CREATE TABLE music_festival (id number,music_festival text,date_of_ceremony text,category text,vo... | SELECT famous_release_date FROM artist ORDER BY age DESC LIMIT 1 |
Which rank has canada as the country? | CREATE TABLE table_41386 ("Publication" text,"Country" text,"Accolade" text,"Year" real,"Rank" text) | SELECT "Rank" FROM table_41386 WHERE "Country" = 'canada' |
What's Ontario's highest Ends Lost? | CREATE TABLE table_5427 ("Locale" text,"Skip" text,"Ends Won" real,"Ends Lost" real,"Blank Ends" real,"Stolen Ends" real,"Shot Pct." real) | SELECT MAX("Ends Lost") FROM table_5427 WHERE "Locale" = 'ontario' |
Find the Unikitties!(For The Bridge). Made to annoy nobody! | CREATE TABLE PostNoticeTypes (Id number,ClassId number,Name text,Body text,IsHidden boolean,Predefined boolean,PostNoticeDurationId number)CREATE TABLE Posts (Id number,PostTypeId number,AcceptedAnswerId number,ParentId number,CreationDate time,DeletionDate time,Score number,ViewCount number,Body text,OwnerUserId numbe... | SELECT Users.Id AS "user_link", Reputation, Views AS "profile_views" FROM Users WHERE NOT AccountId IS NULL AND Users.DisplayName LIKE 'Uni%' ORDER BY DisplayName DESC LIMIT 1000 |
Tell me the runner-up for majorca | CREATE TABLE table_name_30 (runner_up VARCHAR,tournament VARCHAR) | SELECT runner_up FROM table_name_30 WHERE tournament = "majorca" |
Users rep versus downvote ratio. | CREATE TABLE Posts (Id number,PostTypeId number,AcceptedAnswerId number,ParentId number,CreationDate time,DeletionDate time,Score number,ViewCount number,Body text,OwnerUserId number,OwnerDisplayName text,LastEditorUserId number,LastEditorDisplayName text,LastEditDate time,LastActivityDate time,Title text,Tags text,Ans... | SELECT LOG10(Reputation) AS Rep, CAST(CAST(UpVotes AS FLOAT) / CAST(DownVotes AS FLOAT) AS FLOAT(10, 2)) AS Ratio FROM Users WHERE DownVotes >= 1 AND UpVotes + DownVotes > 1 AND Reputation > 10 AND Id > 0 ORDER BY 'ratio' DESC |
What is the finish position for cars by Pontiac driven by Bobby Hamilton? | CREATE TABLE table_27514362_7 (pos VARCHAR,car_make VARCHAR,driver VARCHAR) | SELECT pos FROM table_27514362_7 WHERE car_make = "Pontiac" AND driver = "Bobby Hamilton" |
When did the woman who died at 31 first contact Hitlers? | CREATE TABLE table_38012 ("Name" text,"Life" text,"Age at death" text,"First contact with Hitler" text,"Relationship" text) | SELECT "First contact with Hitler" FROM table_38012 WHERE "Age at death" = '31' |
which episode aired after marion the superfluous feed character ? | CREATE TABLE table_204_997 (id number,"#" text,"title" text,"celebrity guest(s)" text,"directed by" text,"written by" text,"original airdate" text) | SELECT "title" FROM table_204_997 WHERE id = (SELECT id FROM table_204_997 WHERE "title" = '"marion the superfluous feed character"') + 1 |
What lost has 86 points? | CREATE TABLE table_name_67 (lost VARCHAR,points VARCHAR) | SELECT lost FROM table_name_67 WHERE points = "86" |
What is the hioghest amount of silver medals for a nation ranked higher than 19 and less than 2 gold medals? | CREATE TABLE table_name_75 (silver INTEGER,rank VARCHAR,gold VARCHAR) | SELECT MAX(silver) FROM table_name_75 WHERE rank = "19" AND gold < 2 |
Show me about the distribution of All_Neutral and ACC_Percent in a bar chart. | CREATE TABLE university (School_ID int,School text,Location text,Founded real,Affiliation text,Enrollment real,Nickname text,Primary_conference text)CREATE TABLE basketball_match (Team_ID int,School_ID int,Team_Name text,ACC_Regular_Season text,ACC_Percent text,ACC_Home text,ACC_Road text,All_Games text,All_Games_Perce... | SELECT All_Neutral, ACC_Percent FROM basketball_match |
what are the three year survival rates of patients who had been prescribed lisinopril 2.5 mg po tabs after having been diagnosed with valvular insufficiency - tricuspid valve? | CREATE TABLE cost (costid number,uniquepid text,patienthealthsystemstayid number,eventtype text,eventid number,chargetime time,cost number)CREATE TABLE lab (labid number,patientunitstayid number,labname text,labresult number,labresulttime time)CREATE TABLE treatment (treatmentid number,patientunitstayid number,treatmen... | SELECT SUM(CASE WHEN patient.hospitaldischargestatus = 'alive' THEN 1 WHEN STRFTIME('%j', patient.hospitaldischargetime) - STRFTIME('%j', t4.diagnosistime) > 3 * 365 THEN 1 ELSE 0 END) * 100 / COUNT(*) FROM (SELECT t2.uniquepid, t2.diagnosistime FROM (SELECT t1.uniquepid, t1.diagnosistime FROM (SELECT patient.uniquepid... |
Who were the winner and nominees in 2001? | CREATE TABLE table_name_27 (winner_nominee_s_ VARCHAR,year VARCHAR) | SELECT winner_nominee_s_ FROM table_name_27 WHERE year = 2001 |
What is the total attendance at games with a score of 4-2? | CREATE TABLE table_68750 ("Date" text,"Opponent" text,"Score" text,"Loss" text,"Attendance" real,"Record" text) | SELECT COUNT("Attendance") FROM table_68750 WHERE "Score" = '4-2' |
Who were the comedians during the episode located in Birmingham Hippodrome? | CREATE TABLE table_2774 ("Episode" text,"Location" text,"Headliner" text,"Comedians" text,"Airdate" text) | SELECT "Comedians" FROM table_2774 WHERE "Location" = 'Birmingham Hippodrome' |
What was the Browns record after they played the game at the Paul Brown stadium? | CREATE TABLE table_33636 ("Week" real,"Date" text,"Opponent" text,"Result" text,"Stadium" text,"Record" text,"Attendance" text) | SELECT "Record" FROM table_33636 WHERE "Stadium" = 'paul brown stadium' |
Return a bar chart on what is the average age for each gender?, and rank by the y-axis from low to high. | CREATE TABLE Person (name varchar(20),age INTEGER,city TEXT,gender TEXT,job TEXT)CREATE TABLE PersonFriend (name varchar(20),friend varchar(20),year INTEGER) | SELECT gender, AVG(age) FROM Person GROUP BY gender ORDER BY AVG(age) |
What season had a downhill of 35 and overall greater than 21? | CREATE TABLE table_43741 ("Season" real,"Overall" real,"Slalom" text,"Giant Slalom" real,"Super G" text,"Downhill" text,"Combined" text) | SELECT COUNT("Season") FROM table_43741 WHERE "Downhill" = '35' AND "Overall" > '21' |
Top 100 users from Bangladesh. | CREATE TABLE ReviewTaskResultTypes (Id number,Name text,Description text)CREATE TABLE PostFeedback (Id number,PostId number,IsAnonymous boolean,VoteTypeId number,CreationDate time)CREATE TABLE SuggestedEditVotes (Id number,SuggestedEditId number,UserId number,VoteTypeId number,CreationDate time,TargetUserId number,Targ... | SELECT ROW_NUMBER() OVER (ORDER BY Reputation DESC) AS "#", Id AS "user_link", Reputation FROM Users WHERE LOWER(Location) LIKE '%bangladesh%' OR UPPER(Location) LIKE '%bd' ORDER BY Reputation DESC LIMIT 100 |
Name the incorporated for principal activites of travel agency | CREATE TABLE table_67422 ("Company" text,"Type" text,"Principal activities" text,"Incorporated in" text,"Group's Equity Shareholding (10 March 2010)" text) | SELECT "Incorporated in" FROM table_67422 WHERE "Principal activities" = 'travel agency' |
How many series were directed by Rob Renzetti? | CREATE TABLE table_18734298_1 (no_in_series VARCHAR,directed_by VARCHAR) | SELECT COUNT(no_in_series) FROM table_18734298_1 WHERE directed_by = "Rob Renzetti" |
What is the title of the film that has the highest high market estimation. | CREATE TABLE film (Film_ID VARCHAR)CREATE TABLE film_market_estimation (Film_ID VARCHAR) | SELECT t1.title FROM film AS T1 JOIN film_market_estimation AS T2 ON T1.Film_ID = T2.Film_ID ORDER BY high_estimate DESC LIMIT 1 |
Which Team has a round 1 CONMEBOL 1995? | CREATE TABLE table_38607 ("Team" text,"Recopa 1995" text,"Supercopa 1995" text,"CONMEBOL 1995" text,"Copa Libertadores 1996" text) | SELECT "Team" FROM table_38607 WHERE "CONMEBOL 1995" = 'round 1' |
What is the Score on January 23? | CREATE TABLE table_46084 ("Date" text,"Visitor" text,"Score" text,"Home" text,"Record" text) | SELECT "Score" FROM table_46084 WHERE "Date" = 'january 23' |
Bar chart of department_id from each first name, and show in ascending by the y-axis. | CREATE TABLE departments (DEPARTMENT_ID decimal(4,0),DEPARTMENT_NAME varchar(30),MANAGER_ID decimal(6,0),LOCATION_ID decimal(4,0))CREATE TABLE jobs (JOB_ID varchar(10),JOB_TITLE varchar(35),MIN_SALARY decimal(6,0),MAX_SALARY decimal(6,0))CREATE TABLE employees (EMPLOYEE_ID decimal(6,0),FIRST_NAME varchar(20),LAST_NAME ... | SELECT FIRST_NAME, DEPARTMENT_ID FROM employees ORDER BY DEPARTMENT_ID |
In what year was Xavier Malisse the runner-up with scores of 4 6, 6 4, [8 10]? | CREATE TABLE table_41525 ("Outcome" text,"Year" text,"Championship" text,"Surface" text,"Partner" text,"Opponents" text,"Score" text) | SELECT "Year" FROM table_41525 WHERE "Outcome" = 'runner-up' AND "Score" = '4–6, 6–4, [8–10]' |
when was the last time that patient 022-199074 was prescribed a medication via the oral mucosa route in their current hospital visit? | CREATE TABLE microlab (microlabid number,patientunitstayid number,culturesite text,organism text,culturetakentime time)CREATE TABLE allergy (allergyid number,patientunitstayid number,drugname text,allergyname text,allergytime time)CREATE TABLE vitalperiodic (vitalperiodicid number,patientunitstayid number,temperature n... | SELECT medication.drugstarttime FROM medication WHERE medication.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '022-199074' AND patient.hospitaldischargetime IS NULL)) AND me... |
Which Venue was used when the Home team was geelong? | CREATE TABLE table_name_47 (venue VARCHAR,home_team VARCHAR) | SELECT venue FROM table_name_47 WHERE home_team = "geelong" |
Which game modes have Pinyin of ch oj m l u sh ji ? | CREATE TABLE table_name_13 (game_modes VARCHAR,pinyin VARCHAR) | SELECT game_modes FROM table_name_13 WHERE pinyin = "chāojí mǎlìōu shìjiè" |
how man episodes in the season were titled 'that's so sonny'? | CREATE TABLE table_74203 ("No. in series" text,"No. in season" text,"Title" text,"Directed by" text,"Written by" text,"Original air date" text,"Prod. code" text,"U.S. viewers (millions)" text) | SELECT COUNT("No. in season") FROM table_74203 WHERE "Title" = 'That''s So Sonny' |
What is total amount of points for the 2007 season? | CREATE TABLE table_36661 ("Season" real,"Driver" text,"Team" text,"Tyre" text,"Points" real) | SELECT SUM("Points") FROM table_36661 WHERE "Season" = '2007' |
where is jamerican cuisine in san francisco ? | CREATE TABLE restaurant (id int,name varchar,food_type varchar,city_name varchar,rating "decimal)CREATE TABLE location (restaurant_id int,house_number int,street_name varchar,city_name varchar)CREATE TABLE geographic (city_name varchar,county varchar,region varchar) | SELECT location.house_number, restaurant.name FROM location, restaurant WHERE location.city_name = 'san francisco' AND restaurant.id = location.restaurant_id AND restaurant.name = 'jamerican cuisine' |
Name the nationality for pick of 16 | CREATE TABLE table_name_12 (nationality VARCHAR,pick VARCHAR) | SELECT nationality FROM table_name_12 WHERE pick = 16 |
How many Events have a Country of trinidad and tobago, and a Date of march 30-april 1? | CREATE TABLE table_65794 ("Edition" text,"Year" text,"City" text,"Country" text,"Date" text,"No. of Events" real,"Top Team" text) | SELECT "No. of Events" FROM table_65794 WHERE "Country" = 'trinidad and tobago' AND "Date" = 'march 30-april 1' |
Return the lot details of lots that belong to investors with details 'l', and count them by a bar chart, and I want to rank by the bar in descending. | CREATE TABLE Ref_Transaction_Types (transaction_type_code VARCHAR(10),transaction_type_description VARCHAR(80))CREATE TABLE Investors (investor_id INTEGER,Investor_details VARCHAR(255))CREATE TABLE Transactions (transaction_id INTEGER,investor_id INTEGER,transaction_type_code VARCHAR(10),date_of_transaction DATETIME,am... | SELECT lot_details, COUNT(lot_details) FROM Investors AS T1 JOIN Lots AS T2 ON T1.investor_id = T2.investor_id WHERE T1.Investor_details = "l" GROUP BY lot_details ORDER BY lot_details DESC |
When was Shannon Long the Centerfold model? | CREATE TABLE table_41912 ("Date" text,"Cover model" text,"Centerfold model" text,"Interview subject" text,"20 Questions" text) | SELECT "Date" FROM table_41912 WHERE "Centerfold model" = 'shannon long' |
What is the total GNIS Feature ID with a County of idaho? | CREATE TABLE table_54093 ("Name" text,"GNIS Feature ID" real,"State" text,"County" text,"Type" text,"USGS 7.5' Map" text) | SELECT SUM("GNIS Feature ID") FROM table_54093 WHERE "County" = 'idaho' |
Which runner-up has a 10 strokes margin of victory? | CREATE TABLE table_71517 ("Date" text,"Tournament" text,"Winning score" text,"Margin of victory" text,"Runner-up" text) | SELECT "Runner-up" FROM table_71517 WHERE "Margin of victory" = '10 strokes' |
What are the ids and details for all organizations that have grants of more than 6000 dollars. | CREATE TABLE Research_Staff (staff_id INTEGER,employer_organisation_id INTEGER,staff_details VARCHAR(255))CREATE TABLE Documents (document_id INTEGER,document_type_code VARCHAR(10),grant_id INTEGER,sent_date DATETIME,response_received_date DATETIME,other_details VARCHAR(255))CREATE TABLE Projects (project_id INTEGER,or... | SELECT T2.organisation_details, T1.organisation_id FROM Grants AS T1 JOIN Organisations AS T2 ON T1.organisation_id = T2.organisation_id GROUP BY T2.organisation_details |
how much chest tube did patient 013-28507 produce today? | CREATE TABLE microlab (microlabid number,patientunitstayid number,culturesite text,organism text,culturetakentime time)CREATE TABLE treatment (treatmentid number,patientunitstayid number,treatmentname text,treatmenttime time)CREATE TABLE diagnosis (diagnosisid number,patientunitstayid number,diagnosisname text,diagnosi... | SELECT SUM(intakeoutput.cellvaluenumeric) FROM intakeoutput WHERE intakeoutput.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '013-28507')) AND intakeoutput.celllabel = 'chest... |
What is the first election year listed? | CREATE TABLE table_1341472_20 (first_elected INTEGER) | SELECT MIN(first_elected) FROM table_1341472_20 |
When was the delevery date when there were 12 ways of delivery? | CREATE TABLE table_16878 ("Yard Name" text,"Location (city,state)" text,"1st Ship Delivery Date" text,"Ship Types Delivered" text,"Total Number of Ways" text,"total vessels built" text) | SELECT "1st Ship Delivery Date" FROM table_16878 WHERE "Total Number of Ways" = '12 ways' |
Name the district for nairs 8.2 | CREATE TABLE table_23214055_2 (district VARCHAR,nairs VARCHAR) | SELECT district FROM table_23214055_2 WHERE nairs = "8.2" |
Top users: Santiago de Chile. List of Santiago-based users by reputation score.
Forked from an original query by BoltClock. | CREATE TABLE TagSynonyms (Id number,SourceTagName text,TargetTagName text,CreationDate time,OwnerUserId number,AutoRenameCount number,LastAutoRename time,Score number,ApprovedByUserId number,ApprovalDate time)CREATE TABLE Users (Id number,Reputation number,CreationDate time,DisplayName text,LastAccessDate time,WebsiteU... | SELECT ROW_NUMBER() OVER (ORDER BY Reputation DESC) AS "#", Id AS "user_link", Reputation FROM Users WHERE LOWER(Location) LIKE '%santiago%chile%' ORDER BY Reputation DESC |
What are the name of the players who received a card in descending order of the hours of training? | CREATE TABLE college (cname text,state text,enr number)CREATE TABLE player (pid number,pname text,ycard text,hs number)CREATE TABLE tryout (pid number,cname text,ppos text,decision text) | SELECT pname FROM player WHERE ycard = 'yes' ORDER BY hs DESC |
What is the listed chord for a Minor seventh of F? | CREATE TABLE table_64375 ("Chord" text,"Root" text,"Major third" text,"Augmented fifth" text,"Minor seventh" text) | SELECT "Chord" FROM table_64375 WHERE "Minor seventh" = 'f' |
Return a bar chart about the distribution of ACC_Road and the amount of ACC_Road , and group by attribute ACC_Road, and list in descending by the Y-axis. | CREATE TABLE university (School_ID int,School text,Location text,Founded real,Affiliation text,Enrollment real,Nickname text,Primary_conference text)CREATE TABLE basketball_match (Team_ID int,School_ID int,Team_Name text,ACC_Regular_Season text,ACC_Percent text,ACC_Home text,ACC_Road text,All_Games text,All_Games_Perce... | SELECT ACC_Road, COUNT(ACC_Road) FROM basketball_match GROUP BY ACC_Road ORDER BY COUNT(ACC_Road) DESC |
What day was the total smaller than 19 at Venue of anz stadium? | CREATE TABLE table_name_42 (date VARCHAR,total VARCHAR,venue VARCHAR) | SELECT date FROM table_name_42 WHERE total < 19 AND venue = "anz stadium" |
What is the connection with Australia when the connection with America shows born in the u.s.; mother is u.s. citizen? | CREATE TABLE table_name_74 (connection_with_australia VARCHAR,connection_with_america VARCHAR) | SELECT connection_with_australia FROM table_name_74 WHERE connection_with_america = "born in the u.s.; mother is u.s. citizen" |
Which 3rd round has a 1st round of ? | CREATE TABLE table_65430 ("Season" text,"1st round" text,"2nd round" text,"3rd round" text,"Finals" text) | SELECT "3rd round" FROM table_65430 WHERE "1st round" = '—' |
What is the highest Average, when Goals is '34', and when Matches is less than 37? | CREATE TABLE table_78961 ("Goalkeeper" text,"Goals" real,"Matches" real,"Average" real,"Team" text) | SELECT MAX("Average") FROM table_78961 WHERE "Goals" = '34' AND "Matches" < '37' |
What is the number of silver where the rank is higher than 4 and bronze is smaller than 1? | CREATE TABLE table_40902 ("Rank" real,"Nation" text,"Gold" real,"Silver" real,"Bronze" real,"Total" real) | SELECT COUNT("Silver") FROM table_40902 WHERE "Rank" > '4' AND "Bronze" < '1' |
Who was the opponent for the game with a score of w 94 88 (ot)? | CREATE TABLE table_27713030_11 (team VARCHAR,score VARCHAR) | SELECT team FROM table_27713030_11 WHERE score = "W 94–88 (OT)" |
What is the High rebounds with a Team that is charlotte? | CREATE TABLE table_name_68 (high_rebounds VARCHAR,team VARCHAR) | SELECT high_rebounds FROM table_name_68 WHERE team = "charlotte" |
What city has channel tv (dt) 25 (31)? | CREATE TABLE table_18791 ("City of license /Market" text,"Station" text,"Channel TV (DT)" text,"Owned since" text,"Primary affiliation" text) | SELECT "City of license /Market" FROM table_18791 WHERE "Channel TV ( DT )" = '25 (31)' |
Closed Status of All Questions by Reputation (including high-rep users). A graph what percentage of questions are closed, grouped by the reputation of the users who asked them. This graph includes high-rep users. For a zoomed in view of lower rep users (more interesting IMO) see https://data.stackexchange.com/stackover... | CREATE TABLE VoteTypes (Id number,Name text)CREATE TABLE CloseReasonTypes (Id number,Name text,Description text)CREATE TABLE FlagTypes (Id number,Name text,Description text)CREATE TABLE PendingFlags (Id number,FlagTypeId number,PostId number,CreationDate time,CloseReasonTypeId number,CloseAsOffTopicReasonTypeId number,... | SELECT AVG(CAST(ROUND(Reputation, -FLOOR(LOG(10, Reputation))) AS INT)) AS UserReputation, SUM(CASE WHEN ClosedDate IS NULL THEN 1 ELSE 0 END) / CAST(COUNT(Posts.Id) AS FLOAT) AS "PercentOpen" FROM Posts INNER JOIN Users ON (Users.Id = Posts.OwnerUserId) WHERE PostTypeId = 1 GROUP BY ROUND(Reputation, -FLOOR(LOG(10, Re... |
Find the total number of employees. | CREATE TABLE employee (Id VARCHAR) | SELECT COUNT(*) FROM employee |
What game number was played on April 23, with Boston as the road team? | CREATE TABLE table_name_73 (game VARCHAR,road_team VARCHAR,date VARCHAR) | SELECT game FROM table_name_73 WHERE road_team = "boston" AND date = "april 23" |
What was the record lowest temperature with a precipitation of 1.71 in.? | CREATE TABLE table_26558_1 (record_low VARCHAR,precip VARCHAR) | SELECT record_low FROM table_26558_1 WHERE precip = "1.71 in." |
In which venue did the home team score 10.11 (71) | CREATE TABLE table_52838 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT "Venue" FROM table_52838 WHERE "Home team score" = '10.11 (71)' |
what are the hospitals admission times of patient 002-35416 since 4 years ago? | CREATE TABLE medication (medicationid number,patientunitstayid number,drugname text,dosage text,routeadmin text,drugstarttime time,drugstoptime time)CREATE TABLE patient (uniquepid text,patienthealthsystemstayid number,patientunitstayid number,gender text,age text,ethnicity text,hospitalid number,wardid number,admissio... | SELECT patient.hospitaladmittime FROM patient WHERE patient.uniquepid = '002-35416' AND DATETIME(patient.hospitaladmittime) >= DATETIME(CURRENT_TIME(), '-4 year') |
What country is Nick Price from? | CREATE TABLE table_name_35 (country VARCHAR,player VARCHAR) | SELECT country FROM table_name_35 WHERE player = "nick price" |
count the number of patients who are dead after being diagnosed with pneumothorax during the same month the last year. | CREATE TABLE intakeoutput (intakeoutputid number,patientunitstayid number,cellpath text,celllabel text,cellvaluenumeric number,intakeoutputtime time)CREATE TABLE treatment (treatmentid number,patientunitstayid number,treatmentname text,treatmenttime time)CREATE TABLE diagnosis (diagnosisid number,patientunitstayid numb... | SELECT COUNT(DISTINCT t2.uniquepid) FROM (SELECT t1.uniquepid, t1.diagnosistime FROM (SELECT patient.uniquepid, diagnosis.diagnosistime FROM diagnosis JOIN patient ON diagnosis.patientunitstayid = patient.patientunitstayid WHERE diagnosis.diagnosisname = 'pneumothorax') AS t1 GROUP BY t1.uniquepid HAVING MIN(t1.diagnos... |
Return me a bar chart to show the average experience working length of journalists working on different role type. | CREATE TABLE journalist (journalist_ID int,Name text,Nationality text,Age text,Years_working int)CREATE TABLE event (Event_ID int,Date text,Venue text,Name text,Event_Attendance int)CREATE TABLE news_report (journalist_ID int,Event_ID int,Work_Type text) | SELECT Work_Type, AVG(Years_working) FROM journalist AS t1 JOIN news_report AS t2 ON t1.journalist_ID = t2.journalist_ID GROUP BY t2.Work_Type |
What is the score for the home team for the venue glenferrie oval? | CREATE TABLE table_57257 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT "Home team score" FROM table_57257 WHERE "Venue" = 'glenferrie oval' |
What was the attendence of the game on 26 April 1948 and an away team of Hawthorn? | CREATE TABLE table_53093 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT "Crowd" FROM table_53093 WHERE "Date" = '26 april 1948' AND "Away team" = 'hawthorn' |
find the number of patients who passed away in or before the year 2131 had lab test item id 51248. | CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)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 tex... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.dod_year <= "2131.0" AND lab.itemid = "51248" |
Count the last year of parties with theme 'Spring' or 'Teqnology' with a bar grpah, I want to rank in descending by the Y. | CREATE TABLE party (Party_ID int,Party_Theme text,Location text,First_year text,Last_year text,Number_of_hosts int)CREATE TABLE host (Host_ID int,Name text,Nationality text,Age text)CREATE TABLE party_host (Party_ID int,Host_ID int,Is_Main_in_Charge bool) | SELECT Last_year, COUNT(Last_year) FROM party WHERE Party_Theme = "Spring" OR Party_Theme = "Teqnology" GROUP BY Last_year ORDER BY COUNT(Last_year) DESC |
Name the musical guest for panelists jermaine jackson and nora sands | CREATE TABLE table_20431 ("Episode Number" real,"Air Date" text,"Guest Host" text,"Musical Guest (Song performed)" text,"Who knows the most about the guest host? panelists" text,"Coat Of Cash Wearing Celebrity" text) | SELECT "Musical Guest (Song performed)" FROM table_20431 WHERE "Who knows the most about the guest host? panelists" = 'Jermaine Jackson and Nora Sands' |
weekday , and could you order in ascending by the y-axis? | CREATE TABLE farm (Farm_ID int,Year int,Total_Horses real,Working_Horses real,Total_Cattle real,Oxen real,Bulls real,Cows real,Pigs real,Sheep_and_Goats real)CREATE TABLE competition_record (Competition_ID int,Farm_ID int,Rank int)CREATE TABLE city (City_ID int,Official_Name text,Status text,Area_km_2 real,Population r... | SELECT Year, COUNT(Year) FROM city AS T1 JOIN farm_competition AS T2 ON T1.City_ID = T2.Host_city_ID ORDER BY COUNT(Year) |
Who is the owner of RSS Racing that driver Ryan Sieg belongs to? | CREATE TABLE table_name_75 (owner_s_ VARCHAR,team VARCHAR,driver_s_ VARCHAR) | SELECT owner_s_ FROM table_name_75 WHERE team = "rss racing" AND driver_s_ = "ryan sieg" |
Posts with a score of 9. | CREATE TABLE Votes (Id number,PostId number,VoteTypeId number,UserId number,CreationDate time,BountyAmount number)CREATE TABLE PostNoticeTypes (Id number,ClassId number,Name text,Body text,IsHidden boolean,Predefined boolean,PostNoticeDurationId number)CREATE TABLE ReviewTasks (Id number,ReviewTaskTypeId number,Creatio... | SELECT Score, Id AS "post_link" FROM Posts WHERE Score = 9 AND TIME_TO_STR(CreationDate, '%YEAR') = 2016 ORDER BY CreationDate DESC |
How many captains are in each rank, and show from low to high by the x axis please. | CREATE TABLE captain (Captain_ID int,Name text,Ship_ID int,age text,Class text,Rank text)CREATE TABLE Ship (Ship_ID int,Name text,Type text,Built_Year real,Class text,Flag text) | SELECT Rank, COUNT(*) FROM captain GROUP BY Rank ORDER BY Rank |
What is the year when the Winner was the new york jets, with a Result of 24 17, played at giants stadium? | CREATE TABLE table_74998 ("Year" real,"Date" text,"Winner" text,"Result" text,"Loser" text,"Location" text) | SELECT SUM("Year") FROM table_74998 WHERE "Winner" = 'new york jets' AND "Result" = '24–17' AND "Location" = 'giants stadium' |
how many hours since patient 006-124193 was admitted to hospital? | CREATE TABLE patient (uniquepid text,patienthealthsystemstayid number,patientunitstayid number,gender text,age text,ethnicity text,hospitalid number,wardid number,admissionheight number,admissionweight number,dischargeweight number,hospitaladmittime time,hospitaladmitsource text,unitadmittime time,unitdischargetime tim... | SELECT 24 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', patient.hospitaladmittime)) FROM patient WHERE patient.uniquepid = '006-124193' AND patient.hospitaldischargetime IS NULL |
What School did Terrence Jones play for? | CREATE TABLE table_name_40 (school VARCHAR,player VARCHAR) | SELECT school FROM table_name_40 WHERE player = "terrence jones" |
how many patients aged below 67 years had an elective admission type? | CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)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... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.admission_type = "ELECTIVE" AND demographic.age < "67" |
What is the score of the away team where the home team scored 13.20 (98)? | CREATE TABLE table_51743 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT "Away team score" FROM table_51743 WHERE "Home team score" = '13.20 (98)' |
What is the end of reign for Dimitar Stojkovski? | CREATE TABLE table_42191 ("Name" text,"Start of Reign" real,"End of Reign" text,"Birth Name" text,"Title" text) | SELECT "End of Reign" FROM table_42191 WHERE "Birth Name" = 'dimitar stojkovski' |
Who is the writer of the film Run? | CREATE TABLE table_name_14 (writer VARCHAR,film VARCHAR) | SELECT writer FROM table_name_14 WHERE film = "run" |
Count the number of trips that did not end in San Francisco city. | CREATE TABLE trip (id number,duration number,start_date text,start_station_name text,start_station_id number,end_date text,end_station_name text,end_station_id number,bike_id number,subscription_type text,zip_code number)CREATE TABLE status (station_id number,bikes_available number,docks_available number,time text)CREA... | SELECT COUNT(*) FROM trip AS T1 JOIN station AS T2 ON T1.end_station_id = T2.id WHERE T2.city <> "San Francisco" |
WHich Partner has a Outcome of winner, and a Opponents in the final of rick leach jim pugh? | CREATE TABLE table_name_3 (partner VARCHAR,outcome VARCHAR,opponents_in_the_final VARCHAR) | SELECT partner FROM table_name_3 WHERE outcome = "winner" AND opponents_in_the_final = "rick leach jim pugh" |
How many years was the 2nd place team merchants, tampico, il? | CREATE TABLE table_22512 ("Year" real,"1st Place Team" text,"2nd Place Team" text,"3rd Place Team" text,"4th Place Team" text,"Host Location" text) | SELECT COUNT("Year") FROM table_22512 WHERE "2nd Place Team" = 'Merchants, Tampico, IL' |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.