instruction
stringlengths
0
1.06k
input
stringlengths
11
5.3k
response
stringlengths
2
4.44k
For those records from the products and each product's manufacturer, give me the comparison about the average of price over the founder , and group by attribute founder by a bar chart, rank in desc by the x-axis.
CREATE TABLE Products (Code INTEGER,Name VARCHAR(255),Price DECIMAL,Manufacturer INTEGER)CREATE TABLE Manufacturers (Code INTEGER,Name VARCHAR(255),Headquarter VARCHAR(255),Founder VARCHAR(255),Revenue REAL)
SELECT Founder, AVG(Price) FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY Founder ORDER BY Founder DESC
Who was the 20 Questions section aimed at when Centerfold Model was Rachel Je n Marteen?
CREATE TABLE table_41520 ("Date" text,"Cover model" text,"Centerfold model" text,"Interview subject" text,"20 Questions" text)
SELECT "20 Questions" FROM table_41520 WHERE "Centerfold model" = 'rachel jeán marteen'
What Grid has a Time/Retired of clutch?
CREATE TABLE table_57703 ("Driver" text,"Constructor" text,"Laps" real,"Time/Retired" text,"Grid" real)
SELECT SUM("Grid") FROM table_57703 WHERE "Time/Retired" = 'clutch'
What was the score when Bornor Regis Town was the opponent?
CREATE TABLE table_name_58 (score VARCHAR,opponent VARCHAR)
SELECT score FROM table_name_58 WHERE opponent = "bornor regis town"
What is the oldest model Porsche v12 that has points less than or equal to 0.
CREATE TABLE table_70082 ("Year" real,"Entrant" text,"Chassis" text,"Engine" text,"Pts." real)
SELECT MIN("Year") FROM table_70082 WHERE "Engine" = 'porsche v12' AND "Pts." < '0'
get me the top four most frequent treatments since 2101?
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 t1.treatmentname FROM (SELECT treatment.treatmentname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM treatment WHERE STRFTIME('%y', treatment.treatmenttime) >= '2101' GROUP BY treatment.treatmentname) AS t1 WHERE t1.c1 <= 4
What is the title of book number 7?
CREATE TABLE table_74392 ("#" text,"Title" text,"Author" text,"Doctor" text,"Featuring companion" text,"Published" text,"ISBN" text,"Audiobook narrator" text)
SELECT "Title" FROM table_74392 WHERE "#" = '7'
What is the greatest Wins with Matches smaller than 5, and a Year of 1994?
CREATE TABLE table_name_26 (wins INTEGER,matches VARCHAR,year VARCHAR)
SELECT MAX(wins) FROM table_name_26 WHERE matches < 5 AND year = 1994
How many original air dates were there for episodes with a production code of 4398016?
CREATE TABLE table_21164557_1 (original_air_date VARCHAR,production_code VARCHAR)
SELECT COUNT(original_air_date) FROM table_21164557_1 WHERE production_code = 4398016
How many wines with a price higher than 100 of each year? Show a bar chart that converts year into weekday interval.
CREATE TABLE appellations (No INTEGER,Appelation TEXT,County TEXT,State TEXT,Area TEXT,isAVA TEXT)CREATE TABLE wine (No INTEGER,Grape TEXT,Winery TEXT,Appelation TEXT,State TEXT,Name TEXT,Year INTEGER,Price INTEGER,Score INTEGER,Cases INTEGER,Drink TEXT)CREATE TABLE grapes (ID INTEGER,Grape TEXT,Color TEXT)
SELECT Year, COUNT(Year) FROM wine WHERE Price > 100
Questions Count for User Reputation Range.
CREATE TABLE ReviewTaskResults (Id number,ReviewTaskId number,ReviewTaskResultTypeId number,CreationDate time,RejectionReasonId number,Comment text)CREATE TABLE ReviewTasks (Id number,ReviewTaskTypeId number,CreationDate time,DeletionDate time,ReviewTaskStateId number,PostId number,SuggestedEditId number,CompletedByRev...
SELECT COUNT(*) FROM (SELECT (d.Id) AS id FROM Posts AS d LEFT JOIN PostHistory AS ph ON ph.PostId = d.Id LEFT JOIN PostLinks AS pl ON pl.PostId = d.Id LEFT JOIN Posts AS o ON o.Id = pl.RelatedPostId LEFT JOIN Users AS u ON u.Id = d.OwnerUserId WHERE d.PostTypeId = 1 AND u.Reputation > 999 AND u.Reputation < 10000) AS ...
Which event in the 2008 Beijing Games had a bronze medal?
CREATE TABLE table_33800 ("Medal" text,"Name" text,"Games" text,"Sport" text,"Event" text)
SELECT "Event" FROM table_33800 WHERE "Games" = '2008 beijing' AND "Medal" = 'bronze'
what administrative area comes before nightingale island ?
CREATE TABLE table_204_332 (id number,"administrative\narea" text,"area\nkm2" number,"area\nsq mi" number,"population" number,"administrative\ncentre" text)
SELECT "administrative\narea" FROM table_204_332 WHERE id = (SELECT id FROM table_204_332 WHERE "administrative\narea" = 'nightingale island') - 1
What is the lowest amount of floors after rank 1 in the Trillium (residential) building?
CREATE TABLE table_name_33 (floors INTEGER,rank VARCHAR,building VARCHAR)
SELECT MIN(floors) FROM table_name_33 WHERE rank > 1 AND building = "the trillium (residential)"
What is the total number of Week, when Opponent is At Chicago Bears, and when Attendance is greater than 49,070?
CREATE TABLE table_name_81 (week VARCHAR,opponent VARCHAR,attendance VARCHAR)
SELECT COUNT(week) FROM table_name_81 WHERE opponent = "at chicago bears" AND attendance > 49 OFFSET 070
I want the average events for top 10 less than 4
CREATE TABLE table_name_17 (events INTEGER,top_10 INTEGER)
SELECT AVG(events) FROM table_name_17 WHERE top_10 < 4
what was the name of the output the last time patient 51177 had since 08/01/2101?
CREATE TABLE labevents (row_id number,subject_id number,hadm_id number,itemid number,charttime time,valuenum number,valueuom text)CREATE TABLE admissions (row_id number,subject_id number,hadm_id number,admittime time,dischtime time,admission_type text,admission_location text,discharge_location text,insurance text,langu...
SELECT d_items.label FROM d_items WHERE d_items.itemid IN (SELECT outputevents.itemid FROM outputevents WHERE outputevents.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 51177)) AND STRFTIME('%y-%m-%d', outputeve...
In the game resulting in a 5-11 record, who scored the high rebounds?
CREATE TABLE table_21340 ("Game" real,"Date" text,"Opponent" text,"Score" text,"High points" text,"High rebounds" text,"High assists" text,"Location/Attendance" text,"Record" text)
SELECT "High rebounds" FROM table_21340 WHERE "Record" = '5-11'
What years have 10 (0) in the finals?
CREATE TABLE table_64565 ("Name" text,"Years" text,"A-League" text,"Finals" text,"Total" text)
SELECT "Years" FROM table_64565 WHERE "Finals" = '10 (0)'
What is the away team against Omiya Ardija in 2018?
CREATE TABLE betfront (year number,datetime time,country text,competion text,match text,home_opening number,draw_opening number,away_opening number,home_closing number,draw_closing number,away_closing number)CREATE TABLE football_data (season text,datetime time,div text,country text,league text,referee text,hometeam te...
SELECT awayteam FROM football_data WHERE hometeam = "Omiya Ardija" AND season LIKE "%2018%"
Questions by hour of day.
CREATE TABLE Votes (Id number,PostId number,VoteTypeId number,UserId number,CreationDate time,BountyAmount number)CREATE TABLE Tags (Id number,TagName text,Count number,ExcerptPostId number,WikiPostId number)CREATE TABLE ReviewTaskResults (Id number,ReviewTaskId number,ReviewTaskResultTypeId number,CreationDate time,Re...
SELECT TIME_TO_STR(CreationDate, '%h') * 60 + TIME_TO_STR(CreationDate, '%M') AS minute, SUM(CASE PostTypeId WHEN 1 THEN 1 ELSE 0 END) AS questions, SUM(CASE PostTypeId WHEN 2 THEN 1 ELSE 0 END) AS answers FROM Posts WHERE PostTypeId = 1 OR PostTypeId = 2 AND CreationDate >= '##mindate:string?20140101##' GROUP BY TIME_...
what flights are there on DL from BOSTON to DALLAS
CREATE TABLE equipment_sequence (aircraft_code_sequence varchar,aircraft_code varchar)CREATE TABLE city (city_code varchar,city_name varchar,state_code varchar,country_name varchar,time_zone_code varchar)CREATE TABLE month (month_number int,month_name text)CREATE TABLE airline (airline_code varchar,airline_name text,no...
SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, flight WHERE (CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'DALLAS' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'BOSTON...
When was the archbishop that was born on February 10, 1858 ordained a bishop?
CREATE TABLE table_44492 ("Archbishop" text,"Born" text,"Ordained Priest" text,"Ordained Bishop" text,"Appointed Archbishop" text,"Vacated throne" text,"Died" text)
SELECT "Ordained Bishop" FROM table_44492 WHERE "Born" = 'february 10, 1858'
tell me the date of patient 6940's birth?
CREATE TABLE cost (row_id number,subject_id number,hadm_id number,event_type text,event_id number,chargetime time,cost number)CREATE TABLE chartevents (row_id number,subject_id number,hadm_id number,icustay_id number,itemid number,charttime time,valuenum number,valueuom text)CREATE TABLE patients (row_id number,subject...
SELECT patients.dob FROM patients WHERE patients.subject_id = 6940
List some courses worth 11 credits .
CREATE TABLE requirement (requirement_id int,requirement varchar,college varchar)CREATE TABLE offering_instructor (offering_instructor_id int,offering_id int,instructor_id int)CREATE TABLE instructor (instructor_id int,name varchar,uniqname varchar)CREATE TABLE course_offering (offering_id int,course_id int,semester in...
SELECT DISTINCT name, number FROM course WHERE credits = 11 AND department = 'EECS'
how many male patients had the lab test for amylase?
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,language text,religion text,admission_type text,days_stay text,insurance text,ethni...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.gender = "M" AND lab.label = "Amylase"
What is the 98kg for Santo Domingo, Domincan on 1 October 2006?
CREATE TABLE table_65003 ("World record" text,"Snatch" text,"Yang Lian (CHN)" text,"98kg" text,"Santo Domingo,Dominican" text)
SELECT "98kg" FROM table_65003 WHERE "Santo Domingo , Dominican" = '1 october 2006'
how many elective hospital admission patients are diagnosed with blood in stool?
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 text,discharge_location text,diagnosis text,dod text,dob_year text,dod_year ...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.admission_type = "ELECTIVE" AND diagnoses.long_title = "Blood in stool"
Name the rally base for rallye de france alsace
CREATE TABLE table_23385853_1 (rally_base VARCHAR,rally_name VARCHAR)
SELECT rally_base FROM table_23385853_1 WHERE rally_name = "Rallye de France Alsace"
How many seats were up for election during the vote where the election result was 9 and the new council 27?
CREATE TABLE table_name_10 (seats_up_for_election INTEGER,election_result VARCHAR,new_council VARCHAR)
SELECT SUM(seats_up_for_election) FROM table_name_10 WHERE election_result = 9 AND new_council > 27
What is the Raw bandwidth (Mbit/s) for the SAS 300?
CREATE TABLE table_45237 ("Name" text,"Raw bandwidth (Mbit/s)" text,"Max. cable length (m)" text,"Power provided" text,"Devices per channel" text)
SELECT "Raw bandwidth (Mbit/s)" FROM table_45237 WHERE "Name" = 'sas 300'
For the sum of monthly_rental, date_address_to, visualize the trend.
CREATE TABLE Teachers (teacher_id INTEGER,address_id INTEGER,first_name VARCHAR(80),middle_name VARCHAR(80),last_name VARCHAR(80),gender VARCHAR(1),cell_mobile_number VARCHAR(40),email_address VARCHAR(40),other_details VARCHAR(255))CREATE TABLE Students (student_id INTEGER,address_id INTEGER,first_name VARCHAR(80),midd...
SELECT date_address_to, SUM(monthly_rental) FROM Student_Addresses GROUP BY date_address_to ORDER BY monthly_rental DESC
What is the least amount of draws with an against of 1261?
CREATE TABLE table_41307 ("Ballarat FL" text,"Wins" real,"Byes" real,"Losses" real,"Draws" real,"Against" real)
SELECT MIN("Draws") FROM table_41307 WHERE "Against" = '1261'
Show institution types, along with the number of institutions and total enrollment for each type.
CREATE TABLE institution (TYPE VARCHAR,enrollment INTEGER)
SELECT TYPE, COUNT(*), SUM(enrollment) FROM institution GROUP BY TYPE
What was the name of the epiode written by Gary M. Goodrich?
CREATE TABLE table_2409041_9 (title VARCHAR,written_by VARCHAR)
SELECT title FROM table_2409041_9 WHERE written_by = "Gary M. Goodrich"
How many people attended the game on October 31?
CREATE TABLE table_36594 ("Date" text,"Visitor" text,"Score" text,"Home" text,"Record" text,"Attendance" real)
SELECT "Attendance" FROM table_36594 WHERE "Date" = 'october 31'
what is minimum age of patients whose admission type is newborn and insurance is government?
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 text,discharge_location text,diagnosis text,dod text,dob_year text,dod_year ...
SELECT MIN(demographic.age) FROM demographic WHERE demographic.admission_type = "NEWBORN" AND demographic.insurance = "Government"
What team was Paolo Quinteros on?
CREATE TABLE table_41417 ("Rank" real,"Name" text,"Team" text,"Games" real,"Points" real)
SELECT "Team" FROM table_41417 WHERE "Name" = 'paolo quinteros'
What was the lowest re-elected result for Sylvester C. Smith?
CREATE TABLE table_name_47 (first_elected INTEGER,result VARCHAR,incumbent VARCHAR)
SELECT MIN(first_elected) FROM table_name_47 WHERE result = "re-elected" AND incumbent = "sylvester c. smith"
What years for the rockets did player ford, alton alton ford play?
CREATE TABLE table_17170 ("Player" text,"No.(s)" text,"Height in Ft." text,"Position" text,"Years for Rockets" text,"School/Club Team/Country" text)
SELECT "Years for Rockets" FROM table_17170 WHERE "Player" = 'Ford, Alton Alton Ford'
what are connecting flights from CHICAGO to SEATTLE on 6 1
CREATE TABLE airport_service (city_code varchar,airport_code varchar,miles_distant int,direction varchar,minutes_distant int)CREATE TABLE flight_stop (flight_id int,stop_number int,stop_days text,stop_airport text,arrival_time int,arrival_airline text,arrival_flight_number int,departure_time int,departure_airline text,...
SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, date_day, days, flight WHERE ((CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'SEATTLE' AND date_day.day_number = 1 AND date_day.month_number = 6 AND d...
Who did the high points of game 5?
CREATE TABLE table_11960196_3 (high_points VARCHAR,game VARCHAR)
SELECT high_points FROM table_11960196_3 WHERE game = 5
In what year is the notes distance 1.83m?
CREATE TABLE table_5268 ("Year" real,"Competition" text,"Venue" text,"Position" text,"Notes" text)
SELECT "Year" FROM table_5268 WHERE "Notes" = '1.83m'
Who has the first leg that has a round in the semi-final?
CREATE TABLE table_40548 ("Round" text,"Opposition" text,"First leg" text,"Second leg" text,"Aggregate score" text)
SELECT "First leg" FROM table_40548 WHERE "Round" = 'semi-final'
For those employees who do not work in departments with managers that have ids between 100 and 200, show me about the distribution of phone_number and department_id in a bar chart, and I want to sort from high to low by the Y-axis.
CREATE TABLE job_history (EMPLOYEE_ID decimal(6,0),START_DATE date,END_DATE date,JOB_ID varchar(10),DEPARTMENT_ID decimal(4,0))CREATE TABLE employees (EMPLOYEE_ID decimal(6,0),FIRST_NAME varchar(20),LAST_NAME varchar(25),EMAIL varchar(25),PHONE_NUMBER varchar(20),HIRE_DATE date,JOB_ID varchar(10),SALARY decimal(8,2),CO...
SELECT PHONE_NUMBER, DEPARTMENT_ID FROM employees WHERE NOT DEPARTMENT_ID IN (SELECT DEPARTMENT_ID FROM departments WHERE MANAGER_ID BETWEEN 100 AND 200) ORDER BY DEPARTMENT_ID DESC
what is the number of patients whose year of death is less than or equal to 2112 and drug name is voriconazole?
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 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 t...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.dod_year <= "2112.0" AND prescriptions.drug = "Voriconazole"
Which ISHAA school joined in 2012 and has a mascot of the panthers?
CREATE TABLE table_name_64 (ihsaa_class VARCHAR,year_joined VARCHAR,mascot VARCHAR)
SELECT ihsaa_class FROM table_name_64 WHERE year_joined < 2012 AND mascot = "panthers"
Where did the Lightning play the NY Rangers at 7:00 pm?
CREATE TABLE table_46216 ("Date" text,"Opponent" text,"Location" text,"Time" text,"Result" text)
SELECT "Location" FROM table_46216 WHERE "Opponent" = 'ny rangers' AND "Time" = '7:00 pm'
what is the number of patients whose discharge location is home health care and procedure short title is tonsil&adenoid biopsy?
CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title 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 lab (subject_id text,hadm_id text,itemid text,charttime tex...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.discharge_location = "HOME HEALTH CARE" AND procedures.short_title = "Tonsil&adenoid biopsy"
In the Spring-Summer term are any PreMajor or MDE courses offered ?
CREATE TABLE semester (semester_id int,semester varchar,year int)CREATE TABLE course_offering (offering_id int,course_id int,semester int,section_number int,start_time time,end_time time,monday varchar,tuesday varchar,wednesday varchar,thursday varchar,friday varchar,saturday varchar,sunday varchar,has_final_project va...
SELECT DISTINCT course.department, course.name, course.number, program_course.category FROM course, course_offering, program_course, semester WHERE course.course_id = course_offering.course_id AND program_course.category IN ('PreMajor', 'MDE') AND program_course.course_id = course.course_id AND semester.semester = 'Spr...
What name has a Rocket of titan iv(401)b and a Block of block i/ii hybrid?
CREATE TABLE table_name_2 (name VARCHAR,rocket VARCHAR,block VARCHAR)
SELECT name FROM table_name_2 WHERE rocket = "titan iv(401)b" AND block = "block i/ii hybrid"
What is the language of the film directed by Federico Fellini?
CREATE TABLE table_name_27 (language VARCHAR,director VARCHAR)
SELECT language FROM table_name_27 WHERE director = "federico fellini"
Who is the father that was born on January 2, 1842?
CREATE TABLE table_59105 ("Child" text,"Date of birth" text,"Mother" text,"Father" text,"DNA testing status" text)
SELECT "Father" FROM table_59105 WHERE "Date of birth" = 'january 2, 1842'
What launch has a Ship of fearless?
CREATE TABLE table_name_64 (launched VARCHAR,ship VARCHAR)
SELECT launched FROM table_name_64 WHERE ship = "fearless"
what is the place when the score is 68-72-77-74=291?
CREATE TABLE table_49969 ("Place" text,"Player" text,"Country" text,"Score" text,"To par" real,"Money ($)" text)
SELECT "Place" FROM table_49969 WHERE "Score" = '68-72-77-74=291'
What is the least amount of tropical lows for the 1993 94 season with less than 11 tropical cyclones
CREATE TABLE table_name_41 (tropical_lows INTEGER,season VARCHAR,tropical_cyclones VARCHAR)
SELECT MIN(tropical_lows) FROM table_name_41 WHERE season = "1993–94" AND tropical_cyclones < 11
Which Rally Name has a Surface of asphalt and gravel?
CREATE TABLE table_name_17 (rally_name VARCHAR,surface VARCHAR)
SELECT rally_name FROM table_name_17 WHERE surface = "asphalt and gravel"
what is the nhl team for round 10?
CREATE TABLE table_58035 ("Round" real,"Player" text,"Nationality" text,"NHL Team" text,"College/Junior/Club Team (League)" text)
SELECT "NHL Team" FROM table_58035 WHERE "Round" = '10'
what were three of the most frequent intakes until 2 years ago?
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 admissions (row_id number,subject_id number,hadm_id number,admittime time,dischtime time,admission_type text,admissi...
SELECT d_items.label FROM d_items WHERE d_items.itemid IN (SELECT t1.itemid FROM (SELECT inputevents_cv.itemid, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM inputevents_cv WHERE DATETIME(inputevents_cv.charttime) <= DATETIME(CURRENT_TIME(), '-2 year') GROUP BY inputevents_cv.itemid) AS t1 WHERE t1.c1 <= 3)
What is the nationality of the player who played for the Peterborough Petes (OHL)?
CREATE TABLE table_name_6 (nationality VARCHAR,college_junior_club_team__league_ VARCHAR)
SELECT nationality FROM table_name_6 WHERE college_junior_club_team__league_ = "peterborough petes (ohl)"
Name what succeeded by for foam
CREATE TABLE table_1601027_2 (succeeded_by VARCHAR,earpads VARCHAR)
SELECT succeeded_by FROM table_1601027_2 WHERE earpads = "Foam"
what is the highest ngc number when the declination (j2000) is 25 26 ?
CREATE TABLE table_name_51 (ngc_number INTEGER,declination___j2000__ VARCHAR)
SELECT MAX(ngc_number) FROM table_name_51 WHERE declination___j2000__ = "°25′26″"
When was the release that was in SACD (hybrid) format?
CREATE TABLE table_13858 ("Date" text,"Label" text,"Format" text,"Country" text,"Catalog" text)
SELECT "Date" FROM table_13858 WHERE "Format" = 'sacd (hybrid)'
Top Answerers for Tag: score = sum of scores with a cap score per answer.
CREATE TABLE PostLinks (Id number,CreationDate time,PostId number,RelatedPostId number,LinkTypeId number)CREATE TABLE SuggestedEdits (Id number,PostId number,CreationDate time,ApprovalDate time,RejectionDate time,OwnerUserId number,Comment text,Text text,Title text,Tags text,RevisionGUID other)CREATE TABLE PostTypes (I...
SELECT P.OwnerUserId AS "user_link", SUM(CASE WHEN P.Score < @Cap THEN P.Score ELSE @Cap END) AS TotalScore, COUNT(*) AS "#Answers" FROM Posts AS P INNER JOIN PostTags AS PT ON PT.PostId = P.ParentId INNER JOIN Tags AS T ON T.Id = PT.TagId WHERE T.TagName = '##TagName##' AND NOT P.OwnerUserId IS NULL GROUP BY P.OwnerUs...
What is the method of resolution for the fight that had a time of 5:00 and a record of 5-0?
CREATE TABLE table_name_57 (method VARCHAR,time VARCHAR,record VARCHAR)
SELECT method FROM table_name_57 WHERE time = "5:00" AND record = "5-0"
How many users on Stack.
CREATE TABLE PostTypes (Id number,Name text)CREATE TABLE Tags (Id number,TagName text,Count number,ExcerptPostId number,WikiPostId number)CREATE TABLE Posts (Id number,PostTypeId number,AcceptedAnswerId number,ParentId number,CreationDate time,DeletionDate time,Score number,ViewCount number,Body text,OwnerUserId number...
SELECT COUNT(*) FROM Users
What cataglogue has 27 tracks?
CREATE TABLE table_name_51 (catalogue VARCHAR,track VARCHAR)
SELECT catalogue FROM table_name_51 WHERE track = 27
Who were the semifinalists when sammy giammalva was runner-up?
CREATE TABLE table_31066 ("Week of" text,"Tournament" text,"Champion" text,"Runner-up" text,"Semifinalists" text,"Quarterfinalists" text)
SELECT "Semifinalists" FROM table_31066 WHERE "Runner-up" = 'Sammy Giammalva'
What was Gassaway's record at the fight in mississippi, united states against anthony macias?
CREATE TABLE table_50636 ("Res." text,"Record" text,"Opponent" text,"Method" text,"Round" text,"Location" text)
SELECT "Record" FROM table_50636 WHERE "Location" = 'mississippi, united states' AND "Opponent" = 'anthony macias'
provide the number of patients whose lab test chart time is 2144-12-08 03:27:00?
CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE lab.charttime = "2144-12-08 03:27:00"
What is the Date of the match with a Score of 0 6, 2 6 with Partner Marcella Mesker?
CREATE TABLE table_name_57 (date VARCHAR,partner VARCHAR,score VARCHAR)
SELECT date FROM table_name_57 WHERE partner = "marcella mesker" AND score = "0–6, 2–6"
What is the average episode # located in Tanzania and whose # in season is larger than 5?
CREATE TABLE table_55121 ("Episode #" real,"# in Season" real,"Episode Name" text,"Airdate" text,"Location" text)
SELECT AVG("Episode #") FROM table_55121 WHERE "Location" = 'tanzania' AND "# in Season" > '5'
Show me about the distribution of Sex and the sum of Height , and group by attribute Sex in a bar chart, show sum height in descending order.
CREATE TABLE people (People_ID int,Sex text,Name text,Date_of_Birth text,Height real,Weight real)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)
SELECT Sex, SUM(Height) FROM people GROUP BY Sex ORDER BY SUM(Height) DESC
How many U.S. air dates were from an episode in Season 4?
CREATE TABLE table_73103 ("No. in season" real,"No. in series" real,"Title" text,"Canadian airdate" text,"US airdate" text,"Production code" real)
SELECT COUNT("US airdate") FROM table_73103 WHERE "No. in season" = '4'
What competition had more than 40 assists?
CREATE TABLE table_name_19 (competition VARCHAR,assists INTEGER)
SELECT competition FROM table_name_19 WHERE assists > 40
A bar chart about what are the ids and details of events that have more than one participants?
CREATE TABLE Services (Service_ID INTEGER,Service_Type_Code CHAR(15))CREATE TABLE Participants_in_Events (Event_ID INTEGER,Participant_ID INTEGER)CREATE TABLE Events (Event_ID INTEGER,Service_ID INTEGER,Event_Details VARCHAR(255))CREATE TABLE Participants (Participant_ID INTEGER,Participant_Type_Code CHAR(15),Participa...
SELECT T1.Event_Details, T1.Event_ID FROM Events AS T1 JOIN Participants_in_Events AS T2 ON T1.Event_ID = T2.Event_ID GROUP BY T1.Event_Details
What is the average AE 2011 ranking with a Forbes 2011 ranking of 24 and a FT 2011 ranking less than 44?
CREATE TABLE table_name_21 (ae_2011 INTEGER,forbes_2011 VARCHAR,ft_2011 VARCHAR)
SELECT AVG(ae_2011) FROM table_name_21 WHERE forbes_2011 = 24 AND ft_2011 < 44
how many days was the wikimania 2011 ?
CREATE TABLE table_203_33 (id number,"conference" text,"date" text,"place" text,"attendance" number,"archive of presentations" text)
SELECT "date" - "date" FROM table_203_33 WHERE "conference" = 'wikimania 2011'
how many consecutive players were released on july 9 ?
CREATE TABLE table_204_968 (id number,"squad #" number,"position" text,"player" text,"transferred to" text,"fee" text,"date" text)
SELECT COUNT("player") FROM table_204_968 WHERE "date" = '9 july 2012'
Did the nominated work of white valentine win an award?
CREATE TABLE table_name_61 (result VARCHAR,nominated_work VARCHAR)
SELECT result FROM table_name_61 WHERE nominated_work = "white valentine"
What is the mean Fall 09 number where fall 05 is less than 3?
CREATE TABLE table_name_34 (fall_09 INTEGER,fall_05 INTEGER)
SELECT AVG(fall_09) FROM table_name_34 WHERE fall_05 < 3
Visualize a bar chart about the distribution of Name and Weight , could you sort from high to low by the Name?
CREATE TABLE people (People_ID int,Sex text,Name text,Date_of_Birth text,Height real,Weight real)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)
SELECT Name, Weight FROM people ORDER BY Name DESC
What artist has a mintage of greater than 34,135?
CREATE TABLE table_51306 ("Year" real,"Design" text,"Issue" text,"Artist" text,"Mintage" real,"Issue Price" text)
SELECT "Artist" FROM table_51306 WHERE "Mintage" > '34,135'
Find All_Home and the average of School_ID , and group by attribute All_Home, and visualize them by a bar chart, rank mean school id in ascending order.
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_Percent int,All_Home text,All_Road text,All_Neutral text)CREATE TABLE university (School_ID int,School text,Location text,Founded real,Affiliation text,En...
SELECT All_Home, AVG(School_ID) FROM basketball_match GROUP BY All_Home ORDER BY AVG(School_ID)
list all female (sex is F) candidate names in the alphabetical order.
CREATE TABLE candidate (candidate_id number,people_id number,poll_source text,date text,support_rate number,consider_rate number,oppose_rate number,unsure_rate number)CREATE TABLE people (people_id number,sex text,name text,date_of_birth text,height number,weight number)
SELECT t1.name FROM people AS t1 JOIN candidate AS t2 ON t1.people_id = t2.people_id WHERE t1.sex = 'F' ORDER BY t1.name
What is Date, when Away Team is 'Minehead'?
CREATE TABLE table_61638 ("Tie no" text,"Home team" text,"Score" text,"Away team" text,"Date" text)
SELECT "Date" FROM table_61638 WHERE "Away team" = 'minehead'
What was Bill Glasson's score to par after 2 rounds?
CREATE TABLE table_50379 ("Place" text,"Player" text,"Country" text,"Score" text,"To par" text)
SELECT "To par" FROM table_50379 WHERE "Player" = 'bill glasson'
What was the first numbered episode in the series titled 'the wind beneath our wings'?
CREATE TABLE table_29102 ("Series #" real,"Episode #" real,"Title" text,"Director" text,"Writer" text,"Original airdate" text)
SELECT MIN("Series #") FROM table_29102 WHERE "Title" = 'The Wind Beneath Our Wings'
What is the race with the track distance of 6 furlongs and spectacular bid stakes?
CREATE TABLE table_name_29 (track VARCHAR,distance VARCHAR,race VARCHAR)
SELECT track FROM table_name_29 WHERE distance = "6 furlongs" AND race = "spectacular bid stakes"
What's the rank when the time was 59.65?
CREATE TABLE table_name_43 (rank VARCHAR,time VARCHAR)
SELECT rank FROM table_name_43 WHERE time = "59.65"
who has the most number of years until their mandatory retirement ?
CREATE TABLE table_203_671 (id number,"name" text,"rank" text,"age" number,"years until mandatory retirement" text,"appointed by" text,"year appointed" number)
SELECT "name" FROM table_203_671 ORDER BY "years until mandatory retirement" DESC LIMIT 1
What position does Zack Torquato play?
CREATE TABLE table_name_6 (position VARCHAR,player VARCHAR)
SELECT position FROM table_name_6 WHERE player = "zack torquato"
What is the Score of the T3 Place Player?
CREATE TABLE table_name_33 (score VARCHAR,place VARCHAR)
SELECT score FROM table_name_33 WHERE place = "t3"
Who was the opponent in round 2?
CREATE TABLE table_13328239_4 (opponent VARCHAR,round VARCHAR)
SELECT opponent FROM table_13328239_4 WHERE round = "2"
Which Score has an October smaller than 15, and a Record of 2 0 0?
CREATE TABLE table_39156 ("Game" real,"October" real,"Opponent" text,"Score" text,"Record" text,"Points" real)
SELECT "Score" FROM table_39156 WHERE "October" < '15' AND "Record" = '2–0–0'
What was the conference when Arizona State won the regular season?
CREATE TABLE table_73441 ("Conference" text,"Regular Season Winner" text,"Conference Player of the Year" text,"Conference Tournament" text,"Tournament Venue (City)" text,"Tournament Winner" text)
SELECT "Conference" FROM table_73441 WHERE "Regular Season Winner" = 'Arizona State'
count the number of patients whose insurance is government and procedure long title is creation of conduit between left ventricle and aorta?
CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title 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 procedures (subject_id text,hadm_id text,icd9_code text,sho...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.insurance = "Government" AND procedures.long_title = "Creation of conduit between left ventricle and aorta"
Who was the opponent that led to a 10-13 record?
CREATE TABLE table_name_38 (opponent VARCHAR,record VARCHAR)
SELECT opponent FROM table_name_38 WHERE record = "10-13"
For those employees whose salary is in the range of 8000 and 12000 and commission is not null or department number does not equal to 40, a line chart shows the trend of salary over hire_date , and display X-axis in asc order.
CREATE TABLE employees (EMPLOYEE_ID decimal(6,0),FIRST_NAME varchar(20),LAST_NAME varchar(25),EMAIL varchar(25),PHONE_NUMBER varchar(20),HIRE_DATE date,JOB_ID varchar(10),SALARY decimal(8,2),COMMISSION_PCT decimal(2,2),MANAGER_ID decimal(6,0),DEPARTMENT_ID decimal(4,0))CREATE TABLE job_history (EMPLOYEE_ID decimal(6,0)...
SELECT HIRE_DATE, SALARY FROM employees WHERE SALARY BETWEEN 8000 AND 12000 AND COMMISSION_PCT <> "null" OR DEPARTMENT_ID <> 40 ORDER BY HIRE_DATE
What player had less than 6 appearances at the FA cup, 33 at the premier league, and more than 5 at the UEFA cup?
CREATE TABLE table_45019 ("Player" text,"Position" text,"Premier League" real,"FA Cup" real,"League Cup" real,"UEFA Cup" real,"Total" real)
SELECT "Player" FROM table_45019 WHERE "FA Cup" < '6' AND "Premier League" = '33' AND "UEFA Cup" > '5'