db_id
stringclasses
146 values
question
stringlengths
3
224
sql
stringlengths
18
577
database_schema
stringclasses
146 values
student_assessment
What are the ids of the students who either registered or attended a course?
SELECT student_id FROM student_course_registrations UNION SELECT student_id FROM student_course_attendance
CREATE TABLE Addresses ( address_id INTEGER NOT NULL, line_1 VARCHAR(80), line_2 VARCHAR(80), city VARCHAR(50), zip_postcode CHAR(20), state_province_county VARCHAR(50), country VARCHAR(50), PRIMARY KEY (address_id) ) 3 rows from Addresses table: address_id line_1 line_2 city zip_postcode state_province_county country 5 0900 Roderick Oval\nNew Albina, WA 19200-7914 Suite 096 Linnealand 862 Montana USA 9 966 Dach Ports Apt. 322\nLake Harmonyhaven, VA 65235 Apt. 163 South Minnie 716 Texas USA 29 28550 Broderick Underpass Suite 667\nZakaryhaven, WY 22945-1534 Apt. 419 North Trystanborough 112 Vermont USA CREATE TABLE People ( person_id INTEGER NOT NULL, first_name VARCHAR(255), middle_name VARCHAR(255), last_name VARCHAR(255), cell_mobile_number VARCHAR(40), email_address VARCHAR(40), login_name VARCHAR(40), password VARCHAR(40), PRIMARY KEY (person_id) ) 3 rows from People table: person_id first_name middle_name last_name cell_mobile_number email_address login_name password 111 Shannon Elissa Senger 01955267735 javier.trantow@example.net pgub 5e4ff49a61b3544da3ad7dc7e2cf28847564c64c 121 Virginie Jasmin Hartmann (508)319-2970x043 boyer.lonie@example.com bkkv b063331ea8116befaa7b84c59c6a22200f5f8caa 131 Dariana Hayley Bednar (262)347-9364x516 leila14@example.net zops b20b6a9f24aadeda70d54e410c3219f61fb063fb CREATE TABLE Students ( student_id INTEGER NOT NULL, student_details VARCHAR(255), PRIMARY KEY (student_id), FOREIGN KEY (student_id) REFERENCES People (person_id) ) 3 rows from Students table: student_id student_details 111 Marry 121 Martin 131 Barry CREATE TABLE Courses ( course_id VARCHAR(100) NOT NULL, course_name VARCHAR(120), course_description VARCHAR(255), other_details VARCHAR(255), PRIMARY KEY (course_id) ) 3 rows from Courses table: course_id course_name course_description other_details 301 statistics statistics None 302 English English None 303 French French None CREATE TABLE People_Addresses ( person_address_id INTEGER NOT NULL, person_id INTEGER NOT NULL, address_id INTEGER NOT NULL, date_from DATETIME, date_to DATETIME, PRIMARY KEY (person_address_id), FOREIGN KEY (person_id) REFERENCES People (person_id), FOREIGN KEY (address_id) REFERENCES Addresses (address_id) ) 3 rows from People_Addresses table: person_address_id person_id address_id date_from date_to 122 111 9 2012-09-26 13:21:00 2018-03-21 09:46:30 257 121 5 2008-07-31 02:17:25 2018-03-09 02:11:12 269 131 88 2008-05-26 20:43:41 2018-03-11 20:26:41 CREATE TABLE Student_Course_Registrations ( student_id INTEGER NOT NULL, course_id INTEGER NOT NULL, registration_date DATETIME NOT NULL, PRIMARY KEY (student_id, course_id), FOREIGN KEY (student_id) REFERENCES Students (student_id), FOREIGN KEY (course_id) REFERENCES Courses (course_id) ) 3 rows from Student_Course_Registrations table: student_id course_id registration_date 111 301 2008-11-04 10:35:13 121 301 2008-10-04 10:35:13 121 303 2008-11-14 10:35:13 CREATE TABLE Student_Course_Attendance ( student_id INTEGER NOT NULL, course_id INTEGER NOT NULL, date_of_attendance DATETIME NOT NULL, PRIMARY KEY (student_id, course_id), FOREIGN KEY (student_id, course_id) REFERENCES Student_Course_Registrations (student_id,course_id) ) 3 rows from Student_Course_Attendance table: student_id course_id date_of_attendance 111 301 2008-11-04 10:35:13 121 301 2012-04-09 11:44:34 121 303 2014-04-09 11:44:34 CREATE TABLE Candidates ( candidate_id INTEGER NOT NULL , candidate_details VARCHAR(255), PRIMARY KEY (candidate_id), FOREIGN KEY (candidate_id) REFERENCES People (person_id) ) 3 rows from Candidates table: candidate_id candidate_details 111 Jane 121 Robert 131 Alex CREATE TABLE Candidate_Assessments ( candidate_id INTEGER NOT NULL, qualification CHAR(15) NOT NULL, assessment_date DATETIME NOT NULL, asessment_outcome_code CHAR(15) NOT NULL, PRIMARY KEY (candidate_id, qualification), FOREIGN KEY (candidate_id) REFERENCES Candidates (candidate_id) ) 3 rows from Candidate_Assessments table: candidate_id qualification assessment_date asessment_outcome_code 111 A 2010-04-07 11:44:34 Pass 121 B 2010-04-17 11:44:34 Pass 131 D 2010-04-05 11:44:34 Fail
student_assessment
Find the id of courses which are registered or attended by student whose id is 121?
SELECT course_id FROM student_course_registrations WHERE student_id = 121 UNION SELECT course_id FROM student_course_attendance WHERE student_id = 121
CREATE TABLE Addresses ( address_id INTEGER NOT NULL, line_1 VARCHAR(80), line_2 VARCHAR(80), city VARCHAR(50), zip_postcode CHAR(20), state_province_county VARCHAR(50), country VARCHAR(50), PRIMARY KEY (address_id) ) 3 rows from Addresses table: address_id line_1 line_2 city zip_postcode state_province_county country 5 0900 Roderick Oval\nNew Albina, WA 19200-7914 Suite 096 Linnealand 862 Montana USA 9 966 Dach Ports Apt. 322\nLake Harmonyhaven, VA 65235 Apt. 163 South Minnie 716 Texas USA 29 28550 Broderick Underpass Suite 667\nZakaryhaven, WY 22945-1534 Apt. 419 North Trystanborough 112 Vermont USA CREATE TABLE People ( person_id INTEGER NOT NULL, first_name VARCHAR(255), middle_name VARCHAR(255), last_name VARCHAR(255), cell_mobile_number VARCHAR(40), email_address VARCHAR(40), login_name VARCHAR(40), password VARCHAR(40), PRIMARY KEY (person_id) ) 3 rows from People table: person_id first_name middle_name last_name cell_mobile_number email_address login_name password 111 Shannon Elissa Senger 01955267735 javier.trantow@example.net pgub 5e4ff49a61b3544da3ad7dc7e2cf28847564c64c 121 Virginie Jasmin Hartmann (508)319-2970x043 boyer.lonie@example.com bkkv b063331ea8116befaa7b84c59c6a22200f5f8caa 131 Dariana Hayley Bednar (262)347-9364x516 leila14@example.net zops b20b6a9f24aadeda70d54e410c3219f61fb063fb CREATE TABLE Students ( student_id INTEGER NOT NULL, student_details VARCHAR(255), PRIMARY KEY (student_id), FOREIGN KEY (student_id) REFERENCES People (person_id) ) 3 rows from Students table: student_id student_details 111 Marry 121 Martin 131 Barry CREATE TABLE Courses ( course_id VARCHAR(100) NOT NULL, course_name VARCHAR(120), course_description VARCHAR(255), other_details VARCHAR(255), PRIMARY KEY (course_id) ) 3 rows from Courses table: course_id course_name course_description other_details 301 statistics statistics None 302 English English None 303 French French None CREATE TABLE People_Addresses ( person_address_id INTEGER NOT NULL, person_id INTEGER NOT NULL, address_id INTEGER NOT NULL, date_from DATETIME, date_to DATETIME, PRIMARY KEY (person_address_id), FOREIGN KEY (person_id) REFERENCES People (person_id), FOREIGN KEY (address_id) REFERENCES Addresses (address_id) ) 3 rows from People_Addresses table: person_address_id person_id address_id date_from date_to 122 111 9 2012-09-26 13:21:00 2018-03-21 09:46:30 257 121 5 2008-07-31 02:17:25 2018-03-09 02:11:12 269 131 88 2008-05-26 20:43:41 2018-03-11 20:26:41 CREATE TABLE Student_Course_Registrations ( student_id INTEGER NOT NULL, course_id INTEGER NOT NULL, registration_date DATETIME NOT NULL, PRIMARY KEY (student_id, course_id), FOREIGN KEY (student_id) REFERENCES Students (student_id), FOREIGN KEY (course_id) REFERENCES Courses (course_id) ) 3 rows from Student_Course_Registrations table: student_id course_id registration_date 111 301 2008-11-04 10:35:13 121 301 2008-10-04 10:35:13 121 303 2008-11-14 10:35:13 CREATE TABLE Student_Course_Attendance ( student_id INTEGER NOT NULL, course_id INTEGER NOT NULL, date_of_attendance DATETIME NOT NULL, PRIMARY KEY (student_id, course_id), FOREIGN KEY (student_id, course_id) REFERENCES Student_Course_Registrations (student_id,course_id) ) 3 rows from Student_Course_Attendance table: student_id course_id date_of_attendance 111 301 2008-11-04 10:35:13 121 301 2012-04-09 11:44:34 121 303 2014-04-09 11:44:34 CREATE TABLE Candidates ( candidate_id INTEGER NOT NULL , candidate_details VARCHAR(255), PRIMARY KEY (candidate_id), FOREIGN KEY (candidate_id) REFERENCES People (person_id) ) 3 rows from Candidates table: candidate_id candidate_details 111 Jane 121 Robert 131 Alex CREATE TABLE Candidate_Assessments ( candidate_id INTEGER NOT NULL, qualification CHAR(15) NOT NULL, assessment_date DATETIME NOT NULL, asessment_outcome_code CHAR(15) NOT NULL, PRIMARY KEY (candidate_id, qualification), FOREIGN KEY (candidate_id) REFERENCES Candidates (candidate_id) ) 3 rows from Candidate_Assessments table: candidate_id qualification assessment_date asessment_outcome_code 111 A 2010-04-07 11:44:34 Pass 121 B 2010-04-17 11:44:34 Pass 131 D 2010-04-05 11:44:34 Fail
student_assessment
What are the ids of the courses that are registered or attended by the student whose id is 121?
SELECT course_id FROM student_course_registrations WHERE student_id = 121 UNION SELECT course_id FROM student_course_attendance WHERE student_id = 121
CREATE TABLE Addresses ( address_id INTEGER NOT NULL, line_1 VARCHAR(80), line_2 VARCHAR(80), city VARCHAR(50), zip_postcode CHAR(20), state_province_county VARCHAR(50), country VARCHAR(50), PRIMARY KEY (address_id) ) 3 rows from Addresses table: address_id line_1 line_2 city zip_postcode state_province_county country 5 0900 Roderick Oval\nNew Albina, WA 19200-7914 Suite 096 Linnealand 862 Montana USA 9 966 Dach Ports Apt. 322\nLake Harmonyhaven, VA 65235 Apt. 163 South Minnie 716 Texas USA 29 28550 Broderick Underpass Suite 667\nZakaryhaven, WY 22945-1534 Apt. 419 North Trystanborough 112 Vermont USA CREATE TABLE People ( person_id INTEGER NOT NULL, first_name VARCHAR(255), middle_name VARCHAR(255), last_name VARCHAR(255), cell_mobile_number VARCHAR(40), email_address VARCHAR(40), login_name VARCHAR(40), password VARCHAR(40), PRIMARY KEY (person_id) ) 3 rows from People table: person_id first_name middle_name last_name cell_mobile_number email_address login_name password 111 Shannon Elissa Senger 01955267735 javier.trantow@example.net pgub 5e4ff49a61b3544da3ad7dc7e2cf28847564c64c 121 Virginie Jasmin Hartmann (508)319-2970x043 boyer.lonie@example.com bkkv b063331ea8116befaa7b84c59c6a22200f5f8caa 131 Dariana Hayley Bednar (262)347-9364x516 leila14@example.net zops b20b6a9f24aadeda70d54e410c3219f61fb063fb CREATE TABLE Students ( student_id INTEGER NOT NULL, student_details VARCHAR(255), PRIMARY KEY (student_id), FOREIGN KEY (student_id) REFERENCES People (person_id) ) 3 rows from Students table: student_id student_details 111 Marry 121 Martin 131 Barry CREATE TABLE Courses ( course_id VARCHAR(100) NOT NULL, course_name VARCHAR(120), course_description VARCHAR(255), other_details VARCHAR(255), PRIMARY KEY (course_id) ) 3 rows from Courses table: course_id course_name course_description other_details 301 statistics statistics None 302 English English None 303 French French None CREATE TABLE People_Addresses ( person_address_id INTEGER NOT NULL, person_id INTEGER NOT NULL, address_id INTEGER NOT NULL, date_from DATETIME, date_to DATETIME, PRIMARY KEY (person_address_id), FOREIGN KEY (person_id) REFERENCES People (person_id), FOREIGN KEY (address_id) REFERENCES Addresses (address_id) ) 3 rows from People_Addresses table: person_address_id person_id address_id date_from date_to 122 111 9 2012-09-26 13:21:00 2018-03-21 09:46:30 257 121 5 2008-07-31 02:17:25 2018-03-09 02:11:12 269 131 88 2008-05-26 20:43:41 2018-03-11 20:26:41 CREATE TABLE Student_Course_Registrations ( student_id INTEGER NOT NULL, course_id INTEGER NOT NULL, registration_date DATETIME NOT NULL, PRIMARY KEY (student_id, course_id), FOREIGN KEY (student_id) REFERENCES Students (student_id), FOREIGN KEY (course_id) REFERENCES Courses (course_id) ) 3 rows from Student_Course_Registrations table: student_id course_id registration_date 111 301 2008-11-04 10:35:13 121 301 2008-10-04 10:35:13 121 303 2008-11-14 10:35:13 CREATE TABLE Student_Course_Attendance ( student_id INTEGER NOT NULL, course_id INTEGER NOT NULL, date_of_attendance DATETIME NOT NULL, PRIMARY KEY (student_id, course_id), FOREIGN KEY (student_id, course_id) REFERENCES Student_Course_Registrations (student_id,course_id) ) 3 rows from Student_Course_Attendance table: student_id course_id date_of_attendance 111 301 2008-11-04 10:35:13 121 301 2012-04-09 11:44:34 121 303 2014-04-09 11:44:34 CREATE TABLE Candidates ( candidate_id INTEGER NOT NULL , candidate_details VARCHAR(255), PRIMARY KEY (candidate_id), FOREIGN KEY (candidate_id) REFERENCES People (person_id) ) 3 rows from Candidates table: candidate_id candidate_details 111 Jane 121 Robert 131 Alex CREATE TABLE Candidate_Assessments ( candidate_id INTEGER NOT NULL, qualification CHAR(15) NOT NULL, assessment_date DATETIME NOT NULL, asessment_outcome_code CHAR(15) NOT NULL, PRIMARY KEY (candidate_id, qualification), FOREIGN KEY (candidate_id) REFERENCES Candidates (candidate_id) ) 3 rows from Candidate_Assessments table: candidate_id qualification assessment_date asessment_outcome_code 111 A 2010-04-07 11:44:34 Pass 121 B 2010-04-17 11:44:34 Pass 131 D 2010-04-05 11:44:34 Fail
student_assessment
What are all info of students who registered courses but not attended courses?
SELECT * FROM student_course_registrations WHERE student_id NOT IN (SELECT student_id FROM student_course_attendance)
CREATE TABLE Addresses ( address_id INTEGER NOT NULL, line_1 VARCHAR(80), line_2 VARCHAR(80), city VARCHAR(50), zip_postcode CHAR(20), state_province_county VARCHAR(50), country VARCHAR(50), PRIMARY KEY (address_id) ) 3 rows from Addresses table: address_id line_1 line_2 city zip_postcode state_province_county country 5 0900 Roderick Oval\nNew Albina, WA 19200-7914 Suite 096 Linnealand 862 Montana USA 9 966 Dach Ports Apt. 322\nLake Harmonyhaven, VA 65235 Apt. 163 South Minnie 716 Texas USA 29 28550 Broderick Underpass Suite 667\nZakaryhaven, WY 22945-1534 Apt. 419 North Trystanborough 112 Vermont USA CREATE TABLE People ( person_id INTEGER NOT NULL, first_name VARCHAR(255), middle_name VARCHAR(255), last_name VARCHAR(255), cell_mobile_number VARCHAR(40), email_address VARCHAR(40), login_name VARCHAR(40), password VARCHAR(40), PRIMARY KEY (person_id) ) 3 rows from People table: person_id first_name middle_name last_name cell_mobile_number email_address login_name password 111 Shannon Elissa Senger 01955267735 javier.trantow@example.net pgub 5e4ff49a61b3544da3ad7dc7e2cf28847564c64c 121 Virginie Jasmin Hartmann (508)319-2970x043 boyer.lonie@example.com bkkv b063331ea8116befaa7b84c59c6a22200f5f8caa 131 Dariana Hayley Bednar (262)347-9364x516 leila14@example.net zops b20b6a9f24aadeda70d54e410c3219f61fb063fb CREATE TABLE Students ( student_id INTEGER NOT NULL, student_details VARCHAR(255), PRIMARY KEY (student_id), FOREIGN KEY (student_id) REFERENCES People (person_id) ) 3 rows from Students table: student_id student_details 111 Marry 121 Martin 131 Barry CREATE TABLE Courses ( course_id VARCHAR(100) NOT NULL, course_name VARCHAR(120), course_description VARCHAR(255), other_details VARCHAR(255), PRIMARY KEY (course_id) ) 3 rows from Courses table: course_id course_name course_description other_details 301 statistics statistics None 302 English English None 303 French French None CREATE TABLE People_Addresses ( person_address_id INTEGER NOT NULL, person_id INTEGER NOT NULL, address_id INTEGER NOT NULL, date_from DATETIME, date_to DATETIME, PRIMARY KEY (person_address_id), FOREIGN KEY (person_id) REFERENCES People (person_id), FOREIGN KEY (address_id) REFERENCES Addresses (address_id) ) 3 rows from People_Addresses table: person_address_id person_id address_id date_from date_to 122 111 9 2012-09-26 13:21:00 2018-03-21 09:46:30 257 121 5 2008-07-31 02:17:25 2018-03-09 02:11:12 269 131 88 2008-05-26 20:43:41 2018-03-11 20:26:41 CREATE TABLE Student_Course_Registrations ( student_id INTEGER NOT NULL, course_id INTEGER NOT NULL, registration_date DATETIME NOT NULL, PRIMARY KEY (student_id, course_id), FOREIGN KEY (student_id) REFERENCES Students (student_id), FOREIGN KEY (course_id) REFERENCES Courses (course_id) ) 3 rows from Student_Course_Registrations table: student_id course_id registration_date 111 301 2008-11-04 10:35:13 121 301 2008-10-04 10:35:13 121 303 2008-11-14 10:35:13 CREATE TABLE Student_Course_Attendance ( student_id INTEGER NOT NULL, course_id INTEGER NOT NULL, date_of_attendance DATETIME NOT NULL, PRIMARY KEY (student_id, course_id), FOREIGN KEY (student_id, course_id) REFERENCES Student_Course_Registrations (student_id,course_id) ) 3 rows from Student_Course_Attendance table: student_id course_id date_of_attendance 111 301 2008-11-04 10:35:13 121 301 2012-04-09 11:44:34 121 303 2014-04-09 11:44:34 CREATE TABLE Candidates ( candidate_id INTEGER NOT NULL , candidate_details VARCHAR(255), PRIMARY KEY (candidate_id), FOREIGN KEY (candidate_id) REFERENCES People (person_id) ) 3 rows from Candidates table: candidate_id candidate_details 111 Jane 121 Robert 131 Alex CREATE TABLE Candidate_Assessments ( candidate_id INTEGER NOT NULL, qualification CHAR(15) NOT NULL, assessment_date DATETIME NOT NULL, asessment_outcome_code CHAR(15) NOT NULL, PRIMARY KEY (candidate_id, qualification), FOREIGN KEY (candidate_id) REFERENCES Candidates (candidate_id) ) 3 rows from Candidate_Assessments table: candidate_id qualification assessment_date asessment_outcome_code 111 A 2010-04-07 11:44:34 Pass 121 B 2010-04-17 11:44:34 Pass 131 D 2010-04-05 11:44:34 Fail
student_assessment
What are all details of the students who registered but did not attend any course?
SELECT * FROM student_course_registrations WHERE student_id NOT IN (SELECT student_id FROM student_course_attendance)
CREATE TABLE Addresses ( address_id INTEGER NOT NULL, line_1 VARCHAR(80), line_2 VARCHAR(80), city VARCHAR(50), zip_postcode CHAR(20), state_province_county VARCHAR(50), country VARCHAR(50), PRIMARY KEY (address_id) ) 3 rows from Addresses table: address_id line_1 line_2 city zip_postcode state_province_county country 5 0900 Roderick Oval\nNew Albina, WA 19200-7914 Suite 096 Linnealand 862 Montana USA 9 966 Dach Ports Apt. 322\nLake Harmonyhaven, VA 65235 Apt. 163 South Minnie 716 Texas USA 29 28550 Broderick Underpass Suite 667\nZakaryhaven, WY 22945-1534 Apt. 419 North Trystanborough 112 Vermont USA CREATE TABLE People ( person_id INTEGER NOT NULL, first_name VARCHAR(255), middle_name VARCHAR(255), last_name VARCHAR(255), cell_mobile_number VARCHAR(40), email_address VARCHAR(40), login_name VARCHAR(40), password VARCHAR(40), PRIMARY KEY (person_id) ) 3 rows from People table: person_id first_name middle_name last_name cell_mobile_number email_address login_name password 111 Shannon Elissa Senger 01955267735 javier.trantow@example.net pgub 5e4ff49a61b3544da3ad7dc7e2cf28847564c64c 121 Virginie Jasmin Hartmann (508)319-2970x043 boyer.lonie@example.com bkkv b063331ea8116befaa7b84c59c6a22200f5f8caa 131 Dariana Hayley Bednar (262)347-9364x516 leila14@example.net zops b20b6a9f24aadeda70d54e410c3219f61fb063fb CREATE TABLE Students ( student_id INTEGER NOT NULL, student_details VARCHAR(255), PRIMARY KEY (student_id), FOREIGN KEY (student_id) REFERENCES People (person_id) ) 3 rows from Students table: student_id student_details 111 Marry 121 Martin 131 Barry CREATE TABLE Courses ( course_id VARCHAR(100) NOT NULL, course_name VARCHAR(120), course_description VARCHAR(255), other_details VARCHAR(255), PRIMARY KEY (course_id) ) 3 rows from Courses table: course_id course_name course_description other_details 301 statistics statistics None 302 English English None 303 French French None CREATE TABLE People_Addresses ( person_address_id INTEGER NOT NULL, person_id INTEGER NOT NULL, address_id INTEGER NOT NULL, date_from DATETIME, date_to DATETIME, PRIMARY KEY (person_address_id), FOREIGN KEY (person_id) REFERENCES People (person_id), FOREIGN KEY (address_id) REFERENCES Addresses (address_id) ) 3 rows from People_Addresses table: person_address_id person_id address_id date_from date_to 122 111 9 2012-09-26 13:21:00 2018-03-21 09:46:30 257 121 5 2008-07-31 02:17:25 2018-03-09 02:11:12 269 131 88 2008-05-26 20:43:41 2018-03-11 20:26:41 CREATE TABLE Student_Course_Registrations ( student_id INTEGER NOT NULL, course_id INTEGER NOT NULL, registration_date DATETIME NOT NULL, PRIMARY KEY (student_id, course_id), FOREIGN KEY (student_id) REFERENCES Students (student_id), FOREIGN KEY (course_id) REFERENCES Courses (course_id) ) 3 rows from Student_Course_Registrations table: student_id course_id registration_date 111 301 2008-11-04 10:35:13 121 301 2008-10-04 10:35:13 121 303 2008-11-14 10:35:13 CREATE TABLE Student_Course_Attendance ( student_id INTEGER NOT NULL, course_id INTEGER NOT NULL, date_of_attendance DATETIME NOT NULL, PRIMARY KEY (student_id, course_id), FOREIGN KEY (student_id, course_id) REFERENCES Student_Course_Registrations (student_id,course_id) ) 3 rows from Student_Course_Attendance table: student_id course_id date_of_attendance 111 301 2008-11-04 10:35:13 121 301 2012-04-09 11:44:34 121 303 2014-04-09 11:44:34 CREATE TABLE Candidates ( candidate_id INTEGER NOT NULL , candidate_details VARCHAR(255), PRIMARY KEY (candidate_id), FOREIGN KEY (candidate_id) REFERENCES People (person_id) ) 3 rows from Candidates table: candidate_id candidate_details 111 Jane 121 Robert 131 Alex CREATE TABLE Candidate_Assessments ( candidate_id INTEGER NOT NULL, qualification CHAR(15) NOT NULL, assessment_date DATETIME NOT NULL, asessment_outcome_code CHAR(15) NOT NULL, PRIMARY KEY (candidate_id, qualification), FOREIGN KEY (candidate_id) REFERENCES Candidates (candidate_id) ) 3 rows from Candidate_Assessments table: candidate_id qualification assessment_date asessment_outcome_code 111 A 2010-04-07 11:44:34 Pass 121 B 2010-04-17 11:44:34 Pass 131 D 2010-04-05 11:44:34 Fail
student_assessment
List the id of students who registered course statistics in the order of registration date.
SELECT T2.student_id FROM courses AS T1 JOIN student_course_registrations AS T2 ON T1.course_id = T2.course_id WHERE T1.course_name = "statistics" ORDER BY T2.registration_date
CREATE TABLE Addresses ( address_id INTEGER NOT NULL, line_1 VARCHAR(80), line_2 VARCHAR(80), city VARCHAR(50), zip_postcode CHAR(20), state_province_county VARCHAR(50), country VARCHAR(50), PRIMARY KEY (address_id) ) 3 rows from Addresses table: address_id line_1 line_2 city zip_postcode state_province_county country 5 0900 Roderick Oval\nNew Albina, WA 19200-7914 Suite 096 Linnealand 862 Montana USA 9 966 Dach Ports Apt. 322\nLake Harmonyhaven, VA 65235 Apt. 163 South Minnie 716 Texas USA 29 28550 Broderick Underpass Suite 667\nZakaryhaven, WY 22945-1534 Apt. 419 North Trystanborough 112 Vermont USA CREATE TABLE People ( person_id INTEGER NOT NULL, first_name VARCHAR(255), middle_name VARCHAR(255), last_name VARCHAR(255), cell_mobile_number VARCHAR(40), email_address VARCHAR(40), login_name VARCHAR(40), password VARCHAR(40), PRIMARY KEY (person_id) ) 3 rows from People table: person_id first_name middle_name last_name cell_mobile_number email_address login_name password 111 Shannon Elissa Senger 01955267735 javier.trantow@example.net pgub 5e4ff49a61b3544da3ad7dc7e2cf28847564c64c 121 Virginie Jasmin Hartmann (508)319-2970x043 boyer.lonie@example.com bkkv b063331ea8116befaa7b84c59c6a22200f5f8caa 131 Dariana Hayley Bednar (262)347-9364x516 leila14@example.net zops b20b6a9f24aadeda70d54e410c3219f61fb063fb CREATE TABLE Students ( student_id INTEGER NOT NULL, student_details VARCHAR(255), PRIMARY KEY (student_id), FOREIGN KEY (student_id) REFERENCES People (person_id) ) 3 rows from Students table: student_id student_details 111 Marry 121 Martin 131 Barry CREATE TABLE Courses ( course_id VARCHAR(100) NOT NULL, course_name VARCHAR(120), course_description VARCHAR(255), other_details VARCHAR(255), PRIMARY KEY (course_id) ) 3 rows from Courses table: course_id course_name course_description other_details 301 statistics statistics None 302 English English None 303 French French None CREATE TABLE People_Addresses ( person_address_id INTEGER NOT NULL, person_id INTEGER NOT NULL, address_id INTEGER NOT NULL, date_from DATETIME, date_to DATETIME, PRIMARY KEY (person_address_id), FOREIGN KEY (person_id) REFERENCES People (person_id), FOREIGN KEY (address_id) REFERENCES Addresses (address_id) ) 3 rows from People_Addresses table: person_address_id person_id address_id date_from date_to 122 111 9 2012-09-26 13:21:00 2018-03-21 09:46:30 257 121 5 2008-07-31 02:17:25 2018-03-09 02:11:12 269 131 88 2008-05-26 20:43:41 2018-03-11 20:26:41 CREATE TABLE Student_Course_Registrations ( student_id INTEGER NOT NULL, course_id INTEGER NOT NULL, registration_date DATETIME NOT NULL, PRIMARY KEY (student_id, course_id), FOREIGN KEY (student_id) REFERENCES Students (student_id), FOREIGN KEY (course_id) REFERENCES Courses (course_id) ) 3 rows from Student_Course_Registrations table: student_id course_id registration_date 111 301 2008-11-04 10:35:13 121 301 2008-10-04 10:35:13 121 303 2008-11-14 10:35:13 CREATE TABLE Student_Course_Attendance ( student_id INTEGER NOT NULL, course_id INTEGER NOT NULL, date_of_attendance DATETIME NOT NULL, PRIMARY KEY (student_id, course_id), FOREIGN KEY (student_id, course_id) REFERENCES Student_Course_Registrations (student_id,course_id) ) 3 rows from Student_Course_Attendance table: student_id course_id date_of_attendance 111 301 2008-11-04 10:35:13 121 301 2012-04-09 11:44:34 121 303 2014-04-09 11:44:34 CREATE TABLE Candidates ( candidate_id INTEGER NOT NULL , candidate_details VARCHAR(255), PRIMARY KEY (candidate_id), FOREIGN KEY (candidate_id) REFERENCES People (person_id) ) 3 rows from Candidates table: candidate_id candidate_details 111 Jane 121 Robert 131 Alex CREATE TABLE Candidate_Assessments ( candidate_id INTEGER NOT NULL, qualification CHAR(15) NOT NULL, assessment_date DATETIME NOT NULL, asessment_outcome_code CHAR(15) NOT NULL, PRIMARY KEY (candidate_id, qualification), FOREIGN KEY (candidate_id) REFERENCES Candidates (candidate_id) ) 3 rows from Candidate_Assessments table: candidate_id qualification assessment_date asessment_outcome_code 111 A 2010-04-07 11:44:34 Pass 121 B 2010-04-17 11:44:34 Pass 131 D 2010-04-05 11:44:34 Fail
student_assessment
What are the ids of the students who registered course statistics by order of registration date?
SELECT T2.student_id FROM courses AS T1 JOIN student_course_registrations AS T2 ON T1.course_id = T2.course_id WHERE T1.course_name = "statistics" ORDER BY T2.registration_date
CREATE TABLE Addresses ( address_id INTEGER NOT NULL, line_1 VARCHAR(80), line_2 VARCHAR(80), city VARCHAR(50), zip_postcode CHAR(20), state_province_county VARCHAR(50), country VARCHAR(50), PRIMARY KEY (address_id) ) 3 rows from Addresses table: address_id line_1 line_2 city zip_postcode state_province_county country 5 0900 Roderick Oval\nNew Albina, WA 19200-7914 Suite 096 Linnealand 862 Montana USA 9 966 Dach Ports Apt. 322\nLake Harmonyhaven, VA 65235 Apt. 163 South Minnie 716 Texas USA 29 28550 Broderick Underpass Suite 667\nZakaryhaven, WY 22945-1534 Apt. 419 North Trystanborough 112 Vermont USA CREATE TABLE People ( person_id INTEGER NOT NULL, first_name VARCHAR(255), middle_name VARCHAR(255), last_name VARCHAR(255), cell_mobile_number VARCHAR(40), email_address VARCHAR(40), login_name VARCHAR(40), password VARCHAR(40), PRIMARY KEY (person_id) ) 3 rows from People table: person_id first_name middle_name last_name cell_mobile_number email_address login_name password 111 Shannon Elissa Senger 01955267735 javier.trantow@example.net pgub 5e4ff49a61b3544da3ad7dc7e2cf28847564c64c 121 Virginie Jasmin Hartmann (508)319-2970x043 boyer.lonie@example.com bkkv b063331ea8116befaa7b84c59c6a22200f5f8caa 131 Dariana Hayley Bednar (262)347-9364x516 leila14@example.net zops b20b6a9f24aadeda70d54e410c3219f61fb063fb CREATE TABLE Students ( student_id INTEGER NOT NULL, student_details VARCHAR(255), PRIMARY KEY (student_id), FOREIGN KEY (student_id) REFERENCES People (person_id) ) 3 rows from Students table: student_id student_details 111 Marry 121 Martin 131 Barry CREATE TABLE Courses ( course_id VARCHAR(100) NOT NULL, course_name VARCHAR(120), course_description VARCHAR(255), other_details VARCHAR(255), PRIMARY KEY (course_id) ) 3 rows from Courses table: course_id course_name course_description other_details 301 statistics statistics None 302 English English None 303 French French None CREATE TABLE People_Addresses ( person_address_id INTEGER NOT NULL, person_id INTEGER NOT NULL, address_id INTEGER NOT NULL, date_from DATETIME, date_to DATETIME, PRIMARY KEY (person_address_id), FOREIGN KEY (person_id) REFERENCES People (person_id), FOREIGN KEY (address_id) REFERENCES Addresses (address_id) ) 3 rows from People_Addresses table: person_address_id person_id address_id date_from date_to 122 111 9 2012-09-26 13:21:00 2018-03-21 09:46:30 257 121 5 2008-07-31 02:17:25 2018-03-09 02:11:12 269 131 88 2008-05-26 20:43:41 2018-03-11 20:26:41 CREATE TABLE Student_Course_Registrations ( student_id INTEGER NOT NULL, course_id INTEGER NOT NULL, registration_date DATETIME NOT NULL, PRIMARY KEY (student_id, course_id), FOREIGN KEY (student_id) REFERENCES Students (student_id), FOREIGN KEY (course_id) REFERENCES Courses (course_id) ) 3 rows from Student_Course_Registrations table: student_id course_id registration_date 111 301 2008-11-04 10:35:13 121 301 2008-10-04 10:35:13 121 303 2008-11-14 10:35:13 CREATE TABLE Student_Course_Attendance ( student_id INTEGER NOT NULL, course_id INTEGER NOT NULL, date_of_attendance DATETIME NOT NULL, PRIMARY KEY (student_id, course_id), FOREIGN KEY (student_id, course_id) REFERENCES Student_Course_Registrations (student_id,course_id) ) 3 rows from Student_Course_Attendance table: student_id course_id date_of_attendance 111 301 2008-11-04 10:35:13 121 301 2012-04-09 11:44:34 121 303 2014-04-09 11:44:34 CREATE TABLE Candidates ( candidate_id INTEGER NOT NULL , candidate_details VARCHAR(255), PRIMARY KEY (candidate_id), FOREIGN KEY (candidate_id) REFERENCES People (person_id) ) 3 rows from Candidates table: candidate_id candidate_details 111 Jane 121 Robert 131 Alex CREATE TABLE Candidate_Assessments ( candidate_id INTEGER NOT NULL, qualification CHAR(15) NOT NULL, assessment_date DATETIME NOT NULL, asessment_outcome_code CHAR(15) NOT NULL, PRIMARY KEY (candidate_id, qualification), FOREIGN KEY (candidate_id) REFERENCES Candidates (candidate_id) ) 3 rows from Candidate_Assessments table: candidate_id qualification assessment_date asessment_outcome_code 111 A 2010-04-07 11:44:34 Pass 121 B 2010-04-17 11:44:34 Pass 131 D 2010-04-05 11:44:34 Fail
student_assessment
List the id of students who attended statistics courses in the order of attendance date.
SELECT T2.student_id FROM courses AS T1 JOIN student_course_attendance AS T2 ON T1.course_id = T2.course_id WHERE T1.course_name = "statistics" ORDER BY T2.date_of_attendance
CREATE TABLE Addresses ( address_id INTEGER NOT NULL, line_1 VARCHAR(80), line_2 VARCHAR(80), city VARCHAR(50), zip_postcode CHAR(20), state_province_county VARCHAR(50), country VARCHAR(50), PRIMARY KEY (address_id) ) 3 rows from Addresses table: address_id line_1 line_2 city zip_postcode state_province_county country 5 0900 Roderick Oval\nNew Albina, WA 19200-7914 Suite 096 Linnealand 862 Montana USA 9 966 Dach Ports Apt. 322\nLake Harmonyhaven, VA 65235 Apt. 163 South Minnie 716 Texas USA 29 28550 Broderick Underpass Suite 667\nZakaryhaven, WY 22945-1534 Apt. 419 North Trystanborough 112 Vermont USA CREATE TABLE People ( person_id INTEGER NOT NULL, first_name VARCHAR(255), middle_name VARCHAR(255), last_name VARCHAR(255), cell_mobile_number VARCHAR(40), email_address VARCHAR(40), login_name VARCHAR(40), password VARCHAR(40), PRIMARY KEY (person_id) ) 3 rows from People table: person_id first_name middle_name last_name cell_mobile_number email_address login_name password 111 Shannon Elissa Senger 01955267735 javier.trantow@example.net pgub 5e4ff49a61b3544da3ad7dc7e2cf28847564c64c 121 Virginie Jasmin Hartmann (508)319-2970x043 boyer.lonie@example.com bkkv b063331ea8116befaa7b84c59c6a22200f5f8caa 131 Dariana Hayley Bednar (262)347-9364x516 leila14@example.net zops b20b6a9f24aadeda70d54e410c3219f61fb063fb CREATE TABLE Students ( student_id INTEGER NOT NULL, student_details VARCHAR(255), PRIMARY KEY (student_id), FOREIGN KEY (student_id) REFERENCES People (person_id) ) 3 rows from Students table: student_id student_details 111 Marry 121 Martin 131 Barry CREATE TABLE Courses ( course_id VARCHAR(100) NOT NULL, course_name VARCHAR(120), course_description VARCHAR(255), other_details VARCHAR(255), PRIMARY KEY (course_id) ) 3 rows from Courses table: course_id course_name course_description other_details 301 statistics statistics None 302 English English None 303 French French None CREATE TABLE People_Addresses ( person_address_id INTEGER NOT NULL, person_id INTEGER NOT NULL, address_id INTEGER NOT NULL, date_from DATETIME, date_to DATETIME, PRIMARY KEY (person_address_id), FOREIGN KEY (person_id) REFERENCES People (person_id), FOREIGN KEY (address_id) REFERENCES Addresses (address_id) ) 3 rows from People_Addresses table: person_address_id person_id address_id date_from date_to 122 111 9 2012-09-26 13:21:00 2018-03-21 09:46:30 257 121 5 2008-07-31 02:17:25 2018-03-09 02:11:12 269 131 88 2008-05-26 20:43:41 2018-03-11 20:26:41 CREATE TABLE Student_Course_Registrations ( student_id INTEGER NOT NULL, course_id INTEGER NOT NULL, registration_date DATETIME NOT NULL, PRIMARY KEY (student_id, course_id), FOREIGN KEY (student_id) REFERENCES Students (student_id), FOREIGN KEY (course_id) REFERENCES Courses (course_id) ) 3 rows from Student_Course_Registrations table: student_id course_id registration_date 111 301 2008-11-04 10:35:13 121 301 2008-10-04 10:35:13 121 303 2008-11-14 10:35:13 CREATE TABLE Student_Course_Attendance ( student_id INTEGER NOT NULL, course_id INTEGER NOT NULL, date_of_attendance DATETIME NOT NULL, PRIMARY KEY (student_id, course_id), FOREIGN KEY (student_id, course_id) REFERENCES Student_Course_Registrations (student_id,course_id) ) 3 rows from Student_Course_Attendance table: student_id course_id date_of_attendance 111 301 2008-11-04 10:35:13 121 301 2012-04-09 11:44:34 121 303 2014-04-09 11:44:34 CREATE TABLE Candidates ( candidate_id INTEGER NOT NULL , candidate_details VARCHAR(255), PRIMARY KEY (candidate_id), FOREIGN KEY (candidate_id) REFERENCES People (person_id) ) 3 rows from Candidates table: candidate_id candidate_details 111 Jane 121 Robert 131 Alex CREATE TABLE Candidate_Assessments ( candidate_id INTEGER NOT NULL, qualification CHAR(15) NOT NULL, assessment_date DATETIME NOT NULL, asessment_outcome_code CHAR(15) NOT NULL, PRIMARY KEY (candidate_id, qualification), FOREIGN KEY (candidate_id) REFERENCES Candidates (candidate_id) ) 3 rows from Candidate_Assessments table: candidate_id qualification assessment_date asessment_outcome_code 111 A 2010-04-07 11:44:34 Pass 121 B 2010-04-17 11:44:34 Pass 131 D 2010-04-05 11:44:34 Fail
student_assessment
What are the ids of the students who attended courses in the statistics department in order of attendance date.
SELECT T2.student_id FROM courses AS T1 JOIN student_course_attendance AS T2 ON T1.course_id = T2.course_id WHERE T1.course_name = "statistics" ORDER BY T2.date_of_attendance
CREATE TABLE Addresses ( address_id INTEGER NOT NULL, line_1 VARCHAR(80), line_2 VARCHAR(80), city VARCHAR(50), zip_postcode CHAR(20), state_province_county VARCHAR(50), country VARCHAR(50), PRIMARY KEY (address_id) ) 3 rows from Addresses table: address_id line_1 line_2 city zip_postcode state_province_county country 5 0900 Roderick Oval\nNew Albina, WA 19200-7914 Suite 096 Linnealand 862 Montana USA 9 966 Dach Ports Apt. 322\nLake Harmonyhaven, VA 65235 Apt. 163 South Minnie 716 Texas USA 29 28550 Broderick Underpass Suite 667\nZakaryhaven, WY 22945-1534 Apt. 419 North Trystanborough 112 Vermont USA CREATE TABLE People ( person_id INTEGER NOT NULL, first_name VARCHAR(255), middle_name VARCHAR(255), last_name VARCHAR(255), cell_mobile_number VARCHAR(40), email_address VARCHAR(40), login_name VARCHAR(40), password VARCHAR(40), PRIMARY KEY (person_id) ) 3 rows from People table: person_id first_name middle_name last_name cell_mobile_number email_address login_name password 111 Shannon Elissa Senger 01955267735 javier.trantow@example.net pgub 5e4ff49a61b3544da3ad7dc7e2cf28847564c64c 121 Virginie Jasmin Hartmann (508)319-2970x043 boyer.lonie@example.com bkkv b063331ea8116befaa7b84c59c6a22200f5f8caa 131 Dariana Hayley Bednar (262)347-9364x516 leila14@example.net zops b20b6a9f24aadeda70d54e410c3219f61fb063fb CREATE TABLE Students ( student_id INTEGER NOT NULL, student_details VARCHAR(255), PRIMARY KEY (student_id), FOREIGN KEY (student_id) REFERENCES People (person_id) ) 3 rows from Students table: student_id student_details 111 Marry 121 Martin 131 Barry CREATE TABLE Courses ( course_id VARCHAR(100) NOT NULL, course_name VARCHAR(120), course_description VARCHAR(255), other_details VARCHAR(255), PRIMARY KEY (course_id) ) 3 rows from Courses table: course_id course_name course_description other_details 301 statistics statistics None 302 English English None 303 French French None CREATE TABLE People_Addresses ( person_address_id INTEGER NOT NULL, person_id INTEGER NOT NULL, address_id INTEGER NOT NULL, date_from DATETIME, date_to DATETIME, PRIMARY KEY (person_address_id), FOREIGN KEY (person_id) REFERENCES People (person_id), FOREIGN KEY (address_id) REFERENCES Addresses (address_id) ) 3 rows from People_Addresses table: person_address_id person_id address_id date_from date_to 122 111 9 2012-09-26 13:21:00 2018-03-21 09:46:30 257 121 5 2008-07-31 02:17:25 2018-03-09 02:11:12 269 131 88 2008-05-26 20:43:41 2018-03-11 20:26:41 CREATE TABLE Student_Course_Registrations ( student_id INTEGER NOT NULL, course_id INTEGER NOT NULL, registration_date DATETIME NOT NULL, PRIMARY KEY (student_id, course_id), FOREIGN KEY (student_id) REFERENCES Students (student_id), FOREIGN KEY (course_id) REFERENCES Courses (course_id) ) 3 rows from Student_Course_Registrations table: student_id course_id registration_date 111 301 2008-11-04 10:35:13 121 301 2008-10-04 10:35:13 121 303 2008-11-14 10:35:13 CREATE TABLE Student_Course_Attendance ( student_id INTEGER NOT NULL, course_id INTEGER NOT NULL, date_of_attendance DATETIME NOT NULL, PRIMARY KEY (student_id, course_id), FOREIGN KEY (student_id, course_id) REFERENCES Student_Course_Registrations (student_id,course_id) ) 3 rows from Student_Course_Attendance table: student_id course_id date_of_attendance 111 301 2008-11-04 10:35:13 121 301 2012-04-09 11:44:34 121 303 2014-04-09 11:44:34 CREATE TABLE Candidates ( candidate_id INTEGER NOT NULL , candidate_details VARCHAR(255), PRIMARY KEY (candidate_id), FOREIGN KEY (candidate_id) REFERENCES People (person_id) ) 3 rows from Candidates table: candidate_id candidate_details 111 Jane 121 Robert 131 Alex CREATE TABLE Candidate_Assessments ( candidate_id INTEGER NOT NULL, qualification CHAR(15) NOT NULL, assessment_date DATETIME NOT NULL, asessment_outcome_code CHAR(15) NOT NULL, PRIMARY KEY (candidate_id, qualification), FOREIGN KEY (candidate_id) REFERENCES Candidates (candidate_id) ) 3 rows from Candidate_Assessments table: candidate_id qualification assessment_date asessment_outcome_code 111 A 2010-04-07 11:44:34 Pass 121 B 2010-04-17 11:44:34 Pass 131 D 2010-04-05 11:44:34 Fail
bike_1
Give me the dates when the max temperature was higher than 85.
SELECT date FROM weather WHERE max_temperature_f > 85
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What are the dates with a maximum temperature higher than 85?
SELECT date FROM weather WHERE max_temperature_f > 85
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What are the names of stations that have latitude lower than 37.5?
SELECT name FROM station WHERE lat < 37.5
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What are the names of all stations with a latitude smaller than 37.5?
SELECT name FROM station WHERE lat < 37.5
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
For each city, return the highest latitude among its stations.
SELECT city , max(lat) FROM station GROUP BY city
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
For each city, what is the highest latitude for its stations?
SELECT city , max(lat) FROM station GROUP BY city
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
Give me the start station and end station for the trips with the three oldest id.
SELECT start_station_name , end_station_name FROM trip ORDER BY id LIMIT 3
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What is the station station and end station for the trips with the three smallest ids?
SELECT start_station_name , end_station_name FROM trip ORDER BY id LIMIT 3
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What is the average latitude and longitude of stations located in San Jose city?
SELECT avg(lat) , avg(long) FROM station WHERE city = "San Jose"
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What is the average latitude and longitude in San Jose?
SELECT avg(lat) , avg(long) FROM station WHERE city = "San Jose"
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What is the id of the trip that has the shortest duration?
SELECT id FROM trip ORDER BY duration LIMIT 1
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What is the id of the shortest trip?
SELECT id FROM trip ORDER BY duration LIMIT 1
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What is the total and maximum duration of trips with bike id 636?
SELECT sum(duration) , max(duration) FROM trip WHERE bike_id = 636
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What is the total and maximum duration for all trips with the bike id 636?
SELECT sum(duration) , max(duration) FROM trip WHERE bike_id = 636
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
For each zip code, return the average mean temperature of August there.
SELECT zip_code , avg(mean_temperature_f) FROM weather WHERE date LIKE "8/%" GROUP BY zip_code
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
For each zip code, what is the average mean temperature for all dates that start with '8'?
SELECT zip_code , avg(mean_temperature_f) FROM weather WHERE date LIKE "8/%" GROUP BY zip_code
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
From the trip record, find the number of unique bikes.
SELECT count(DISTINCT bike_id) FROM trip
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
How many different bike ids are there?
SELECT count(DISTINCT bike_id) FROM trip
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What is the number of distinct cities the stations are located at?
SELECT count(DISTINCT city) FROM station
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
How many different cities have these stations?
SELECT count(DISTINCT city) FROM station
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
How many stations does Mountain View city has?
SELECT COUNT(*) FROM station WHERE city = "Mountain View"
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
How many stations are in Mountain View?
SELECT COUNT(*) FROM station WHERE city = "Mountain View"
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
Return the unique name for stations that have ever had 7 bikes available.
SELECT DISTINCT T1.name FROM station AS T1 JOIN status AS T2 ON T1.id = T2.station_id WHERE T2.bikes_available = 7
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What are the different names for each station that has ever had 7 bikes available?
SELECT DISTINCT T1.name FROM station AS T1 JOIN status AS T2 ON T1.id = T2.station_id WHERE T2.bikes_available = 7
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
Which start station had the most trips starting from August? Give me the name and id of the station.
SELECT start_station_name , start_station_id FROM trip WHERE start_date LIKE "8/%" GROUP BY start_station_name ORDER BY COUNT(*) DESC LIMIT 1
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What are the start station's name and id for the one that had the most start trips in August?
SELECT start_station_name , start_station_id FROM trip WHERE start_date LIKE "8/%" GROUP BY start_station_name ORDER BY COUNT(*) DESC LIMIT 1
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
Which bike traveled the most often in zip code 94002?
SELECT bike_id FROM trip WHERE zip_code = 94002 GROUP BY bike_id ORDER BY COUNT(*) DESC LIMIT 1
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What is the id of the bike that traveled the most in 94002?
SELECT bike_id FROM trip WHERE zip_code = 94002 GROUP BY bike_id ORDER BY COUNT(*) DESC LIMIT 1
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
How many days had both mean humidity above 50 and mean visibility above 8?
SELECT COUNT(*) FROM weather WHERE mean_humidity > 50 AND mean_visibility_miles > 8
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What is the number of days that had an average humity above 50 and an average visibility above 8?
SELECT COUNT(*) FROM weather WHERE mean_humidity > 50 AND mean_visibility_miles > 8
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What is the latitude, longitude, city of the station from which the shortest trip started?
SELECT T1.lat , T1.long , T1.city FROM station AS T1 JOIN trip AS T2 ON T1.id = T2.start_station_id ORDER BY T2.duration LIMIT 1
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What is the latitude, longitude, and city of the station from which the trip with smallest duration started?
SELECT T1.lat , T1.long , T1.city FROM station AS T1 JOIN trip AS T2 ON T1.id = T2.start_station_id ORDER BY T2.duration LIMIT 1
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What are the ids of stations that are located in San Francisco and have average bike availability above 10.
SELECT id FROM station WHERE city = "San Francisco" INTERSECT SELECT station_id FROM status GROUP BY station_id HAVING avg(bikes_available) > 10
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What are the ids of the stations in San Francisco that normally have more than 10 bikes available?
SELECT id FROM station WHERE city = "San Francisco" INTERSECT SELECT station_id FROM status GROUP BY station_id HAVING avg(bikes_available) > 10
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What are the names and ids of stations that had more than 14 bikes available on average or were installed in December?
SELECT T1.name , T1.id FROM station AS T1 JOIN status AS T2 ON T1.id = T2.station_id GROUP BY T2.station_id HAVING avg(T2.bikes_available) > 14 UNION SELECT name , id FROM station WHERE installation_date LIKE "12/%"
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What are the names and ids of all stations that have more than 14 bikes available on average or had bikes installed in December?
SELECT T1.name , T1.id FROM station AS T1 JOIN status AS T2 ON T1.id = T2.station_id GROUP BY T2.station_id HAVING avg(T2.bikes_available) > 14 UNION SELECT name , id FROM station WHERE installation_date LIKE "12/%"
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What is the 3 most common cloud cover rates in the region of zip code 94107?
SELECT cloud_cover FROM weather WHERE zip_code = 94107 GROUP BY cloud_cover ORDER BY COUNT (*) DESC LIMIT 3
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What are the 3 most common cloud covers in the zip code of 94107?
SELECT cloud_cover FROM weather WHERE zip_code = 94107 GROUP BY cloud_cover ORDER BY COUNT (*) DESC LIMIT 3
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What is the zip code in which the average mean sea level pressure is the lowest?
SELECT zip_code FROM weather GROUP BY zip_code ORDER BY avg(mean_sea_level_pressure_inches) LIMIT 1
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What is the zip code that has the lowest average mean sea level pressure?
SELECT zip_code FROM weather GROUP BY zip_code ORDER BY avg(mean_sea_level_pressure_inches) LIMIT 1
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What is the average bike availability in stations that are not located in Palo Alto?
SELECT avg(bikes_available) FROM status WHERE station_id NOT IN (SELECT id FROM station WHERE city = "Palo Alto")
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What is the average bike availablility for stations not in Palo Alto?
SELECT avg(bikes_available) FROM status WHERE station_id NOT IN (SELECT id FROM station WHERE city = "Palo Alto")
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What is the average longitude of stations that never had bike availability more than 10?
SELECT avg(long) FROM station WHERE id NOT IN (SELECT station_id FROM status GROUP BY station_id HAVING max(bikes_available) > 10)
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What is the mean longitude for all stations that have never had more than 10 bikes available?
SELECT avg(long) FROM station WHERE id NOT IN (SELECT station_id FROM status GROUP BY station_id HAVING max(bikes_available) > 10)
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
When and in what zip code did max temperature reach 80?
SELECT date , zip_code FROM weather WHERE max_temperature_f >= 80
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What zip codes have a station with a max temperature greater than or equal to 80 and when did it reach that temperature?
SELECT date , zip_code FROM weather WHERE max_temperature_f >= 80
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
Give me ids for all the trip that took place in a zip code area with average mean temperature above 60.
SELECT T1.id FROM trip AS T1 JOIN weather AS T2 ON T1.zip_code = T2.zip_code GROUP BY T2.zip_code HAVING avg(T2.mean_temperature_f) > 60
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
For each zip code, find the ids of all trips that have a higher average mean temperature above 60?
SELECT T1.id FROM trip AS T1 JOIN weather AS T2 ON T1.zip_code = T2.zip_code GROUP BY T2.zip_code HAVING avg(T2.mean_temperature_f) > 60
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
For each zip code, return how many times max wind speed reached 25?
SELECT zip_code , count(*) FROM weather WHERE max_wind_Speed_mph >= 25 GROUP BY zip_code
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
For each zip code, how many times has the maximum wind speed reached 25 mph?
SELECT zip_code , count(*) FROM weather WHERE max_wind_Speed_mph >= 25 GROUP BY zip_code
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
On which day and in which zip code was the min dew point lower than any day in zip code 94107?
SELECT date , zip_code FROM weather WHERE min_dew_point_f < (SELECT min(min_dew_point_f) FROM weather WHERE zip_code = 94107)
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
Which days had a minimum dew point smaller than any day in zip code 94107, and in which zip codes were those measurements taken?
SELECT date , zip_code FROM weather WHERE min_dew_point_f < (SELECT min(min_dew_point_f) FROM weather WHERE zip_code = 94107)
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
For each trip, return its ending station's installation date.
SELECT T1.id , T2.installation_date FROM trip AS T1 JOIN station AS T2 ON T1.end_station_id = T2.id
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What is the installation date for each ending station on all the trips?
SELECT T1.id , T2.installation_date FROM trip AS T1 JOIN station AS T2 ON T1.end_station_id = T2.id
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
Which trip started from the station with the largest dock count? Give me the trip id.
SELECT T1.id FROM trip AS T1 JOIN station AS T2 ON T1.start_station_id = T2.id ORDER BY T2.dock_count DESC LIMIT 1
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What is the id of the trip that started from the station with the highest dock count?
SELECT T1.id FROM trip AS T1 JOIN station AS T2 ON T1.start_station_id = T2.id ORDER BY T2.dock_count DESC LIMIT 1
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
Count the number of trips that did not end in San Francisco city.
SELECT count(*) FROM trip AS T1 JOIN station AS T2 ON T1.end_station_id = T2.id WHERE T2.city != "San Francisco"
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
How many trips did not end in San Francisco?
SELECT count(*) FROM trip AS T1 JOIN station AS T2 ON T1.end_station_id = T2.id WHERE T2.city != "San Francisco"
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
In zip code 94107, on which day neither Fog nor Rain was not observed?
SELECT date FROM weather WHERE zip_code = 94107 AND EVENTS != "Fog" AND EVENTS != "Rain"
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
On which day has it neither been foggy nor rained in the zip code of 94107?
SELECT date FROM weather WHERE zip_code = 94107 AND EVENTS != "Fog" AND EVENTS != "Rain"
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What are the ids of stations that have latitude above 37.4 and never had bike availability below 7?
SELECT id FROM station WHERE lat > 37.4 EXCEPT SELECT station_id FROM status GROUP BY station_id HAVING min(bikes_available) < 7
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What are the ids of all stations that have a latitude above 37.4 and have never had less than 7 bikes available?
SELECT id FROM station WHERE lat > 37.4 EXCEPT SELECT station_id FROM status GROUP BY station_id HAVING min(bikes_available) < 7
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What are names of stations that have average bike availability above 10 and are not located in San Jose city?
SELECT T1.name FROM station AS T1 JOIN status AS T2 ON T1.id = T2.station_id GROUP BY T2.station_id HAVING avg(bikes_available) > 10 EXCEPT SELECT name FROM station WHERE city = "San Jose"
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What are the names of all stations that have more than 10 bikes available and are not located in San Jose?
SELECT T1.name FROM station AS T1 JOIN status AS T2 ON T1.id = T2.station_id GROUP BY T2.station_id HAVING avg(bikes_available) > 10 EXCEPT SELECT name FROM station WHERE city = "San Jose"
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What are the name, latitude, and city of the station with the lowest latitude?
SELECT name , lat , city FROM station ORDER BY lat LIMIT 1
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What is the name, latitude, and city of the station that is located the furthest South?
SELECT name , lat , city FROM station ORDER BY lat LIMIT 1
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What are the date, mean temperature and mean humidity for the top 3 days with the largest max gust speeds?
SELECT date , mean_temperature_f , mean_humidity FROM weather ORDER BY max_gust_speed_mph DESC LIMIT 3
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What is the date, average temperature and mean humidity for the days with the 3 largest maximum gust speeds?
SELECT date , mean_temperature_f , mean_humidity FROM weather ORDER BY max_gust_speed_mph DESC LIMIT 3
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
List the name and the number of stations for all the cities that have at least 15 stations.
SELECT city , COUNT(*) FROM station GROUP BY city HAVING COUNT(*) >= 15
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What is the name of every city that has at least 15 stations and how many stations does it have?
SELECT city , COUNT(*) FROM station GROUP BY city HAVING COUNT(*) >= 15
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
Find the ids and names of stations from which at least 200 trips started.
SELECT start_station_id , start_station_name FROM trip GROUP BY start_station_name HAVING COUNT(*) >= 200
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What are the ids and names of all start stations that were the beginning of at least 200 trips?
SELECT start_station_id , start_station_name FROM trip GROUP BY start_station_name HAVING COUNT(*) >= 200
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
Find the zip code in which the average mean visibility is lower than 10.
SELECT zip_code FROM weather GROUP BY zip_code HAVING avg(mean_visibility_miles) < 10
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
For each zip code, select all those that have an average mean visiblity below 10.
SELECT zip_code FROM weather GROUP BY zip_code HAVING avg(mean_visibility_miles) < 10
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
List all the cities in a decreasing order of each city's stations' highest latitude.
SELECT city FROM station GROUP BY city ORDER BY max(lat) DESC
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
For each city, list their names in decreasing order by their highest station latitude.
SELECT city FROM station GROUP BY city ORDER BY max(lat) DESC
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What are the dates that had the top 5 cloud cover rates? Also tell me the cloud cover rate.
SELECT date , cloud_cover FROM weather ORDER BY cloud_cover DESC LIMIT 5
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What are the dates that have the 5 highest cloud cover rates and what are the rates?
SELECT date , cloud_cover FROM weather ORDER BY cloud_cover DESC LIMIT 5
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What are the ids and durations of the trips with the top 3 durations?
SELECT id , duration FROM trip ORDER BY duration DESC LIMIT 3
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What are the ids of the trips that lasted the longest and how long did they last?
SELECT id , duration FROM trip ORDER BY duration DESC LIMIT 3
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
For each station, return its longitude and the average duration of trips that started from the station.
SELECT T1.name , T1.long , avg(T2.duration) FROM station AS T1 JOIN trip AS T2 ON T1.id = T2.start_station_id GROUP BY T2.start_station_id
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
For each start station id, what is its name, longitude and average duration of trips started there?
SELECT T1.name , T1.long , avg(T2.duration) FROM station AS T1 JOIN trip AS T2 ON T1.id = T2.start_station_id GROUP BY T2.start_station_id
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
For each station, find its latitude and the minimum duration of trips that ended at the station.
SELECT T1.name , T1.lat , min(T2.duration) FROM station AS T1 JOIN trip AS T2 ON T1.id = T2.end_station_id GROUP BY T2.end_station_id
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
For each end station id, what is its name, latitude, and minimum duration for trips ended there?
SELECT T1.name , T1.lat , min(T2.duration) FROM station AS T1 JOIN trip AS T2 ON T1.id = T2.end_station_id GROUP BY T2.end_station_id
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
List all the distinct stations from which a trip of duration below 100 started.
SELECT DISTINCT start_station_name FROM trip WHERE duration < 100
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What are all the different start station names for a trip that lasted less than 100?
SELECT DISTINCT start_station_name FROM trip WHERE duration < 100
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
Find all the zip codes in which the max dew point have never reached 70.
SELECT DISTINCT zip_code FROM weather EXCEPT SELECT DISTINCT zip_code FROM weather WHERE max_dew_point_f >= 70
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What are all the different zip codes that have a maximum dew point that was always below 70?
SELECT DISTINCT zip_code FROM weather EXCEPT SELECT DISTINCT zip_code FROM weather WHERE max_dew_point_f >= 70
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
Find the id for the trips that lasted at least as long as the average duration of trips in zip code 94103.
SELECT id FROM trip WHERE duration >= (SELECT avg(duration) FROM trip WHERE zip_code = 94103)
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What are the ids of all trips that had a duration as long as the average trip duration in the zip code 94103?
SELECT id FROM trip WHERE duration >= (SELECT avg(duration) FROM trip WHERE zip_code = 94103)
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107
bike_1
What are the dates in which the mean sea level pressure was between 30.3 and 31?
SELECT date FROM weather WHERE mean_sea_level_pressure_inches BETWEEN 30.3 AND 31
CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGER, city TEXT, installation_date TEXT) 3 rows from station table: id name lat long dock_count city installation_date 2 San Jose Diridon Caltrain Station 37.329732 -121.901782 27 San Jose 8/6/2013 3 San Jose Civic Center 37.330698 -121.888979 15 San Jose 8/5/2013 4 Santa Clara at Almaden 37.333988 -121.894902 11 San Jose 8/6/2013 CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT, FOREIGN KEY (station_id) REFERENCES station(id) ) 3 rows from status table: station_id bikes_available docks_available time 3 12 3 2015-06-02 12:46:02 3 12 3 2015-06-02 12:47:02 3 12 3 2015-06-02 12:48:02 CREATE TABLE trip ( id INTEGER PRIMARY KEY, duration INTEGER, start_date TEXT, start_station_name TEXT, -- this should be removed start_station_id INTEGER, end_date TEXT, end_station_name TEXT, -- this should be removed end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER) 3 rows from trip table: id duration start_date start_station_name start_station_id end_date end_station_name end_station_id bike_id subscription_type zip_code 900504 384 8/21/2015 17:03 Howard at 2nd 63 8/21/2015 17:10 San Francisco Caltrain 2 (330 Townsend) 69 454 Subscriber 94041 900505 588 8/21/2015 17:03 South Van Ness at Market 66 8/21/2015 17:13 San Francisco Caltrain 2 (330 Townsend) 69 574 Subscriber 95119 900506 196 8/21/2015 17:04 Market at Sansome 77 8/21/2015 17:07 Harry Bridges Plaza (Ferry Building) 50 636 Subscriber 94925 CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_dew_point_f INTEGER, max_humidity INTEGER, mean_humidity INTEGER, min_humidity INTEGER, max_sea_level_pressure_inches NUMERIC, mean_sea_level_pressure_inches NUMERIC, min_sea_level_pressure_inches NUMERIC, max_visibility_miles INTEGER, mean_visibility_miles INTEGER, min_visibility_miles INTEGER, max_wind_Speed_mph INTEGER, mean_wind_speed_mph INTEGER, max_gust_speed_mph INTEGER, precipitation_inches INTEGER, cloud_cover INTEGER, events TEXT, wind_dir_degrees INTEGER, zip_code INTEGER) 3 rows from weather table: date max_temperature_f mean_temperature_f min_temperature_f max_dew_point_f mean_dew_point_f min_dew_point_f max_humidity mean_humidity min_humidity max_sea_level_pressure_inches mean_sea_level_pressure_inches min_sea_level_pressure_inches max_visibility_miles mean_visibility_miles min_visibility_miles max_wind_Speed_mph mean_wind_speed_mph max_gust_speed_mph precipitation_inches cloud_cover events wind_dir_degrees zip_code 8/29/2013 74 68 61 61 58 56 93 75 57 30.07 30.02 29.97 10 10 10 23 11 28 0 4 286 94107 8/30/2013 78 69 60 61 58 56 90 70 50 30.05 30.00 29.93 10 10 7 29 13 35 0 2 291 94107 8/31/2013 71 64 57 57 56 54 93 75 57 30.00 29.96 29.92 10 10 10 26 15 31 0 4 284 94107