context
stringlengths 11
9.12k
| question
stringlengths 0
1.06k
| SQL
stringlengths 2
4.44k
| source
stringclasses 28
values |
---|---|---|---|
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | What were the max gust speed and cloud clover when the customer using bike no. 10 recorded the 386 seconds duration of the trip from MLK Library to San Salvador at 1st? | SELECT T2.max_gust_speed_mph, T2.cloud_cover FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code AND T2.date = SUBSTR(CAST(T1.start_date AS TEXT), 1, INSTR(T1.start_date, ' ') - 1) WHERE T1.bike_id = 10 AND T2.mean_temperature_f > 62 AND T1.subscription_type = 'Customer' AND T1.start_station_name = 'MLK Library' AND T1.end_station_name = 'San Salvador at 1st' AND T1.duration = 386 | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | Among the subscriber, how many of them finished the 2nd at Folsom and Civic Center BART (7th at Market) as their start and end stations respectively for no more than 490 seconds under minimum visibility of 4 miles. | SELECT COUNT(T1.id) FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code WHERE T1.subscription_type = 'Subscriber' AND T2.min_visibility_miles = 4 AND T1.duration < 490 AND T1.start_station_name = '2nd at Folsom' AND T1.end_station_name = 'Civic Center BART (7th at Market)' | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | How many docks were available at the starting station of trip ID 912900? | SELECT SUM(T2.docks_available) FROM trip AS T1 INNER JOIN status AS T2 ON T2.station_id = T1.start_station_id WHERE T1.zip_code = 912900 | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | Please write down the trip IDs which ended on the days when the minimum temperature is less than 45 degrees Fahrenheit. | SELECT T1.id FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code WHERE T2.min_temperature_f < 45 | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | In 2014, what is the shortest duration of trips by subscribers which started at 2nd at Folsom and ended in the 5th at Howard stations, and by how much shorter than the average? Give me the minimum temperature, maximum gust speed and weather event on that trip. | SELECT MIN(T1.duration) , MIN(T1.duration) - AVG(T1.duration), T2.min_temperature_f FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code WHERE T1.start_date = '1/1/2014 0:00' AND T1.end_date = '12/31/2014 11:59' AND T1.start_station_name = '2nd at Folsom' AND T1.end_station_name = '5th at Howard' AND T1.subscription_type = 'Subscriber' | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | Find the average ride time of the bikes that started at Steuart at Market station and ended at Embarcadero at Sansome station in July 2014. | SELECT AVG(duration) FROM trip WHERE start_date = '7/1/2014%' AND end_date = '7/31/2014%' AND start_station_name = 'Steuart at Market' AND end_station_name = 'Embarcadero at Sansome' | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | What are the average maximum and minimum temperatures in May 2015 when the mean humidity is between 65 and 75? | SELECT AVG(max_temperature_f), AVG(min_temperature_f) FROM weather WHERE date LIKE '5/%/2015' AND mean_humidity BETWEEN 65 AND 75 | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | Calculate the difference between the number of customers and the number of subscribers who did the trip in June 2013. | SELECT SUM(IIF(subscription_type = 'Subscriber', 1, 0)) - SUM(IIF(subscription_type = 'Customer', 1, 0)) FROM trip WHERE start_date LIKE '6/%/2013%' | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | List the days in 2013 when rain and fog occurred together and find the id of bikes borrowed on these days. | SELECT T2.date, T1.bike_id FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code WHERE SUBSTR(CAST(T2.date AS TEXT), -4) = '2013' AND T2.events = 'Fog-Rain' | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | Find the longest ride on foggy day. What were the mean visibility, mean wind speed, and weather event during that ride? Also, list the coordinates and names of the start and end stations. | SELECT T3.mean_visibility_miles, T3.mean_wind_speed_mph, T3.events, T1.lat, T1.long , T2.start_station_name, T2.end_station_name FROM station AS T1 INNER JOIN trip AS T2 ON T2.start_station_name = T1.name INNER JOIN weather AS T3 ON T3.zip_code = T2.zip_code WHERE T3.events = 'Fog' ORDER BY T2.duration DESC LIMIT 1 | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | For the rides that started at Market at 10th station and ended at South Van Ness at Market station in August of 2013, which day had the coldest temperature? | SELECT T1.start_date FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code AND T2.date = SUBSTR(CAST(T1.start_date AS TEXT), 1, INSTR(T1.start_date, ' ') - 1) WHERE T2.date LIKE '8/%/2013' AND T1.start_station_name = 'Market at 10th' AND T1.end_station_name = 'South Van Ness at Market' AND T2.min_temperature_f = ( SELECT MIN(T2.min_temperature_f) FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code AND T2.date = SUBSTR(CAST(T1.start_date AS TEXT), 1, INSTR(T1.start_date, ' ') - 1) WHERE T2.date LIKE '8/%/2013' AND T1.start_station_name = 'Market at 10th' AND T1.end_station_name = 'South Van Ness at Market' ) | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | Among the rides during the rainy days, which ride was the longest? List the start station, end station, and duration of this ride. | SELECT T1.start_station_name, T1.end_station_name, T1.duration FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code WHERE T2.events = 'Rain' OR T2.events = 'rain' ORDER BY T1.duration DESC LIMIT 1 | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | Find the average ride duration during the rain of more than 0.8 inches. | SELECT AVG(T1.duration) FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code WHERE (T2.events = 'Rain' AND T2.precipitation_inches > 0.8) OR (T2.events = 'rain' AND T2.precipitation_inches > 0.8) | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | List the name and city of starting stations which has an above-average duration trips. | SELECT DISTINCT T1.start_station_name, T2.city FROM trip AS T1 INNER JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T1.duration > ( SELECT AVG(T1.duration) FROM trip AS T1 LEFT JOIN station AS T2 ON T2.name = T1.start_station_name ) | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | How many stations in San Francisco are installed in 2014? | SELECT SUM(CASE WHEN city = 'San Francisco' AND SUBSTR(installation_date, -4) = '2014' THEN 1 ELSE 0 END) FROM station | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | In 2006, how many trips ended at stations in Mountain View? | SELECT COUNT(T2.city) FROM trip AS T1 INNER JOIN station AS T2 ON T2.name = T1.end_station_name WHERE T2.city = 'Mountain View' AND T1.start_date LIKE '%2006%' | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | Which trip id had the longest duration and the start station is in Redwood City? | SELECT T1.id FROM trip AS T1 LEFT JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T2.city = 'Redwood City' AND T1.duration = ( SELECT MAX(T1.duration) FROM trip AS T1 LEFT JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T2.city = 'Redwood City' ) | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | Please list bikes id were used in trips which start station were installed in 2013. | SELECT DISTINCT T1.bike_id FROM trip AS T1 INNER JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T2.installation_date LIKE '%2013' | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | How many trips which subscription types were Subscriber and ended in San Jose city? | SELECT COUNT(T1.subscription_type) FROM trip AS T1 INNER JOIN station AS T2 ON T2.name = T1.end_station_name WHERE T1.subscription_type = 'Subscriber' AND T2.city = 'San Jose' | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | Which trip had the shortest duration and started at the station that can hold 15 bikes? | SELECT T1.id FROM trip AS T1 INNER JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T2.dock_count = 15 AND T1.duration = ( SELECT MIN(T1.duration) FROM trip AS T1 LEFT JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T2.dock_count = 15 ) | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | Which year had the most number of trips that started at stations in San Francisco? | SELECT SUBSTR(CAST(T1.start_date AS TEXT), INSTR(T1.start_date, ' '), -4) FROM trip AS T1 INNER JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T2.city = 'San Francisco' GROUP BY T1.start_station_name ORDER BY COUNT(T1.id) DESC LIMIT 1 | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | What is the percentage of trips that started in San Jose and durations were longer than 800 seconds? | SELECT CAST(SUM(CASE WHEN T1.duration > 800 THEN 1 ELSE 0 END) AS REAL) * 100 / COUNT(T1.id) FROM trip AS T1 INNER JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T2.city = 'San Jose' | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | How many trips in 2013 had durations longer than 1000 seconds? | SELECT COUNT(duration) FROM trip WHERE start_date LIKE '%/%/2013%' AND duration > 1000 | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | Please calculate the average duration of trips started at South Van Ness at Market in 2015. | SELECT AVG(duration) FROM trip WHERE start_date LIKE '%2015%' AND start_station_name = 'South Van Ness at Market' | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | How many trips which start station and end station are the same? | SELECT SUM(IIF(start_station_id = end_station_id, 1, 0)) FROM trip | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | Please list trips id started on the hottest day. | SELECT T1.id FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code ORDER BY T2.max_temperature_f DESC LIMIT 1 | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | Which were the trips that started at Mountain View City Hall and ended on a rainy day? | SELECT T1.id FROM trip AS T1 INNER JOIN weather AS T2 WHERE T2.events = 'Rain' AND T1.start_station_name = 'Mountain View City Hall' | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | What is the average duration of trips that ended on a foggy day? | SELECT AVG(T1.duration) FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code WHERE T2.events = 'Fog' | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | What was duration of the longest trip started on the day that has a maximum wind speed of 30 mph? | SELECT T1.duration FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code WHERE T2.max_wind_Speed_mph = 30 ORDER BY T1.duration DESC LIMIT 1 | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | Please calculate the average temperature of those trips that started at Market at 4th in 2013. | SELECT AVG(T2.mean_temperature_f) FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code WHERE SUBSTR(CAST(T2.date AS TEXT), -4) = '2013' AND T1.start_station_name = 'Market at 4th' | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | What was the mean humidity of a trip with id 4275? | SELECT T2.mean_humidity FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code WHERE T1.id = 4275 | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | In 2015, what percentage of trips that had the subscription type was Customer and ended on a rainy day? | SELECT CAST(SUM(CASE WHEN T2.events = 'Rain' THEN 1 ELSE 0 END) AS REAL) * 100 / COUNT(T1.id) FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code WHERE SUBSTR(CAST(T2.date AS TEXT), -4) = '2015' AND T1.subscription_type = 'Customer' | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | How many bike stations are installed after August, 2013 in San Jose? | SELECT COUNT(installation_date) FROM station WHERE city = 'San Jose' AND (SUBSTR(CAST(installation_date AS TEXT), 1, INSTR(installation_date, '/') - 1) IN ('8', '9', '10', '11', '12') AND SUBSTR(CAST(installation_date AS TEXT), -4) = '2013') OR SUBSTR(CAST(installation_date AS TEXT), -4) > '2013' | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | What is the mean temperature in Fahrenheit on 8/29/2013 for the area where the zip code is 94107? | SELECT SUM(IIF(zip_code = 94107 AND date = '8/29/2013', mean_temperature_f, 0)) FROM weather | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | What is the difference between the hottest temperature and the coldest temperature in in Fahrenheit on 8/29/2013 for the area where the zip code is 94107? | SELECT SUM(IIF(zip_code = 94107 AND date = '8/29/2013', max_temperature_f - min_temperature_f, 0)) FROM weather | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | How many bikes can be borrowed in San Jose Diridon Caltrain Station at 12:06:01 on 2013/8/29? | SELECT T2.bikes_available FROM station AS T1 INNER JOIN status AS T2 ON T1.id = T2.station_id WHERE T1.name = 'San Jose Diridon Caltrain Station' AND T2.time = '2013/08/29 12:06:01' | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | In which city's station is a bike borrowed on trip ID4069? | SELECT T2.city FROM trip AS T1 INNER JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T1.id = 4069 | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | How many bike trips started on the days in September, 2013 with the hottest temperature over 70 degrees Fahrenheit in the area where the zip code is 94107? | SELECT COUNT(T1.id) FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code WHERE T2.date LIKE '9/%/2013' AND T2.zip_code = 94107 AND T2.max_temperature_f > 70 | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | Please list the starting stations of the bike trips made on a day with a max humidity over 80 in 2013 in the area where the zip code is 94107. | SELECT DISTINCT T1.start_station_name FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code WHERE SUBSTR(CAST(T2.date AS TEXT), -4) = '2013' AND T2.zip_code = 94107 AND T2.max_temperature_f > 80 | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | How many trips made by a subscriber started in August, 2013 from a station that can hold more than 20 bikes? | SELECT COUNT(T2.id) FROM station AS T1 INNER JOIN trip AS T2 ON T1.id = T2.start_station_id WHERE T2.subscription_type = 'Subscriber' AND T2.start_date LIKE '8/%/2013%' AND T1.dock_count > 20 | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | What is the location coordinates of the bike station from which the bike for the trip that last the longest was borrowed? | SELECT T2.lat, T2.long FROM trip AS T1 INNER JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T1.duration = ( SELECT MAX(T1.duration) FROM trip AS T1 INNER JOIN station AS T2 ON T2.name = T1.start_station_name ) | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | How many docks were left at the end station for trip ID4069? | SELECT SUM(T2.docks_available) FROM trip AS T1 INNER JOIN status AS T2 ON T2.station_id = T1.end_station_id WHERE T1.ID = 4069 | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | Among the bike trips started on the days with a fog in 2013, how many of those trips started from the station "2nd at Townsend"? | SELECT COUNT(T1.start_station_name) FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code WHERE T2.date LIKE '%2013%' AND T2.events = 'Fog' AND T1.start_station_name = '2nd at Townsend' AND T2.zip_code = 94107 | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | What is the longest duration for a bike trip starting on a day with a fog in 2013? | SELECT MAX(T1.duration) FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code WHERE T2.date LIKE '%2013%' AND T2.events = 'Fog' AND T2.zip_code = 94107 | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | When was the bike station from which the bike was borrowed on trip ID4069 installed? | SELECT T2.installation_date FROM trip AS T1 INNER JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T1.id = 4069 | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | How many trips with a bike borrowed from the stations in San Francisco were made by a subscriber? | SELECT COUNT(T1.id) FROM trip AS T1 INNER JOIN station AS T2 ON T2.ID = T1.start_station_id WHERE T2.city = 'San Francisco' AND T1.subscription_type = 'Subscriber' | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | On the day with the hottest temperature ever in 2014, how many bike trips started from the station 2nd at Folsom? | SELECT COUNT(T1.start_station_name) FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code WHERE T2.date LIKE '%2014%' AND T2.zip_code = 94107 AND T1.start_station_name = '2nd at Folsom' ORDER BY T2.max_temperature_f DESC LIMIT 1 | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | What is the average duration of a bike trip made on the day with the hottest temperature ever in 2014? | SELECT AVG(T1.duration) FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code WHERE T2.date LIKE '%2014%' AND T1.start_station_name = '2nd at Folsom' AND T2.max_temperature_f = ( SELECT max_temperature_f FROM weather ORDER BY max_temperature_f DESC LIMIT 1 ) | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | List out all end stations for a bicycle that were making a trip starting from 2nd at South Park station? Only retain the unique value. | SELECT DISTINCT end_station_name FROM trip WHERE start_station_name = '2nd at South Park' | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | How many rainy days were recorded in Mountain View? | SELECT SUM(IIF(zip_code = 94041 AND events = 'Rain', 1, 0)) FROM weather | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | What is the total number of bikes that can be hold in Redwood City before 2014. | SELECT SUM(CASE WHEN city = 'Redwood City' AND SUBSTR(installation_date, -4) < '2014' THEN dock_count ELSE 0 END) NUM FROM station | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | What is the longest trip duration according? Convert the it to number of days. | SELECT MAX(duration), CAST(MAX(duration) AS REAL) / 86400 FROM trip | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | Convert all temperature recorded at San Francisco city during August 2013 into degree Celsius. | SELECT (max_temperature_f - 32) / 1.8000 , (mean_temperature_f - 32) / 1.8000 , (min_temperature_f - 32) / 1.8000 FROM weather WHERE SUBSTR(CAST(date AS TEXT), 1, INSTR(date, '/') - 1) = '8' AND SUBSTR(CAST(date AS TEXT), -4) = '2013' AND zip_code = 94107 | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | What is the ratio for subscriber to customer given that the starting and the ending stations is 2nd at South Park? | SELECT CAST(SUM(IIF(subscription_type = 'Subscriber', 1, 0)) AS REAL) / SUM(IIF(subscription_type = 'Customer', 1, 0)) FROM trip WHERE start_station_name = '2nd at South Park' AND end_station_name = '2nd at South Park' | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | Are all stations with zip code 94107 located in San Francisco city? | SELECT DISTINCT T2.city FROM trip AS T1 INNER JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T1.zip_code = 94107 | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | List out all stations name that having a mean temperature 20 degree Celsius in year 2014. | SELECT DISTINCT T2.start_station_name, T2.end_station_name FROM weather AS T1 INNER JOIN trip AS T2 ON T1.zip_code = T2.zip_code WHERE T1.date LIKE '%2014' AND T1.mean_temperature_f = 20 * 1.8 + 32 | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | How many bicycle trip were made within San Jose city during August 2013? | SELECT COUNT(T2.id) FROM station AS T1 INNER JOIN trip AS T2 ON T2.start_station_name = T1.name WHERE T1.city = 'San Jose' AND T2.start_date LIKE '8/%/2013%' AND T2.start_station_name LIKE 'San Jose%' AND T2.end_station_name LIKE 'San Jose%' | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | Is there any intercity trip were made during 2014? If yes, list out the city name for the start and end station. | SELECT T1.start_station_name, T1.end_station_name FROM trip AS T1 LEFT JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T1.start_date LIKE '%/%/2014%' AND T1.start_station_name != T1.end_station_name | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | Does the bike with Id number 16 making any intercity trip? If yes, calculate the total travel duration during all the intercity trip. Convert the duration to hour. | SELECT T1.end_station_name, T2.city, CAST(SUM(T1.duration) AS REAL) / 3600 FROM trip AS T1 INNER JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T1.bike_id = 16 AND T1.start_station_name != T1.end_station_name | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | What is the ratio of customer to subscriber that making a trip inside Mountain View city? | SELECT CAST(SUM(CASE WHEN T1.subscription_type = 'Customer' THEN 1 ELSE 0 END) AS REAL) * 100 / SUM(CASE WHEN T1.subscription_type = 'Subscriber' THEN 1 ELSE 0 END) FROM trip AS T1 LEFT JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T2.city = 'Mountain View' | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | What is the total trip duration made within Palo Alto city? Convert the duration to hour. | SELECT CAST(SUM(T1.duration) AS REAL) / 3600 FROM trip AS T1 LEFT JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T2.city = 'Palo Alto' | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | Which bicycle is the least used bike. Check if the start and end station are from the same city and calculate the total duration travelled by the bicycle in hours for a trip made within the same city. | SELECT T2.bike_id, T2.start_station_name, T2.end_station_name, T1.city , CAST(T2.duration AS REAL) / 3600 FROM station AS T1 INNER JOIN trip AS T2 ON T1.name = T2.start_station_name GROUP BY T2.bike_id ORDER BY COUNT(T2.id) DESC LIMIT 1 | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | Count the number of subscribers who started their trips in Market at 4th. | SELECT COUNT(CASE WHEN subscription_type = 'Subscriber' AND start_station_name = 'Market at 4th' THEN id END) FROM trip | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | List the names of the stations within Mountain View that were installed on 12/31/2013. | SELECT name FROM station WHERE installation_date = '12/31/2013' AND city = 'Mountain View' | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | Which city is Townsend at 7th Station located and how many bikes could it hold? | SELECT city, SUM(dock_count) FROM station WHERE name = 'Townsend at 7th' | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | How many bikes could Evelyn Park and Ride hold and how many users who started on that station are subscribers? | SELECT SUM(T2.dock_count), COUNT(T1.subscription_type) FROM trip AS T1 INNER JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T2.name = 'Evelyn Park and Ride' AND T1.start_station_name = T2.name AND T1.subscription_type = 'Subscriber' | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | How many subscribers are in the zip code of 94301 and what is the hottest temperature recorded on that zip code? | SELECT COUNT(T3.zip_code), T3.max_temperature_f FROM trip AS T2 INNER JOIN weather AS T3 ON T3.zip_code = T2.zip_code WHERE T3.zip_code = 94301 AND T2.subscription_type = 'Subscriber' ORDER BY T3.max_temperature_f DESC LIMIT 1 | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | What is the percentage ration of customers to subscribers that started their trips within the city of San Francisco? | SELECT CAST(SUM(CASE WHEN T1.subscription_type = 'Customer' THEN 1 ELSE 0 END) AS REAL) * 100 / SUM(CASE WHEN T1.subscription_type = 'Subscriber' THEN 1 ELSE 0 END) FROM trip AS T1 LEFT JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T2.city = 'San Francisco' | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | What is the average duration of trips for the starting station of Santa Clara at Almaden and what is the latitude and longitude of this station? | SELECT AVG(T1.duration), T2.lat, T2.long FROM trip AS T1 LEFT JOIN station AS T2 ON T2.name = T1.start_station_name LEFT JOIN station AS T3 ON T3.name = T1.end_station_name WHERE T1.start_station_name = 'Santa Clara at Almaden' | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | What is the shortest trip made starting from Franklin at Maple and what is the maximum wind speed at that date? | SELECT MIN(T1.duration), MAX(T2.max_wind_Speed_mph) FROM trip AS T1 INNER JOIN weather AS T2 ON T2.zip_code = T1.zip_code WHERE T1.start_station_name = 'Franklin at Maple' AND T2.date = '9/4/2013' | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | How many bikes have been borrowed at San Jose Diridon Caltrain Station on the date and time of 10/20/2013 8:11:01 AM and indicate the station's coordinates. | SELECT SUM(T2.bikes_available), T1.long, T1.lat FROM station AS T1 INNER JOIN status AS T2 ON T2.station_id = T1.id WHERE T2.time = '2013/10/20 8:11:01' AND T1.name = 'San Jose Diridon Caltrain Station' | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | Name the city of the station that trip ID 585842 borrowed a bike and indicate when that station was first installed. | SELECT T2.city, T2.installation_date FROM trip AS T1 INNER JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T1.id = 585842 | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | How many stations were installed on the date of 8/16/2013 and how many users on those stations are classified as a customer? | SELECT COUNT(T1.name) , SUM(CASE WHEN T2.subscription_type = 'Customer' THEN 1 ELSE 0 END) FROM station AS T1 INNER JOIN trip AS T2 ON T2.start_station_name = T1.name WHERE T1.installation_date = '8/16/2013' AND T2.subscription_type = 'Customer' | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | Which station did the user who started at Market at 4th station ended their trip at the time of 12:45:00 PM and the date of 8/29/2013 and what is the location coordinates of the ending station? | SELECT T1.name, T1.lat, T1.long FROM station AS T1 INNER JOIN trip AS T2 ON T2.end_station_name = T1.name WHERE T2.start_station_name = 'Market at 4th' AND T2.end_date = '8/29/2013 12:45' | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | How many subscribers have ended their trip at MLK Library and how many docks does that station have? | SELECT COUNT(T1.id), T2.dock_count FROM trip AS T1 INNER JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T1.end_station_name = 'MLK Library' AND T1.subscription_type = 'Subscriber' AND T2.dock_count = 19 | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | What is the average coldest temperature for the zip code of 94301 and what stations are within the zip code? Include the latitude and longitude as well. | SELECT AVG(T3.min_temperature_f), T1.long, T1.lat FROM station AS T1 INNER JOIN trip AS T2 ON T2.start_station_name = T1.name INNER JOIN weather AS T3 ON T3.zip_code = T2.zip_code WHERE T3.zip_code = 94301 | bird |
CREATE TABLE bike_share_1 (id integer, name text, lat real, long real, dock_count integer, city text, installation_date text, station_id integer, bikes_available integer, docks_available integer, time text, id integer, duration integer, start_date text, start_station_name text, start_station_id integer, end_date text, end_station_name text, end_station_id integer, bike_id integer, subscription_type text, zip_code integer, 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 real, mean_sea_level_pressure_inches real, min_sea_level_pressure_inches real, 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 text, cloud_cover integer, events text, wind_dir_degrees integer, zip_code text) | Calculate the average duration travelled by subscribers that both started and ended their trip in Mountain View City Hall and indicate the date when the station was first installed. | SELECT AVG(T1.duration), T2.installation_date FROM trip AS T1 INNER JOIN station AS T2 ON T2.name = T1.start_station_name WHERE T1.start_station_name = 'Mountain View City Hall' AND T1.subscription_type = 'Subscriber' AND T1.end_station_name = 'Mountain View City Hall' | bird |
CREATE TABLE movie_3 (film_id integer, title text, description text, actor_id integer, first_name text, last_name text, last_update datetime, address_id integer, address text, address2 text, district text, city_id integer, postal_code text, phone text, last_update datetime, category_id integer, name text, last_update datetime, city_id integer, city text, country_id integer, last_update datetime, country_id integer, country text, last_update datetime, customer_id integer, store_id integer, first_name text, last_name text, email text, address_id integer, active integer, create_date datetime, last_update datetime, film_id integer, title text, description text, release_year text, language_id integer, original_language_id integer, rental_duration integer, rental_rate real, length integer, replacement_cost real, rating text, special_features text, last_update datetime, actor_id integer, film_id integer, last_update datetime, film_id integer, category_id integer, last_update datetime, inventory_id integer, film_id integer, store_id integer, last_update datetime, language_id integer, name text, last_update datetime, payment_id integer, customer_id integer, staff_id integer, rental_id integer, amount real, payment_date datetime, last_update datetime, rental_id integer, rental_date datetime, inventory_id integer, customer_id integer, return_date datetime, staff_id integer, last_update datetime, staff_id integer, first_name text, last_name text, address_id integer, picture blob, email text, store_id integer, active integer, username text, password text, last_update datetime, store_id integer, manager_staff_id integer, address_id integer, last_update datetime) | What is the description of the film ACADEMY DINOSAUR? | SELECT description FROM film WHERE title = 'ACADEMY DINOSAUR' | bird |
CREATE TABLE movie_3 (film_id integer, title text, description text, actor_id integer, first_name text, last_name text, last_update datetime, address_id integer, address text, address2 text, district text, city_id integer, postal_code text, phone text, last_update datetime, category_id integer, name text, last_update datetime, city_id integer, city text, country_id integer, last_update datetime, country_id integer, country text, last_update datetime, customer_id integer, store_id integer, first_name text, last_name text, email text, address_id integer, active integer, create_date datetime, last_update datetime, film_id integer, title text, description text, release_year text, language_id integer, original_language_id integer, rental_duration integer, rental_rate real, length integer, replacement_cost real, rating text, special_features text, last_update datetime, actor_id integer, film_id integer, last_update datetime, film_id integer, category_id integer, last_update datetime, inventory_id integer, film_id integer, store_id integer, last_update datetime, language_id integer, name text, last_update datetime, payment_id integer, customer_id integer, staff_id integer, rental_id integer, amount real, payment_date datetime, last_update datetime, rental_id integer, rental_date datetime, inventory_id integer, customer_id integer, return_date datetime, staff_id integer, last_update datetime, staff_id integer, first_name text, last_name text, address_id integer, picture blob, email text, store_id integer, active integer, username text, password text, last_update datetime, store_id integer, manager_staff_id integer, address_id integer, last_update datetime) | How many films have a rental duration of over 6 days? | SELECT COUNT(film_id) FROM film WHERE rental_duration > 6 | bird |
CREATE TABLE movie_3 (film_id integer, title text, description text, actor_id integer, first_name text, last_name text, last_update datetime, address_id integer, address text, address2 text, district text, city_id integer, postal_code text, phone text, last_update datetime, category_id integer, name text, last_update datetime, city_id integer, city text, country_id integer, last_update datetime, country_id integer, country text, last_update datetime, customer_id integer, store_id integer, first_name text, last_name text, email text, address_id integer, active integer, create_date datetime, last_update datetime, film_id integer, title text, description text, release_year text, language_id integer, original_language_id integer, rental_duration integer, rental_rate real, length integer, replacement_cost real, rating text, special_features text, last_update datetime, actor_id integer, film_id integer, last_update datetime, film_id integer, category_id integer, last_update datetime, inventory_id integer, film_id integer, store_id integer, last_update datetime, language_id integer, name text, last_update datetime, payment_id integer, customer_id integer, staff_id integer, rental_id integer, amount real, payment_date datetime, last_update datetime, rental_id integer, rental_date datetime, inventory_id integer, customer_id integer, return_date datetime, staff_id integer, last_update datetime, staff_id integer, first_name text, last_name text, address_id integer, picture blob, email text, store_id integer, active integer, username text, password text, last_update datetime, store_id integer, manager_staff_id integer, address_id integer, last_update datetime) | Please list the titles of the films that are released in 2006 and have a rental rate of $2.99. | SELECT title FROM film WHERE release_year = 2006 AND rental_rate = 2.99 | bird |
CREATE TABLE movie_3 (film_id integer, title text, description text, actor_id integer, first_name text, last_name text, last_update datetime, address_id integer, address text, address2 text, district text, city_id integer, postal_code text, phone text, last_update datetime, category_id integer, name text, last_update datetime, city_id integer, city text, country_id integer, last_update datetime, country_id integer, country text, last_update datetime, customer_id integer, store_id integer, first_name text, last_name text, email text, address_id integer, active integer, create_date datetime, last_update datetime, film_id integer, title text, description text, release_year text, language_id integer, original_language_id integer, rental_duration integer, rental_rate real, length integer, replacement_cost real, rating text, special_features text, last_update datetime, actor_id integer, film_id integer, last_update datetime, film_id integer, category_id integer, last_update datetime, inventory_id integer, film_id integer, store_id integer, last_update datetime, language_id integer, name text, last_update datetime, payment_id integer, customer_id integer, staff_id integer, rental_id integer, amount real, payment_date datetime, last_update datetime, rental_id integer, rental_date datetime, inventory_id integer, customer_id integer, return_date datetime, staff_id integer, last_update datetime, staff_id integer, first_name text, last_name text, address_id integer, picture blob, email text, store_id integer, active integer, username text, password text, last_update datetime, store_id integer, manager_staff_id integer, address_id integer, last_update datetime) | Which film has the longest duration of film screening? Please give its title. | SELECT title FROM film ORDER BY length DESC LIMIT 1 | bird |
CREATE TABLE movie_3 (film_id integer, title text, description text, actor_id integer, first_name text, last_name text, last_update datetime, address_id integer, address text, address2 text, district text, city_id integer, postal_code text, phone text, last_update datetime, category_id integer, name text, last_update datetime, city_id integer, city text, country_id integer, last_update datetime, country_id integer, country text, last_update datetime, customer_id integer, store_id integer, first_name text, last_name text, email text, address_id integer, active integer, create_date datetime, last_update datetime, film_id integer, title text, description text, release_year text, language_id integer, original_language_id integer, rental_duration integer, rental_rate real, length integer, replacement_cost real, rating text, special_features text, last_update datetime, actor_id integer, film_id integer, last_update datetime, film_id integer, category_id integer, last_update datetime, inventory_id integer, film_id integer, store_id integer, last_update datetime, language_id integer, name text, last_update datetime, payment_id integer, customer_id integer, staff_id integer, rental_id integer, amount real, payment_date datetime, last_update datetime, rental_id integer, rental_date datetime, inventory_id integer, customer_id integer, return_date datetime, staff_id integer, last_update datetime, staff_id integer, first_name text, last_name text, address_id integer, picture blob, email text, store_id integer, active integer, username text, password text, last_update datetime, store_id integer, manager_staff_id integer, address_id integer, last_update datetime) | Which film has a higher replacement cost, ACE GOLDFINGER or ACADEMY DINOSAUR? | SELECT title FROM film WHERE title IN ('ACE GOLDFINGER', 'ACADEMY DINOSAUR') ORDER BY replacement_cost DESC LIMIT 1 | bird |
CREATE TABLE movie_3 (film_id integer, title text, description text, actor_id integer, first_name text, last_name text, last_update datetime, address_id integer, address text, address2 text, district text, city_id integer, postal_code text, phone text, last_update datetime, category_id integer, name text, last_update datetime, city_id integer, city text, country_id integer, last_update datetime, country_id integer, country text, last_update datetime, customer_id integer, store_id integer, first_name text, last_name text, email text, address_id integer, active integer, create_date datetime, last_update datetime, film_id integer, title text, description text, release_year text, language_id integer, original_language_id integer, rental_duration integer, rental_rate real, length integer, replacement_cost real, rating text, special_features text, last_update datetime, actor_id integer, film_id integer, last_update datetime, film_id integer, category_id integer, last_update datetime, inventory_id integer, film_id integer, store_id integer, last_update datetime, language_id integer, name text, last_update datetime, payment_id integer, customer_id integer, staff_id integer, rental_id integer, amount real, payment_date datetime, last_update datetime, rental_id integer, rental_date datetime, inventory_id integer, customer_id integer, return_date datetime, staff_id integer, last_update datetime, staff_id integer, first_name text, last_name text, address_id integer, picture blob, email text, store_id integer, active integer, username text, password text, last_update datetime, store_id integer, manager_staff_id integer, address_id integer, last_update datetime) | Among the films that are released in 2006, how many of them are rated Adults Only in the Motion Picture Association Film Rating? | SELECT COUNT(film_id) FROM film WHERE rating = 'NC-17' AND release_year = 2006 | bird |
CREATE TABLE movie_3 (film_id integer, title text, description text, actor_id integer, first_name text, last_name text, last_update datetime, address_id integer, address text, address2 text, district text, city_id integer, postal_code text, phone text, last_update datetime, category_id integer, name text, last_update datetime, city_id integer, city text, country_id integer, last_update datetime, country_id integer, country text, last_update datetime, customer_id integer, store_id integer, first_name text, last_name text, email text, address_id integer, active integer, create_date datetime, last_update datetime, film_id integer, title text, description text, release_year text, language_id integer, original_language_id integer, rental_duration integer, rental_rate real, length integer, replacement_cost real, rating text, special_features text, last_update datetime, actor_id integer, film_id integer, last_update datetime, film_id integer, category_id integer, last_update datetime, inventory_id integer, film_id integer, store_id integer, last_update datetime, language_id integer, name text, last_update datetime, payment_id integer, customer_id integer, staff_id integer, rental_id integer, amount real, payment_date datetime, last_update datetime, rental_id integer, rental_date datetime, inventory_id integer, customer_id integer, return_date datetime, staff_id integer, last_update datetime, staff_id integer, first_name text, last_name text, address_id integer, picture blob, email text, store_id integer, active integer, username text, password text, last_update datetime, store_id integer, manager_staff_id integer, address_id integer, last_update datetime) | How many films with the rental rate of $2.99 have the special feature of "Deleted Scenes"? | SELECT COUNT(film_id) FROM film WHERE rental_rate = 2.99 AND special_features = 'Deleted Scenes' | bird |
CREATE TABLE movie_3 (film_id integer, title text, description text, actor_id integer, first_name text, last_name text, last_update datetime, address_id integer, address text, address2 text, district text, city_id integer, postal_code text, phone text, last_update datetime, category_id integer, name text, last_update datetime, city_id integer, city text, country_id integer, last_update datetime, country_id integer, country text, last_update datetime, customer_id integer, store_id integer, first_name text, last_name text, email text, address_id integer, active integer, create_date datetime, last_update datetime, film_id integer, title text, description text, release_year text, language_id integer, original_language_id integer, rental_duration integer, rental_rate real, length integer, replacement_cost real, rating text, special_features text, last_update datetime, actor_id integer, film_id integer, last_update datetime, film_id integer, category_id integer, last_update datetime, inventory_id integer, film_id integer, store_id integer, last_update datetime, language_id integer, name text, last_update datetime, payment_id integer, customer_id integer, staff_id integer, rental_id integer, amount real, payment_date datetime, last_update datetime, rental_id integer, rental_date datetime, inventory_id integer, customer_id integer, return_date datetime, staff_id integer, last_update datetime, staff_id integer, first_name text, last_name text, address_id integer, picture blob, email text, store_id integer, active integer, username text, password text, last_update datetime, store_id integer, manager_staff_id integer, address_id integer, last_update datetime) | Please list the titles of all the films that have more than 2 special features. | SELECT title FROM ( SELECT title, COUNT(special_features) AS num FROM film GROUP BY title ) AS T ORDER BY T.num > 2 | bird |
CREATE TABLE movie_3 (film_id integer, title text, description text, actor_id integer, first_name text, last_name text, last_update datetime, address_id integer, address text, address2 text, district text, city_id integer, postal_code text, phone text, last_update datetime, category_id integer, name text, last_update datetime, city_id integer, city text, country_id integer, last_update datetime, country_id integer, country text, last_update datetime, customer_id integer, store_id integer, first_name text, last_name text, email text, address_id integer, active integer, create_date datetime, last_update datetime, film_id integer, title text, description text, release_year text, language_id integer, original_language_id integer, rental_duration integer, rental_rate real, length integer, replacement_cost real, rating text, special_features text, last_update datetime, actor_id integer, film_id integer, last_update datetime, film_id integer, category_id integer, last_update datetime, inventory_id integer, film_id integer, store_id integer, last_update datetime, language_id integer, name text, last_update datetime, payment_id integer, customer_id integer, staff_id integer, rental_id integer, amount real, payment_date datetime, last_update datetime, rental_id integer, rental_date datetime, inventory_id integer, customer_id integer, return_date datetime, staff_id integer, last_update datetime, staff_id integer, first_name text, last_name text, address_id integer, picture blob, email text, store_id integer, active integer, username text, password text, last_update datetime, store_id integer, manager_staff_id integer, address_id integer, last_update datetime) | What is the email address of the staff Jon Stephens? | SELECT email FROM staff WHERE first_name = 'Jon' AND last_name = 'Stephens' | bird |
CREATE TABLE movie_3 (film_id integer, title text, description text, actor_id integer, first_name text, last_name text, last_update datetime, address_id integer, address text, address2 text, district text, city_id integer, postal_code text, phone text, last_update datetime, category_id integer, name text, last_update datetime, city_id integer, city text, country_id integer, last_update datetime, country_id integer, country text, last_update datetime, customer_id integer, store_id integer, first_name text, last_name text, email text, address_id integer, active integer, create_date datetime, last_update datetime, film_id integer, title text, description text, release_year text, language_id integer, original_language_id integer, rental_duration integer, rental_rate real, length integer, replacement_cost real, rating text, special_features text, last_update datetime, actor_id integer, film_id integer, last_update datetime, film_id integer, category_id integer, last_update datetime, inventory_id integer, film_id integer, store_id integer, last_update datetime, language_id integer, name text, last_update datetime, payment_id integer, customer_id integer, staff_id integer, rental_id integer, amount real, payment_date datetime, last_update datetime, rental_id integer, rental_date datetime, inventory_id integer, customer_id integer, return_date datetime, staff_id integer, last_update datetime, staff_id integer, first_name text, last_name text, address_id integer, picture blob, email text, store_id integer, active integer, username text, password text, last_update datetime, store_id integer, manager_staff_id integer, address_id integer, last_update datetime) | Please give the full names of all the active staff. | SELECT first_name, last_name FROM staff WHERE active = 1 | bird |
CREATE TABLE movie_3 (film_id integer, title text, description text, actor_id integer, first_name text, last_name text, last_update datetime, address_id integer, address text, address2 text, district text, city_id integer, postal_code text, phone text, last_update datetime, category_id integer, name text, last_update datetime, city_id integer, city text, country_id integer, last_update datetime, country_id integer, country text, last_update datetime, customer_id integer, store_id integer, first_name text, last_name text, email text, address_id integer, active integer, create_date datetime, last_update datetime, film_id integer, title text, description text, release_year text, language_id integer, original_language_id integer, rental_duration integer, rental_rate real, length integer, replacement_cost real, rating text, special_features text, last_update datetime, actor_id integer, film_id integer, last_update datetime, film_id integer, category_id integer, last_update datetime, inventory_id integer, film_id integer, store_id integer, last_update datetime, language_id integer, name text, last_update datetime, payment_id integer, customer_id integer, staff_id integer, rental_id integer, amount real, payment_date datetime, last_update datetime, rental_id integer, rental_date datetime, inventory_id integer, customer_id integer, return_date datetime, staff_id integer, last_update datetime, staff_id integer, first_name text, last_name text, address_id integer, picture blob, email text, store_id integer, active integer, username text, password text, last_update datetime, store_id integer, manager_staff_id integer, address_id integer, last_update datetime) | In which year was the film with the highest replacement cost released? | SELECT DISTINCT release_year FROM film WHERE replacement_cost = ( SELECT MAX(replacement_cost) FROM film ) | bird |
CREATE TABLE movie_3 (film_id integer, title text, description text, actor_id integer, first_name text, last_name text, last_update datetime, address_id integer, address text, address2 text, district text, city_id integer, postal_code text, phone text, last_update datetime, category_id integer, name text, last_update datetime, city_id integer, city text, country_id integer, last_update datetime, country_id integer, country text, last_update datetime, customer_id integer, store_id integer, first_name text, last_name text, email text, address_id integer, active integer, create_date datetime, last_update datetime, film_id integer, title text, description text, release_year text, language_id integer, original_language_id integer, rental_duration integer, rental_rate real, length integer, replacement_cost real, rating text, special_features text, last_update datetime, actor_id integer, film_id integer, last_update datetime, film_id integer, category_id integer, last_update datetime, inventory_id integer, film_id integer, store_id integer, last_update datetime, language_id integer, name text, last_update datetime, payment_id integer, customer_id integer, staff_id integer, rental_id integer, amount real, payment_date datetime, last_update datetime, rental_id integer, rental_date datetime, inventory_id integer, customer_id integer, return_date datetime, staff_id integer, last_update datetime, staff_id integer, first_name text, last_name text, address_id integer, picture blob, email text, store_id integer, active integer, username text, password text, last_update datetime, store_id integer, manager_staff_id integer, address_id integer, last_update datetime) | Please list the titles of the top 3 films with the highest replacement cost. | SELECT title FROM film WHERE replacement_cost = ( SELECT MAX(replacement_cost) FROM film ) LIMIT 3 | bird |
CREATE TABLE movie_3 (film_id integer, title text, description text, actor_id integer, first_name text, last_name text, last_update datetime, address_id integer, address text, address2 text, district text, city_id integer, postal_code text, phone text, last_update datetime, category_id integer, name text, last_update datetime, city_id integer, city text, country_id integer, last_update datetime, country_id integer, country text, last_update datetime, customer_id integer, store_id integer, first_name text, last_name text, email text, address_id integer, active integer, create_date datetime, last_update datetime, film_id integer, title text, description text, release_year text, language_id integer, original_language_id integer, rental_duration integer, rental_rate real, length integer, replacement_cost real, rating text, special_features text, last_update datetime, actor_id integer, film_id integer, last_update datetime, film_id integer, category_id integer, last_update datetime, inventory_id integer, film_id integer, store_id integer, last_update datetime, language_id integer, name text, last_update datetime, payment_id integer, customer_id integer, staff_id integer, rental_id integer, amount real, payment_date datetime, last_update datetime, rental_id integer, rental_date datetime, inventory_id integer, customer_id integer, return_date datetime, staff_id integer, last_update datetime, staff_id integer, first_name text, last_name text, address_id integer, picture blob, email text, store_id integer, active integer, username text, password text, last_update datetime, store_id integer, manager_staff_id integer, address_id integer, last_update datetime) | What is the language of the film ACADEMY DINOSAUR? | SELECT T2.name FROM film AS T1 INNER JOIN language AS T2 ON T1.language_id = T2.language_id WHERE T1.title = 'ACADEMY DINOSAUR' | bird |
CREATE TABLE movie_3 (film_id integer, title text, description text, actor_id integer, first_name text, last_name text, last_update datetime, address_id integer, address text, address2 text, district text, city_id integer, postal_code text, phone text, last_update datetime, category_id integer, name text, last_update datetime, city_id integer, city text, country_id integer, last_update datetime, country_id integer, country text, last_update datetime, customer_id integer, store_id integer, first_name text, last_name text, email text, address_id integer, active integer, create_date datetime, last_update datetime, film_id integer, title text, description text, release_year text, language_id integer, original_language_id integer, rental_duration integer, rental_rate real, length integer, replacement_cost real, rating text, special_features text, last_update datetime, actor_id integer, film_id integer, last_update datetime, film_id integer, category_id integer, last_update datetime, inventory_id integer, film_id integer, store_id integer, last_update datetime, language_id integer, name text, last_update datetime, payment_id integer, customer_id integer, staff_id integer, rental_id integer, amount real, payment_date datetime, last_update datetime, rental_id integer, rental_date datetime, inventory_id integer, customer_id integer, return_date datetime, staff_id integer, last_update datetime, staff_id integer, first_name text, last_name text, address_id integer, picture blob, email text, store_id integer, active integer, username text, password text, last_update datetime, store_id integer, manager_staff_id integer, address_id integer, last_update datetime) | How many films are in English? | SELECT COUNT(T1.film_id) FROM film AS T1 INNER JOIN language AS T2 ON T1.language_id = T2.language_id WHERE T2.name = 'English' | bird |
CREATE TABLE movie_3 (film_id integer, title text, description text, actor_id integer, first_name text, last_name text, last_update datetime, address_id integer, address text, address2 text, district text, city_id integer, postal_code text, phone text, last_update datetime, category_id integer, name text, last_update datetime, city_id integer, city text, country_id integer, last_update datetime, country_id integer, country text, last_update datetime, customer_id integer, store_id integer, first_name text, last_name text, email text, address_id integer, active integer, create_date datetime, last_update datetime, film_id integer, title text, description text, release_year text, language_id integer, original_language_id integer, rental_duration integer, rental_rate real, length integer, replacement_cost real, rating text, special_features text, last_update datetime, actor_id integer, film_id integer, last_update datetime, film_id integer, category_id integer, last_update datetime, inventory_id integer, film_id integer, store_id integer, last_update datetime, language_id integer, name text, last_update datetime, payment_id integer, customer_id integer, staff_id integer, rental_id integer, amount real, payment_date datetime, last_update datetime, rental_id integer, rental_date datetime, inventory_id integer, customer_id integer, return_date datetime, staff_id integer, last_update datetime, staff_id integer, first_name text, last_name text, address_id integer, picture blob, email text, store_id integer, active integer, username text, password text, last_update datetime, store_id integer, manager_staff_id integer, address_id integer, last_update datetime) | Please list the titles of all the films starring the actor PENELOPE GUINESS. | SELECT T2.title FROM film_actor AS T1 INNER JOIN film AS T2 ON T1.film_id = T2.film_id INNER JOIN actor AS T3 ON T1.actor_id = T3.actor_id WHERE T3.first_name = 'PENELOPE' AND T3.last_name = 'GUINESS' | bird |
CREATE TABLE movie_3 (film_id integer, title text, description text, actor_id integer, first_name text, last_name text, last_update datetime, address_id integer, address text, address2 text, district text, city_id integer, postal_code text, phone text, last_update datetime, category_id integer, name text, last_update datetime, city_id integer, city text, country_id integer, last_update datetime, country_id integer, country text, last_update datetime, customer_id integer, store_id integer, first_name text, last_name text, email text, address_id integer, active integer, create_date datetime, last_update datetime, film_id integer, title text, description text, release_year text, language_id integer, original_language_id integer, rental_duration integer, rental_rate real, length integer, replacement_cost real, rating text, special_features text, last_update datetime, actor_id integer, film_id integer, last_update datetime, film_id integer, category_id integer, last_update datetime, inventory_id integer, film_id integer, store_id integer, last_update datetime, language_id integer, name text, last_update datetime, payment_id integer, customer_id integer, staff_id integer, rental_id integer, amount real, payment_date datetime, last_update datetime, rental_id integer, rental_date datetime, inventory_id integer, customer_id integer, return_date datetime, staff_id integer, last_update datetime, staff_id integer, first_name text, last_name text, address_id integer, picture blob, email text, store_id integer, active integer, username text, password text, last_update datetime, store_id integer, manager_staff_id integer, address_id integer, last_update datetime) | How many actors have starred in the film ACADEMY DINOSAUR? | SELECT COUNT(T1.actor_id) FROM film_actor AS T1 INNER JOIN film AS T2 ON T1.film_id = T2.film_id WHERE T2.title = 'ACADEMY DINOSAUR' | bird |
CREATE TABLE movie_3 (film_id integer, title text, description text, actor_id integer, first_name text, last_name text, last_update datetime, address_id integer, address text, address2 text, district text, city_id integer, postal_code text, phone text, last_update datetime, category_id integer, name text, last_update datetime, city_id integer, city text, country_id integer, last_update datetime, country_id integer, country text, last_update datetime, customer_id integer, store_id integer, first_name text, last_name text, email text, address_id integer, active integer, create_date datetime, last_update datetime, film_id integer, title text, description text, release_year text, language_id integer, original_language_id integer, rental_duration integer, rental_rate real, length integer, replacement_cost real, rating text, special_features text, last_update datetime, actor_id integer, film_id integer, last_update datetime, film_id integer, category_id integer, last_update datetime, inventory_id integer, film_id integer, store_id integer, last_update datetime, language_id integer, name text, last_update datetime, payment_id integer, customer_id integer, staff_id integer, rental_id integer, amount real, payment_date datetime, last_update datetime, rental_id integer, rental_date datetime, inventory_id integer, customer_id integer, return_date datetime, staff_id integer, last_update datetime, staff_id integer, first_name text, last_name text, address_id integer, picture blob, email text, store_id integer, active integer, username text, password text, last_update datetime, store_id integer, manager_staff_id integer, address_id integer, last_update datetime) | Please list the full names of all the actors that have starred in the film ACADEMY DINOSAUR. | SELECT T1.first_name, T1.last_name FROM actor AS T1 INNER JOIN film_actor AS T2 ON T1.actor_id = T2.actor_id INNER JOIN film AS T3 ON T2.film_id = T3.film_id WHERE T3.title = 'ACADEMY DINOSAUR' | bird |
CREATE TABLE movie_3 (film_id integer, title text, description text, actor_id integer, first_name text, last_name text, last_update datetime, address_id integer, address text, address2 text, district text, city_id integer, postal_code text, phone text, last_update datetime, category_id integer, name text, last_update datetime, city_id integer, city text, country_id integer, last_update datetime, country_id integer, country text, last_update datetime, customer_id integer, store_id integer, first_name text, last_name text, email text, address_id integer, active integer, create_date datetime, last_update datetime, film_id integer, title text, description text, release_year text, language_id integer, original_language_id integer, rental_duration integer, rental_rate real, length integer, replacement_cost real, rating text, special_features text, last_update datetime, actor_id integer, film_id integer, last_update datetime, film_id integer, category_id integer, last_update datetime, inventory_id integer, film_id integer, store_id integer, last_update datetime, language_id integer, name text, last_update datetime, payment_id integer, customer_id integer, staff_id integer, rental_id integer, amount real, payment_date datetime, last_update datetime, rental_id integer, rental_date datetime, inventory_id integer, customer_id integer, return_date datetime, staff_id integer, last_update datetime, staff_id integer, first_name text, last_name text, address_id integer, picture blob, email text, store_id integer, active integer, username text, password text, last_update datetime, store_id integer, manager_staff_id integer, address_id integer, last_update datetime) | Among the films starring PENELOPE GUINESS, how many of them are released in 2006? | SELECT COUNT(T2.film_id) FROM actor AS T1 INNER JOIN film_actor AS T2 ON T1.actor_id = T2.actor_id INNER JOIN film AS T3 ON T2.film_id = T3.film_id WHERE T3.release_year = 2006 AND T1.first_name = 'PENELOPE' AND T1.last_name = 'GUINESS' | bird |
CREATE TABLE movie_3 (film_id integer, title text, description text, actor_id integer, first_name text, last_name text, last_update datetime, address_id integer, address text, address2 text, district text, city_id integer, postal_code text, phone text, last_update datetime, category_id integer, name text, last_update datetime, city_id integer, city text, country_id integer, last_update datetime, country_id integer, country text, last_update datetime, customer_id integer, store_id integer, first_name text, last_name text, email text, address_id integer, active integer, create_date datetime, last_update datetime, film_id integer, title text, description text, release_year text, language_id integer, original_language_id integer, rental_duration integer, rental_rate real, length integer, replacement_cost real, rating text, special_features text, last_update datetime, actor_id integer, film_id integer, last_update datetime, film_id integer, category_id integer, last_update datetime, inventory_id integer, film_id integer, store_id integer, last_update datetime, language_id integer, name text, last_update datetime, payment_id integer, customer_id integer, staff_id integer, rental_id integer, amount real, payment_date datetime, last_update datetime, rental_id integer, rental_date datetime, inventory_id integer, customer_id integer, return_date datetime, staff_id integer, last_update datetime, staff_id integer, first_name text, last_name text, address_id integer, picture blob, email text, store_id integer, active integer, username text, password text, last_update datetime, store_id integer, manager_staff_id integer, address_id integer, last_update datetime) | Please give the title of the film starring PENELOPE GUINESS and has the highest replacement cost. | SELECT T3.title FROM actor AS T1 INNER JOIN film_actor AS T2 ON T1.actor_id = T2.actor_id INNER JOIN film AS T3 ON T2.film_id = T3.film_id WHERE T1.first_name = 'PENELOPE' AND T1.last_name = 'GUINESS' ORDER BY T3.replacement_cost DESC LIMIT 1 | bird |
CREATE TABLE movie_3 (film_id integer, title text, description text, actor_id integer, first_name text, last_name text, last_update datetime, address_id integer, address text, address2 text, district text, city_id integer, postal_code text, phone text, last_update datetime, category_id integer, name text, last_update datetime, city_id integer, city text, country_id integer, last_update datetime, country_id integer, country text, last_update datetime, customer_id integer, store_id integer, first_name text, last_name text, email text, address_id integer, active integer, create_date datetime, last_update datetime, film_id integer, title text, description text, release_year text, language_id integer, original_language_id integer, rental_duration integer, rental_rate real, length integer, replacement_cost real, rating text, special_features text, last_update datetime, actor_id integer, film_id integer, last_update datetime, film_id integer, category_id integer, last_update datetime, inventory_id integer, film_id integer, store_id integer, last_update datetime, language_id integer, name text, last_update datetime, payment_id integer, customer_id integer, staff_id integer, rental_id integer, amount real, payment_date datetime, last_update datetime, rental_id integer, rental_date datetime, inventory_id integer, customer_id integer, return_date datetime, staff_id integer, last_update datetime, staff_id integer, first_name text, last_name text, address_id integer, picture blob, email text, store_id integer, active integer, username text, password text, last_update datetime, store_id integer, manager_staff_id integer, address_id integer, last_update datetime) | Please list the full names of all the actors that have starred in the film with the highest replacement cost. | SELECT first_name, last_name FROM actor AS T1 INNER JOIN film_actor AS T2 ON T1.actor_id = T2.actor_id INNER JOIN film AS T3 ON T2.film_id = T3.film_id ORDER BY T3.replacement_cost DESC LIMIT 1 | bird |
CREATE TABLE movie_3 (film_id integer, title text, description text, actor_id integer, first_name text, last_name text, last_update datetime, address_id integer, address text, address2 text, district text, city_id integer, postal_code text, phone text, last_update datetime, category_id integer, name text, last_update datetime, city_id integer, city text, country_id integer, last_update datetime, country_id integer, country text, last_update datetime, customer_id integer, store_id integer, first_name text, last_name text, email text, address_id integer, active integer, create_date datetime, last_update datetime, film_id integer, title text, description text, release_year text, language_id integer, original_language_id integer, rental_duration integer, rental_rate real, length integer, replacement_cost real, rating text, special_features text, last_update datetime, actor_id integer, film_id integer, last_update datetime, film_id integer, category_id integer, last_update datetime, inventory_id integer, film_id integer, store_id integer, last_update datetime, language_id integer, name text, last_update datetime, payment_id integer, customer_id integer, staff_id integer, rental_id integer, amount real, payment_date datetime, last_update datetime, rental_id integer, rental_date datetime, inventory_id integer, customer_id integer, return_date datetime, staff_id integer, last_update datetime, staff_id integer, first_name text, last_name text, address_id integer, picture blob, email text, store_id integer, active integer, username text, password text, last_update datetime, store_id integer, manager_staff_id integer, address_id integer, last_update datetime) | Among the films starring PENELOPE GUINESS, how many of them are in English? | SELECT COUNT(T3.film_id) FROM actor AS T1 INNER JOIN film_actor AS T2 ON T1.actor_id = T2.actor_id INNER JOIN film AS T3 ON T2.film_id = T3.film_id INNER JOIN language AS T4 ON T3.language_id = T4.language_id WHERE T4.name = 'English' AND T1.first_name = 'PENELOPE' AND T1.last_name = 'GUINESS' | bird |
CREATE TABLE movie_3 (film_id integer, title text, description text, actor_id integer, first_name text, last_name text, last_update datetime, address_id integer, address text, address2 text, district text, city_id integer, postal_code text, phone text, last_update datetime, category_id integer, name text, last_update datetime, city_id integer, city text, country_id integer, last_update datetime, country_id integer, country text, last_update datetime, customer_id integer, store_id integer, first_name text, last_name text, email text, address_id integer, active integer, create_date datetime, last_update datetime, film_id integer, title text, description text, release_year text, language_id integer, original_language_id integer, rental_duration integer, rental_rate real, length integer, replacement_cost real, rating text, special_features text, last_update datetime, actor_id integer, film_id integer, last_update datetime, film_id integer, category_id integer, last_update datetime, inventory_id integer, film_id integer, store_id integer, last_update datetime, language_id integer, name text, last_update datetime, payment_id integer, customer_id integer, staff_id integer, rental_id integer, amount real, payment_date datetime, last_update datetime, rental_id integer, rental_date datetime, inventory_id integer, customer_id integer, return_date datetime, staff_id integer, last_update datetime, staff_id integer, first_name text, last_name text, address_id integer, picture blob, email text, store_id integer, active integer, username text, password text, last_update datetime, store_id integer, manager_staff_id integer, address_id integer, last_update datetime) | What is the title of the film with the longest duration time and stars PENELOPE GUINESS? | SELECT T3.title FROM actor AS T1 INNER JOIN film_actor AS T2 ON T1.actor_id = T2.actor_id INNER JOIN film AS T3 ON T2.film_id = T3.film_id WHERE T1.first_name = 'PENELOPE' AND T1.last_name = 'GUINESS' ORDER BY T3.length DESC LIMIT 1 | bird |
CREATE TABLE movie_3 (film_id integer, title text, description text, actor_id integer, first_name text, last_name text, last_update datetime, address_id integer, address text, address2 text, district text, city_id integer, postal_code text, phone text, last_update datetime, category_id integer, name text, last_update datetime, city_id integer, city text, country_id integer, last_update datetime, country_id integer, country text, last_update datetime, customer_id integer, store_id integer, first_name text, last_name text, email text, address_id integer, active integer, create_date datetime, last_update datetime, film_id integer, title text, description text, release_year text, language_id integer, original_language_id integer, rental_duration integer, rental_rate real, length integer, replacement_cost real, rating text, special_features text, last_update datetime, actor_id integer, film_id integer, last_update datetime, film_id integer, category_id integer, last_update datetime, inventory_id integer, film_id integer, store_id integer, last_update datetime, language_id integer, name text, last_update datetime, payment_id integer, customer_id integer, staff_id integer, rental_id integer, amount real, payment_date datetime, last_update datetime, rental_id integer, rental_date datetime, inventory_id integer, customer_id integer, return_date datetime, staff_id integer, last_update datetime, staff_id integer, first_name text, last_name text, address_id integer, picture blob, email text, store_id integer, active integer, username text, password text, last_update datetime, store_id integer, manager_staff_id integer, address_id integer, last_update datetime) | Please list the titles of all the films in the category of "Horror". | SELECT T1.title FROM film AS T1 INNER JOIN film_category AS T2 ON T1.film_id = T2.film_id INNER JOIN category AS T3 ON T2.category_id = T3.category_id WHERE T3.name = 'Horror' | bird |
Subsets and Splits