query
stringlengths 24
325
| positive
stringlengths 1
580
| negative
stringlengths 1
580
|
---|---|---|
How many docks were left at the end station for trip ID4069? | end station refers to end_station_id; docks that were left refers to docks_available; | least used bike refers to bike_id with MIN(COUNT(main_trip.id)); start station refers to start_station_name; end station refers to end_station_name; total duration in hour = DIVIDE(duration, 3600) AS hour; |
How many docks were left at the end station for trip ID4069? | end station refers to end_station_id; docks that were left refers to docks_available; | bike is borrowed from refers to start_station_id; |
How many docks were left at the end station for trip ID4069? | end station refers to end_station_id; docks that were left refers to docks_available; | installed on refers to installation_date; installation_date = '8/16/2013'; customers refers to subscription_type = customers; |
How many docks were left at the end station for trip ID4069? | end station refers to end_station_id; docks that were left refers to docks_available; | hottest temperature refers to max_temperatutre_f; coldest temperature refers to min_temperature_f; difference = SUBTRACT(max_temperature_f, min_temperature_f); date = '8/29/2013' |
How many docks were left at the end station for trip ID4069? | end station refers to end_station_id; docks that were left refers to docks_available; | trips refer to id; DIVIDE(SUM(duration where start_station_name = 'Adobe on Almaden', end_station_name = 'Ryland Park'), COUNT(id)); |
How many docks were left at the end station for trip ID4069? | end station refers to end_station_id; docks that were left refers to docks_available; | the station with the most borrowed bikes refers to MAX(start_station); |
How many docks were left at the end station for trip ID4069? | end station refers to end_station_id; docks that were left refers to docks_available; | intercity trip refers to start_station_name! = end_station_name; total travel duration to hour = DIVIDE(SUM(duration), 3600) AS hour; |
How many docks were left at the end station for trip ID4069? | end station refers to end_station_id; docks that were left refers to docks_available; | when the station was first installed refers to installation_date; |
How many docks were left at the end station for trip ID4069? | end station refers to end_station_id; docks that were left refers to docks_available; | events = 'Rain'; year refers to YEAR(date); |
How many docks were left at the end station for trip ID4069? | end station refers to end_station_id; docks that were left refers to docks_available; | total number of bikes that can be hold = MAX(dock_count); before 2014 refers to year(installation_date)<2014; |
Which trip had the shortest duration and started at the station that can hold 15 bikes? | shortest duration refers to MIN(duration); started at the station refers to start_station_name; can hold 15 bikes refers to dock_count = 15; | hottest temperature refers to max_temperatutre_f; coldest temperature refers to min_temperature_f; difference = SUBTRACT(max_temperature_f, min_temperature_f); date = '8/29/2013' |
Which trip had the shortest duration and started at the station that can hold 15 bikes? | shortest duration refers to MIN(duration); started at the station refers to start_station_name; can hold 15 bikes refers to dock_count = 15; | end station refers to end_station_id; docks that were left refers to docks_available; |
Which trip had the shortest duration and started at the station that can hold 15 bikes? | shortest duration refers to MIN(duration); started at the station refers to start_station_name; can hold 15 bikes refers to dock_count = 15; | bike was borrowed from refers to start_station_id; San Francisco refers to city = 'San Francisco'; subscriber refers to subscription_type = 'Subscriber'; |
Which trip had the shortest duration and started at the station that can hold 15 bikes? | shortest duration refers to MIN(duration); started at the station refers to start_station_name; can hold 15 bikes refers to dock_count = 15; | in 2013 refers to year(date) = 2013; rain and fog ocurred together refers to events = 'Fog-Rain'; id of bikes refers to biked_id; |
Which trip had the shortest duration and started at the station that can hold 15 bikes? | shortest duration refers to MIN(duration); started at the station refers to start_station_name; can hold 15 bikes refers to dock_count = 15; | started on the days with a fog refers to start_date where events = 'fog'; in 2013 refers to date LIKE '%2013'; started from station refers to start_station_name; start_station_name = '2nd at Townsend'; |
Which trip had the shortest duration and started at the station that can hold 15 bikes? | shortest duration refers to MIN(duration); started at the station refers to start_station_name; can hold 15 bikes refers to dock_count = 15; | installed after August, 2013 refers to year(installation_date)>2013; in San Jose refers to city = 'San Jose'; |
Which trip had the shortest duration and started at the station that can hold 15 bikes? | shortest duration refers to MIN(duration); started at the station refers to start_station_name; can hold 15 bikes refers to dock_count = 15; | subsscriber refers to subscription_type = subscriber; started their trips in refers to start_station_name; start_station_name = 'Market at 4th'; |
Which trip had the shortest duration and started at the station that can hold 15 bikes? | shortest duration refers to MIN(duration); started at the station refers to start_station_name; can hold 15 bikes refers to dock_count = 15; | started at refers to start_station_name; start_station_name = 'Steuart at Market'; ended at refers to end_station_name; end_station_name = 'Embarcadero at Sansome'; rides in July 2004 refers to start_date = '7/1/2014 0:00'AND end_date = '7/31/2014 12:59';average ride time = DIVIDE(SUM(duration), COUNT(id)) |
Which trip had the shortest duration and started at the station that can hold 15 bikes? | shortest duration refers to MIN(duration); started at the station refers to start_station_name; can hold 15 bikes refers to dock_count = 15; | route implies a course taken in getting from start_station_name to end_station_name; the longest duration refers to MAX(duration); |
Which trip had the shortest duration and started at the station that can hold 15 bikes? | shortest duration refers to MIN(duration); started at the station refers to start_station_name; can hold 15 bikes refers to dock_count = 15; | started at refers to start_station_name; start_station_name = 'Mountain View City Hall'; ended on a rainy day refers to end_date where events = 'rain'; |
Please calculate the average duration of trips started at South Van Ness at Market in 2015. | started at refers to start_station_name; start_station_name = 'South Van Ness at Market'; average duration = DIVIDE(SUM(duration), COUNT(duration)); | 37.331415 and -121.8932 are latitude (lat) and longitude (long) coordinates indicating location; returned at refers to end_station_name; the date the bike was borrowed refers to start_date; |
Please calculate the average duration of trips started at South Van Ness at Market in 2015. | started at refers to start_station_name; start_station_name = 'South Van Ness at Market'; average duration = DIVIDE(SUM(duration), COUNT(duration)); | final station refers to end_station_name where MAX(end_date); |
Please calculate the average duration of trips started at South Van Ness at Market in 2015. | started at refers to start_station_name; start_station_name = 'South Van Ness at Market'; average duration = DIVIDE(SUM(duration), COUNT(duration)); | total trip duration to hour = DIVIDE(SUM(duration), 3600); |
Please calculate the average duration of trips started at South Van Ness at Market in 2015. | started at refers to start_station_name; start_station_name = 'South Van Ness at Market'; average duration = DIVIDE(SUM(duration), COUNT(duration)); | station refers to name; |
Please calculate the average duration of trips started at South Van Ness at Market in 2015. | started at refers to start_station_name; start_station_name = 'South Van Ness at Market'; average duration = DIVIDE(SUM(duration), COUNT(duration)); | start station refers to start_station_id; end station refers to end_station_id; start station and end station are the same refers to start_station_id = end_station_id; |
Please calculate the average duration of trips started at South Van Ness at Market in 2015. | started at refers to start_station_name; start_station_name = 'South Van Ness at Market'; average duration = DIVIDE(SUM(duration), COUNT(duration)); | no available bike to borrow refers to bikes_available = 0; latitude and longitude coordinates can be used to indicate a location; |
Please calculate the average duration of trips started at South Van Ness at Market in 2015. | started at refers to start_station_name; start_station_name = 'South Van Ness at Market'; average duration = DIVIDE(SUM(duration), COUNT(duration)); | hottest temperature refers to max_temperatutre_f; in 2014 refers to date LIKE '%2014'; started from station refers to start_station_name; start_station_name = '2nd at Folsom'; |
Please calculate the average duration of trips started at South Van Ness at Market in 2015. | started at refers to start_station_name; start_station_name = 'South Van Ness at Market'; average duration = DIVIDE(SUM(duration), COUNT(duration)); | least used bike refers to bike_id with MIN(COUNT(main_trip.id)); start station refers to start_station_name; end station refers to end_station_name; total duration in hour = DIVIDE(duration, 3600) AS hour; |
Please calculate the average duration of trips started at South Van Ness at Market in 2015. | started at refers to start_station_name; start_station_name = 'South Van Ness at Market'; average duration = DIVIDE(SUM(duration), COUNT(duration)); | the hottest temperature refers to max_temperature_f; |
Please calculate the average duration of trips started at South Van Ness at Market in 2015. | started at refers to start_station_name; start_station_name = 'South Van Ness at Market'; average duration = DIVIDE(SUM(duration), COUNT(duration)); | number of bikes a station can hold refers to SUM(dock_count); Evelyn Park and Ride refers to name = 'Evelyn Park and Ride'; started on the station refers to start_station_name; subscribers refers to subscription_type = 'subscriber'; |
In which city's station is a bike borrowed on trip ID4069? | bike is borrowed from refers to start_station_id; | hottest temperature refers to max_temperatutre_f; coldest temperature refers to min_temperature_f; difference = SUBTRACT(max_temperature_f, min_temperature_f); date = '8/29/2013' |
In which city's station is a bike borrowed on trip ID4069? | bike is borrowed from refers to start_station_id; | started at refers to start_station_name; start_station_name = 'Mountain View City Hall'; ended on a rainy day refers to end_date where events = 'rain'; |
In which city's station is a bike borrowed on trip ID4069? | bike is borrowed from refers to start_station_id; | events = 'Rain'; year refers to YEAR(date); |
In which city's station is a bike borrowed on trip ID4069? | bike is borrowed from refers to start_station_id; | no available bike to borrow refers to bikes_available = 0; latitude and longitude coordinates can be used to indicate a location; |
In which city's station is a bike borrowed on trip ID4069? | bike is borrowed from refers to start_station_id; | start station refers to start_station_id; end station refers to end_station_id; start station and end station are the same refers to start_station_id = end_station_id; |
In which city's station is a bike borrowed on trip ID4069? | bike is borrowed from refers to start_station_id; | subsscriber refers to subscription_type = subscriber; started their trips in refers to start_station_name; start_station_name = 'Market at 4th'; |
In which city's station is a bike borrowed on trip ID4069? | bike is borrowed from refers to start_station_id; | average duration = DIVIDE(SUM(duration), COUNT(id)); subscribers refers to subscription_type = 'subscriptions'; started and ended their trip at Mountain View City Hall refers to start_station_name = 'Mountain View City Hall' and end_station_name = 'Mountain View City Hall'; when the station was first installed refers to installation_date; |
In which city's station is a bike borrowed on trip ID4069? | bike is borrowed from refers to start_station_id; | in 2006 refers to start_date LIKE'%2006%'; ended at station refers to end_station_name; Mountain View refers to city = 'Mountain View'; |
In which city's station is a bike borrowed on trip ID4069? | bike is borrowed from refers to start_station_id; | longest trip refers to MAX(duration); started on the day refers to start_date; maximum wind speed refers to max_wind_speed_mph; max_wind_speed_mph = 30; |
In which city's station is a bike borrowed on trip ID4069? | bike is borrowed from refers to start_station_id; | started at refers to start_station_name; start_station_name = 'Market at 4th'; location coordinates refers to (lat, long); |
How many bike stations are installed after August, 2013 in San Jose? | installed after August, 2013 refers to year(installation_date)>2013; in San Jose refers to city = 'San Jose'; | starting stations refers to start_station_name; above average duration trips = DIVIDE(SUM(duration), COUNT(main_trip.id))<duration; |
How many bike stations are installed after August, 2013 in San Jose? | installed after August, 2013 refers to year(installation_date)>2013; in San Jose refers to city = 'San Jose'; | longest duration refers to MAX(duration); start station refers to start_station_name; |
How many bike stations are installed after August, 2013 in San Jose? | installed after August, 2013 refers to year(installation_date)>2013; in San Jose refers to city = 'San Jose'; | subsscriber refers to subscription_type = subscriber; started their trips in refers to start_station_name; start_station_name = 'Market at 4th'; |
How many bike stations are installed after August, 2013 in San Jose? | installed after August, 2013 refers to year(installation_date)>2013; in San Jose refers to city = 'San Jose'; | total trip duration to hour = DIVIDE(SUM(duration), 3600); |
How many bike stations are installed after August, 2013 in San Jose? | installed after August, 2013 refers to year(installation_date)>2013; in San Jose refers to city = 'San Jose'; | Redwood City is the name of the city; trips in August 2013 refers to start_date like '8%2013%'; |
How many bike stations are installed after August, 2013 in San Jose? | installed after August, 2013 refers to year(installation_date)>2013; in San Jose refers to city = 'San Jose'; | trips refer to id; DIVIDE(SUM(duration where start_station_name = 'Adobe on Almaden', end_station_name = 'Ryland Park'), COUNT(id)); |
How many bike stations are installed after August, 2013 in San Jose? | installed after August, 2013 refers to year(installation_date)>2013; in San Jose refers to city = 'San Jose'; | Powell Street refers to start_station_name; bike 496 refers to bike_id = '496'; start_date = '8/29/2013'; |
How many bike stations are installed after August, 2013 in San Jose? | installed after August, 2013 refers to year(installation_date)>2013; in San Jose refers to city = 'San Jose'; | the hottest temperature refers to max_temperature_f; |
How many bike stations are installed after August, 2013 in San Jose? | installed after August, 2013 refers to year(installation_date)>2013; in San Jose refers to city = 'San Jose'; | mean temperature in Fahrenheit refers to mean_temperature_f; on 8/29/2013 refers to date = '8/29/2013'; |
How many bike stations are installed after August, 2013 in San Jose? | installed after August, 2013 refers to year(installation_date)>2013; in San Jose refers to city = 'San Jose'; | started at refers to start_station_name; start_station_name = 'Steuart at Market'; ended at refers to end_station_name; end_station_name = 'Embarcadero at Sansome'; rides in July 2004 refers to start_date = '7/1/2014 0:00'AND end_date = '7/31/2014 12:59';average ride time = DIVIDE(SUM(duration), COUNT(id)) |
Which trip had the longest duration? State the start and end station. | start station refers to start_station_name; end station refers to end_station_name; | longest duration refers to MAX(duration); start station refers to start_station_name; |
Which trip had the longest duration? State the start and end station. | start station refers to start_station_name; end station refers to end_station_name; | bike is borrowed from refers to start_station_id; |
Which trip had the longest duration? State the start and end station. | start station refers to start_station_name; end station refers to end_station_name; | the hottest temperature refers to max_temperature_f; |
Which trip had the longest duration? State the start and end station. | start station refers to start_station_name; end station refers to end_station_name; | started at refers to start_station_name; start_station_name = 'Steuart at Market'; ended at refers to end_station_name; end_station_name = 'Embarcadero at Sansome'; rides in July 2004 refers to start_date = '7/1/2014 0:00'AND end_date = '7/31/2014 12:59';average ride time = DIVIDE(SUM(duration), COUNT(id)) |
Which trip had the longest duration? State the start and end station. | start station refers to start_station_name; end station refers to end_station_name; | least used bike refers to bike_id with MIN(COUNT(main_trip.id)); start station refers to start_station_name; end station refers to end_station_name; total duration in hour = DIVIDE(duration, 3600) AS hour; |
Which trip had the longest duration? State the start and end station. | start station refers to start_station_name; end station refers to end_station_name; | hottest temperature refers to MAX(max_temperature_f); |
Which trip had the longest duration? State the start and end station. | start station refers to start_station_name; end station refers to end_station_name; | coldest temperature refers to min_temperature_f; average coldest temperature refers = AVG(min_temperature_f); stations refers to name; latitude refers to lat; longitude refers to long; |
Which trip had the longest duration? State the start and end station. | start station refers to start_station_name; end station refers to end_station_name; | end station refers to end_station_name; starting from refers to start_station_name; start_station_name = '2nd at South Park'; |
Which trip had the longest duration? State the start and end station. | start station refers to start_station_name; end station refers to end_station_name; | shortest duration refers to MIN(duration); started at the station refers to start_station_name; can hold 15 bikes refers to dock_count = 15; |
Which trip had the longest duration? State the start and end station. | start station refers to start_station_name; end station refers to end_station_name; | end station refers to end_station_id; docks that were left refers to docks_available; |
What is the average duration of trips which are started at Adobe on Almaden station to Ryland Park? | trips refer to id; DIVIDE(SUM(duration where start_station_name = 'Adobe on Almaden', end_station_name = 'Ryland Park'), COUNT(id)); | started at refers to start_station_name; start_station_name = 'Steuart at Market'; ended at refers to end_station_name; end_station_name = 'Embarcadero at Sansome'; rides in July 2004 refers to start_date = '7/1/2014 0:00'AND end_date = '7/31/2014 12:59';average ride time = DIVIDE(SUM(duration), COUNT(id)) |
What is the average duration of trips which are started at Adobe on Almaden station to Ryland Park? | trips refer to id; DIVIDE(SUM(duration where start_station_name = 'Adobe on Almaden', end_station_name = 'Ryland Park'), COUNT(id)); | started on the days in September, 2013 refers to date LIKE'9%'AND date LIKE'%2013' hottest temperature over 70 degrees Fahrenheit refers to max_temperature_f>70; |
What is the average duration of trips which are started at Adobe on Almaden station to Ryland Park? | trips refer to id; DIVIDE(SUM(duration where start_station_name = 'Adobe on Almaden', end_station_name = 'Ryland Park'), COUNT(id)); | installed after August, 2013 refers to year(installation_date)>2013; in San Jose refers to city = 'San Jose'; |
What is the average duration of trips which are started at Adobe on Almaden station to Ryland Park? | trips refer to id; DIVIDE(SUM(duration where start_station_name = 'Adobe on Almaden', end_station_name = 'Ryland Park'), COUNT(id)); | start station refers to start_station_id; end station refers to end_station_id; start station and end station are the same refers to start_station_id = end_station_id; |
What is the average duration of trips which are started at Adobe on Almaden station to Ryland Park? | trips refer to id; DIVIDE(SUM(duration where start_station_name = 'Adobe on Almaden', end_station_name = 'Ryland Park'), COUNT(id)); | longest duration refers to MAX(duration); starting on a day with a fog refers to start_date where events = 'fog'; in 2013 refers to date LIKE '%2013'; |
What is the average duration of trips which are started at Adobe on Almaden station to Ryland Park? | trips refer to id; DIVIDE(SUM(duration where start_station_name = 'Adobe on Almaden', end_station_name = 'Ryland Park'), COUNT(id)); | subsscriber refers to subscription_type = subscriber; started their trips in refers to start_station_name; start_station_name = 'Market at 4th'; |
What is the average duration of trips which are started at Adobe on Almaden station to Ryland Park? | trips refer to id; DIVIDE(SUM(duration where start_station_name = 'Adobe on Almaden', end_station_name = 'Ryland Park'), COUNT(id)); | longest trip refers to MAX(duration); started on the day refers to start_date; maximum wind speed refers to max_wind_speed_mph; max_wind_speed_mph = 30; |
What is the average duration of trips which are started at Adobe on Almaden station to Ryland Park? | trips refer to id; DIVIDE(SUM(duration where start_station_name = 'Adobe on Almaden', end_station_name = 'Ryland Park'), COUNT(id)); | Redwood City is the name of the city; trips in August 2013 refers to start_date like '8%2013%'; |
What is the average duration of trips which are started at Adobe on Almaden station to Ryland Park? | trips refer to id; DIVIDE(SUM(duration where start_station_name = 'Adobe on Almaden', end_station_name = 'Ryland Park'), COUNT(id)); | no available bike to borrow refers to bikes_available = 0; latitude and longitude coordinates can be used to indicate a location; |
What is the average duration of trips which are started at Adobe on Almaden station to Ryland Park? | trips refer to id; DIVIDE(SUM(duration where start_station_name = 'Adobe on Almaden', end_station_name = 'Ryland Park'), COUNT(id)); | hottest temperature refers to max_temperatutre_f; coldest temperature refers to min_temperature_f; difference = SUBTRACT(max_temperature_f, min_temperature_f); date = '8/29/2013' |
Write down the times when there is no available bike to borrow in a station. List down the stations name and location coordinate. | no available bike to borrow refers to bikes_available = 0; latitude and longitude coordinates can be used to indicate a location; | started on the days in September, 2013 refers to date LIKE'9%'AND date LIKE'%2013' hottest temperature over 70 degrees Fahrenheit refers to max_temperature_f>70; |
Write down the times when there is no available bike to borrow in a station. List down the stations name and location coordinate. | no available bike to borrow refers to bikes_available = 0; latitude and longitude coordinates can be used to indicate a location; | San Jose is the name of the city; 2014 refers to installation_date between '1/1/2014' and '12/31/2014'; |
Write down the times when there is no available bike to borrow in a station. List down the stations name and location coordinate. | no available bike to borrow refers to bikes_available = 0; latitude and longitude coordinates can be used to indicate a location; | San Francico is the name of the city; can hold more than 20 bikes implies dock's capacity and refers to dock_count≥20; |
Write down the times when there is no available bike to borrow in a station. List down the stations name and location coordinate. | no available bike to borrow refers to bikes_available = 0; latitude and longitude coordinates can be used to indicate a location; | started at station refers to start_station_name; San Francisco refers to city = 'San Francisco'; year that had the most number of trips refers to MAX(year(start_date)); |
Write down the times when there is no available bike to borrow in a station. List down the stations name and location coordinate. | no available bike to borrow refers to bikes_available = 0; latitude and longitude coordinates can be used to indicate a location; | subsscriber refers to subscription_type = subscriber; started their trips in refers to start_station_name; start_station_name = 'Market at 4th'; |
Write down the times when there is no available bike to borrow in a station. List down the stations name and location coordinate. | no available bike to borrow refers to bikes_available = 0; latitude and longitude coordinates can be used to indicate a location; | rainy days refers to events = 'rain'; longest ride refers to MAX(duration); start station refers to start_station_name; end station refers to end_station_name; duration of the ride refers to duration; |
Write down the times when there is no available bike to borrow in a station. List down the stations name and location coordinate. | no available bike to borrow refers to bikes_available = 0; latitude and longitude coordinates can be used to indicate a location; | average duration = DIVIDE(SUM(duration), COUNT(id)); subscribers refers to subscription_type = 'subscriptions'; started and ended their trip at Mountain View City Hall refers to start_station_name = 'Mountain View City Hall' and end_station_name = 'Mountain View City Hall'; when the station was first installed refers to installation_date; |
Write down the times when there is no available bike to borrow in a station. List down the stations name and location coordinate. | no available bike to borrow refers to bikes_available = 0; latitude and longitude coordinates can be used to indicate a location; | hottest temperature refers to MAX(max_temperature_f); |
Write down the times when there is no available bike to borrow in a station. List down the stations name and location coordinate. | no available bike to borrow refers to bikes_available = 0; latitude and longitude coordinates can be used to indicate a location; | started at refers to start_station_name; start_station_name = 'South Van Ness at Market'; average duration = DIVIDE(SUM(duration), COUNT(duration)); |
Write down the times when there is no available bike to borrow in a station. List down the stations name and location coordinate. | no available bike to borrow refers to bikes_available = 0; latitude and longitude coordinates can be used to indicate a location; | ended in refers to end_station_name; |
What was duration of the longest trip started on the day that has a maximum wind speed of 30 mph? | longest trip refers to MAX(duration); started on the day refers to start_date; maximum wind speed refers to max_wind_speed_mph; max_wind_speed_mph = 30; | average duration = DIVIDE(SUM(duration), COUNT(id)); hottest temperature refers to max_temperature_f; in 2014 refers to date LIKE '%2014'; |
What was duration of the longest trip started on the day that has a maximum wind speed of 30 mph? | longest trip refers to MAX(duration); started on the day refers to start_date; maximum wind speed refers to max_wind_speed_mph; max_wind_speed_mph = 30; | rainy days refers to events = 'rain'; longest ride refers to MAX(duration); start station refers to start_station_name; end station refers to end_station_name; duration of the ride refers to duration; |
What was duration of the longest trip started on the day that has a maximum wind speed of 30 mph? | longest trip refers to MAX(duration); started on the day refers to start_date; maximum wind speed refers to max_wind_speed_mph; max_wind_speed_mph = 30; | longest duration refers to MAX(duration); starting on a day with a fog refers to start_date where events = 'fog'; in 2013 refers to date LIKE '%2013'; |
What was duration of the longest trip started on the day that has a maximum wind speed of 30 mph? | longest trip refers to MAX(duration); started on the day refers to start_date; maximum wind speed refers to max_wind_speed_mph; max_wind_speed_mph = 30; | started on the days in September, 2013 refers to date LIKE'9%'AND date LIKE'%2013' hottest temperature over 70 degrees Fahrenheit refers to max_temperature_f>70; |
What was duration of the longest trip started on the day that has a maximum wind speed of 30 mph? | longest trip refers to MAX(duration); started on the day refers to start_date; maximum wind speed refers to max_wind_speed_mph; max_wind_speed_mph = 30; | trips refer to id; DIVIDE(SUM(duration where start_station_name = 'Adobe on Almaden', end_station_name = 'Ryland Park'), COUNT(id)); |
What was duration of the longest trip started on the day that has a maximum wind speed of 30 mph? | longest trip refers to MAX(duration); started on the day refers to start_date; maximum wind speed refers to max_wind_speed_mph; max_wind_speed_mph = 30; | rain of more than 0.8 inches refers to events = rain where precipitation_inches>0.8; average ride duration = DIVIDE(SUM(duration), COUNT(duration)); |
What was duration of the longest trip started on the day that has a maximum wind speed of 30 mph? | longest trip refers to MAX(duration); started on the day refers to start_date; maximum wind speed refers to max_wind_speed_mph; max_wind_speed_mph = 30; | mean temperature refers to mean_temperature_f; mean temperature of 20 degree Celsius refers to DIVIDE(SUBTRACT(mean_temperature_f, 32), 1.8) = 20; in 2014 refers to date LIKE'%2015%'; |
What was duration of the longest trip started on the day that has a maximum wind speed of 30 mph? | longest trip refers to MAX(duration); started on the day refers to start_date; maximum wind speed refers to max_wind_speed_mph; max_wind_speed_mph = 30; | Redwood City is the name of the city; trips in August 2013 refers to start_date like '8%2013%'; |
What was duration of the longest trip started on the day that has a maximum wind speed of 30 mph? | longest trip refers to MAX(duration); started on the day refers to start_date; maximum wind speed refers to max_wind_speed_mph; max_wind_speed_mph = 30; | temperature refers to max_temperature_f; March 2013 refers to date like '3/%/2013'; conversion to Celcius = DIVIDE(SUBTRACT(max_temperature_f, 32), 1.800) as Celsius1; DIVIDE(SUBTRACT(mean_temperature_f, 32), 1.800) as Celsius2; DIVIDE(SUBTRACT(min_temperature_f, 32), 1.800) as Celcius3; |
What was duration of the longest trip started on the day that has a maximum wind speed of 30 mph? | longest trip refers to MAX(duration); started on the day refers to start_date; maximum wind speed refers to max_wind_speed_mph; max_wind_speed_mph = 30; | started at refers to start_station_name; start_station_name = 'Market at 4th'; location coordinates refers to (lat, long); |
When was the hottest temperature recorded? If there are multiple dates with the hottest temperature, indicate all of the dates. | the hottest temperature refers to max_temperature_f; | rainy days refers to events = 'rain'; longest ride refers to MAX(duration); start station refers to start_station_name; end station refers to end_station_name; duration of the ride refers to duration; |
When was the hottest temperature recorded? If there are multiple dates with the hottest temperature, indicate all of the dates. | the hottest temperature refers to max_temperature_f; | the station with the most borrowed bikes refers to MAX(start_station); |
When was the hottest temperature recorded? If there are multiple dates with the hottest temperature, indicate all of the dates. | the hottest temperature refers to max_temperature_f; | average duration = DIVIDE(SUM(duration), COUNT(id)); hottest temperature refers to max_temperature_f; in 2014 refers to date LIKE '%2014'; |
When was the hottest temperature recorded? If there are multiple dates with the hottest temperature, indicate all of the dates. | the hottest temperature refers to max_temperature_f; | temperature refers to max_temperature_f; March 2013 refers to date like '3/%/2013'; conversion to Celcius = DIVIDE(SUBTRACT(max_temperature_f, 32), 1.800) as Celsius1; DIVIDE(SUBTRACT(mean_temperature_f, 32), 1.800) as Celsius2; DIVIDE(SUBTRACT(min_temperature_f, 32), 1.800) as Celcius3; |
When was the hottest temperature recorded? If there are multiple dates with the hottest temperature, indicate all of the dates. | the hottest temperature refers to max_temperature_f; | ended in refers to end_station_name; |
When was the hottest temperature recorded? If there are multiple dates with the hottest temperature, indicate all of the dates. | the hottest temperature refers to max_temperature_f; | hottest temperature refers to max_temperatutre_f; in 2014 refers to date LIKE '%2014'; started from station refers to start_station_name; start_station_name = '2nd at Folsom'; |
When was the hottest temperature recorded? If there are multiple dates with the hottest temperature, indicate all of the dates. | the hottest temperature refers to max_temperature_f; | total number of bikes that can be hold = MAX(dock_count); before 2014 refers to year(installation_date)<2014; |
When was the hottest temperature recorded? If there are multiple dates with the hottest temperature, indicate all of the dates. | the hottest temperature refers to max_temperature_f; | starting stations refers to start_station_name; above average duration trips = DIVIDE(SUM(duration), COUNT(main_trip.id))<duration; |
When was the hottest temperature recorded? If there are multiple dates with the hottest temperature, indicate all of the dates. | the hottest temperature refers to max_temperature_f; | less than 5 minutes refers to duration<300 in seconds; the station where the bike was borrowed refers to start_station_name; the station where the bike was returned refers to end_station_name; mean temperature refers to min_temperature_f; |
When was the hottest temperature recorded? If there are multiple dates with the hottest temperature, indicate all of the dates. | the hottest temperature refers to max_temperature_f; | longest trip refers to MAX(duration); started on the day refers to start_date; maximum wind speed refers to max_wind_speed_mph; max_wind_speed_mph = 30; |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.