query
stringlengths 24
325
| positive
stringlengths 1
580
| negative
stringlengths 1
580
|
---|---|---|
What is the maximum dew point in Fahrenheit degree on 7/15/2014 in the area with a zip code of 94301? | the maximum dew point in Fahrenheit degree refers to max_dew_point_f; date = '7/15/2014'; | San Jose is the name of the city; 2014 refers to installation_date between '1/1/2014' and '12/31/2014'; |
What is the maximum dew point in Fahrenheit degree on 7/15/2014 in the area with a zip code of 94301? | the maximum dew point in Fahrenheit degree refers to max_dew_point_f; date = '7/15/2014'; | in 2006 refers to start_date LIKE'%2006%'; ended at station refers to end_station_name; Mountain View refers to city = 'Mountain View'; |
What is the maximum dew point in Fahrenheit degree on 7/15/2014 in the area with a zip code of 94301? | the maximum dew point in Fahrenheit degree refers to max_dew_point_f; date = '7/15/2014'; | route implies a course taken in getting from start_station_name to end_station_name; the longest duration refers to MAX(duration); |
What is the maximum dew point in Fahrenheit degree on 7/15/2014 in the area with a zip code of 94301? | the maximum dew point in Fahrenheit degree refers to max_dew_point_f; date = '7/15/2014'; | longest duration refers to MAX(duration); start station refers to start_station_name; |
What is the maximum dew point in Fahrenheit degree on 7/15/2014 in the area with a zip code of 94301? | the maximum dew point in Fahrenheit degree refers to max_dew_point_f; date = '7/15/2014'; | started at refers to start_station_name; start_station_name = 'Market at 4th'; location coordinates refers to (lat, long); |
What is the maximum dew point in Fahrenheit degree on 7/15/2014 in the area with a zip code of 94301? | the maximum dew point in Fahrenheit degree refers to max_dew_point_f; date = '7/15/2014'; | hottest temperature refers to MAX(max_temperature_f); |
What is the maximum dew point in Fahrenheit degree on 7/15/2014 in the area with a zip code of 94301? | the maximum dew point in Fahrenheit degree refers to max_dew_point_f; date = '7/15/2014'; | started refers to start_date; the hottest day refers to max_temperature_f; |
What is the maximum dew point in Fahrenheit degree on 7/15/2014 in the area with a zip code of 94301? | the maximum dew point in Fahrenheit degree refers to max_dew_point_f; date = '7/15/2014'; | 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 maximum dew point in Fahrenheit degree on 7/15/2014 in the area with a zip code of 94301? | the maximum dew point in Fahrenheit degree refers to max_dew_point_f; date = '7/15/2014'; | subscription_type = 'Subscriber'; DIVIDE(COUNT(id where subscription_type = 'Subscriber'), COUNT(id)) as percentage; |
What is the maximum dew point in Fahrenheit degree on 7/15/2014 in the area with a zip code of 94301? | the maximum dew point in Fahrenheit degree refers to max_dew_point_f; date = '7/15/2014'; | 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; |
How many subscribers are in the zip code of 94301 and what is the hottest temperature recorded on that zip code? | hottest temperature refers to MAX(max_temperature_f); | 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; |
How many subscribers are in the zip code of 94301 and what is the hottest temperature recorded on that zip code? | hottest temperature refers to MAX(max_temperature_f); | route implies a course taken in getting from start_station_name to end_station_name; the longest duration refers to MAX(duration); |
How many subscribers are in the zip code of 94301 and what is the hottest temperature recorded on that zip code? | hottest temperature refers to MAX(max_temperature_f); | 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; |
How many subscribers are in the zip code of 94301 and what is the hottest temperature recorded on that zip code? | hottest temperature refers to MAX(max_temperature_f); | 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; |
How many subscribers are in the zip code of 94301 and what is the hottest temperature recorded on that zip code? | hottest temperature refers to MAX(max_temperature_f); | final station refers to end_station_name where MAX(end_date); |
How many subscribers are in the zip code of 94301 and what is the hottest temperature recorded on that zip code? | hottest temperature refers to MAX(max_temperature_f); | 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)); |
How many subscribers are in the zip code of 94301 and what is the hottest temperature recorded on that zip code? | hottest temperature refers to MAX(max_temperature_f); | total number of bikes that can be hold = MAX(dock_count); before 2014 refers to year(installation_date)<2014; |
How many subscribers are in the zip code of 94301 and what is the hottest temperature recorded on that zip code? | hottest temperature refers to MAX(max_temperature_f); | 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'; |
How many subscribers are in the zip code of 94301 and what is the hottest temperature recorded on that zip code? | hottest temperature refers to MAX(max_temperature_f); | bike was borrowed from refers to start_station_id; when the bike station was installed refers to installation_date; |
How many subscribers are in the zip code of 94301 and what is the hottest temperature recorded on that zip code? | hottest temperature refers to MAX(max_temperature_f); | 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; |
What is the percentage of the trip were done by a subscriber? | subscription_type = 'Subscriber'; DIVIDE(COUNT(id where subscription_type = 'Subscriber'), COUNT(id)) as percentage; | bike is borrowed from refers to start_station_id; |
What is the percentage of the trip were done by a subscriber? | subscription_type = 'Subscriber'; DIVIDE(COUNT(id where subscription_type = 'Subscriber'), COUNT(id)) as percentage; | 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; |
What is the percentage of the trip were done by a subscriber? | subscription_type = 'Subscriber'; DIVIDE(COUNT(id where subscription_type = 'Subscriber'), COUNT(id)) as percentage; | 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 is the percentage of the trip were done by a subscriber? | subscription_type = 'Subscriber'; DIVIDE(COUNT(id where subscription_type = 'Subscriber'), COUNT(id)) as percentage; | station refers to name; |
What is the percentage of the trip were done by a subscriber? | subscription_type = 'Subscriber'; DIVIDE(COUNT(id where subscription_type = 'Subscriber'), COUNT(id)) as percentage; | shortest trip refers to MIN(duration); starting from refers to start_station_name; start_station_name = 'Franklin at Maple'; maximum wind speed refers to max_wind_Speed_mph; |
What is the percentage of the trip were done by a subscriber? | subscription_type = 'Subscriber'; DIVIDE(COUNT(id where subscription_type = 'Subscriber'), COUNT(id)) as percentage; | total trip duration to hour = DIVIDE(SUM(duration), 3600); |
What is the percentage of the trip were done by a subscriber? | subscription_type = 'Subscriber'; DIVIDE(COUNT(id where subscription_type = 'Subscriber'), COUNT(id)) as percentage; | end station refers to end_station_name; starting from refers to start_station_name; start_station_name = '2nd at South Park'; |
What is the percentage of the trip were done by a subscriber? | subscription_type = 'Subscriber'; DIVIDE(COUNT(id where subscription_type = 'Subscriber'), COUNT(id)) as percentage; | 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'; |
What is the percentage of the trip were done by a subscriber? | subscription_type = 'Subscriber'; DIVIDE(COUNT(id where subscription_type = 'Subscriber'), COUNT(id)) as percentage; | the station with the most borrowed bikes refers to MAX(start_station); |
What is the percentage of the trip were done by a subscriber? | subscription_type = 'Subscriber'; DIVIDE(COUNT(id where subscription_type = 'Subscriber'), COUNT(id)) as percentage; | the hottest temperature refers to max_temperature_f; |
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? | started at refers to start_station_name; start_station_name = 'Market at 4th'; location coordinates refers to (lat, long); | start and end station are similar refers to start_station_name = end_station_name; latitude and longitude coordinates can be used to indicate a location; |
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? | started at refers to start_station_name; start_station_name = 'Market at 4th'; location coordinates refers to (lat, long); | 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; |
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? | started at refers to start_station_name; start_station_name = 'Market at 4th'; location coordinates refers to (lat, long); | started at refers to start_station_name; start_station_name = 'South Van Ness at Market'; average duration = DIVIDE(SUM(duration), COUNT(duration)); |
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? | started at refers to start_station_name; start_station_name = 'Market at 4th'; location coordinates refers to (lat, long); | subscription_type = 'Subscriber'; DIVIDE(COUNT(id where subscription_type = 'Subscriber'), COUNT(id)) as percentage; |
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? | started at refers to start_station_name; start_station_name = 'Market at 4th'; location coordinates refers to (lat, long); | route implies a course taken in getting from start_station_name to end_station_name; the longest duration refers to MAX(duration); |
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? | started at refers to start_station_name; start_station_name = 'Market at 4th'; location coordinates refers to (lat, long); | station refers to name; |
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? | started at refers to start_station_name; start_station_name = 'Market at 4th'; location coordinates refers to (lat, long); | total trip duration to hour = DIVIDE(SUM(duration), 3600); |
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? | started at refers to start_station_name; start_station_name = 'Market at 4th'; location coordinates refers to (lat, long); | 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 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? | started at refers to start_station_name; start_station_name = 'Market at 4th'; location coordinates refers to (lat, long); | bike was borrowed from refers to start_station_id; San Francisco refers to city = 'San Francisco'; subscriber refers to subscription_type = 'Subscriber'; |
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? | started at refers to start_station_name; start_station_name = 'Market at 4th'; location coordinates refers to (lat, long); | end station refers to end_station_id; docks that were left refers to docks_available; |
Convert all temperature recorded at San Francisco city during August 2013 into degree Celsius. | 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; | trips refer to id; DIVIDE(SUM(duration where start_station_name = 'Adobe on Almaden', end_station_name = 'Ryland Park'), COUNT(id)); |
Convert all temperature recorded at San Francisco city during August 2013 into degree Celsius. | 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; | 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; |
Convert all temperature recorded at San Francisco city during August 2013 into degree Celsius. | 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; | the station with the most borrowed bikes refers to MAX(start_station); |
Convert all temperature recorded at San Francisco city during August 2013 into degree Celsius. | 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; | rain of more than 0.8 inches refers to events = rain where precipitation_inches>0.8; average ride duration = DIVIDE(SUM(duration), COUNT(duration)); |
Convert all temperature recorded at San Francisco city during August 2013 into degree Celsius. | 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; | bike was borrowed from refers to start_station_id; when the bike station was installed refers to installation_date; |
Convert all temperature recorded at San Francisco city during August 2013 into degree Celsius. | 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; | average duration = DIVIDE(SUM(duration), COUNT(id)); hottest temperature refers to max_temperature_f; in 2014 refers to date LIKE '%2014'; |
Convert all temperature recorded at San Francisco city during August 2013 into degree Celsius. | 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; | total trip duration to hour = DIVIDE(SUM(duration), 3600); |
Convert all temperature recorded at San Francisco city during August 2013 into degree Celsius. | 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; | South Van Ness at Market refers to start_station_name; subscriber refers to subscription_type; start_date = '12/1/2013'; the shortest duration refers to MIN(duration); which station was the bike returned to refers to end_station_name; |
Convert all temperature recorded at San Francisco city during August 2013 into degree Celsius. | 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; | started at refers to start_station_name; start_station_name = 'Market at 4th'; location coordinates refers to (lat, long); |
Convert all temperature recorded at San Francisco city during August 2013 into degree Celsius. | 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; | San Francico is the name of the city; can hold more than 20 bikes implies dock's capacity and refers to dock_count≥20; |
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. | 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; | ended on a foggy day refers to end_date where events = 'fog'; average duration = DIVIDE(SUM(duration), COUNT(duration)); |
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. | 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; | station refers to name; |
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. | 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; | starting stations refers to start_station_name; above average duration trips = DIVIDE(SUM(duration), COUNT(main_trip.id))<duration; |
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. | 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; | trips refer to id; DIVIDE(SUM(duration where start_station_name = 'Adobe on Almaden', end_station_name = 'Ryland Park'), COUNT(id)); |
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. | 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; | 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; |
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. | 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; | 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; |
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. | 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; | shortest trip refers to MIN(duration); starting from refers to start_station_name; start_station_name = 'Franklin at Maple'; maximum wind speed refers to max_wind_Speed_mph; |
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. | 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; | total trip duration to hour = DIVIDE(SUM(duration), 3600); |
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. | 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; | start and end station are similar refers to start_station_name = end_station_name; latitude and longitude coordinates can be used to indicate a location; |
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. | 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; | intercity trip refers to start_station_name! = end_station_name; total travel duration to hour = DIVIDE(SUM(duration), 3600) AS hour; |
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. | end station refers to end_station_name; starting from refers to start_station_name; start_station_name = '2nd at South Park'; | start and end station are similar refers to start_station_name = end_station_name; latitude and longitude coordinates can be used to indicate a location; |
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. | end station refers to end_station_name; starting from refers to start_station_name; start_station_name = '2nd at South Park'; | trips refer to id; DIVIDE(SUM(duration where start_station_name = 'Adobe on Almaden', end_station_name = 'Ryland Park'), COUNT(id)); |
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. | end station refers to end_station_name; starting from refers to start_station_name; start_station_name = '2nd at South Park'; | rain of more than 0.8 inches refers to events = rain where precipitation_inches>0.8; average ride duration = DIVIDE(SUM(duration), COUNT(duration)); |
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. | end station refers to end_station_name; starting from refers to start_station_name; start_station_name = '2nd at South Park'; | events = 'Rain'; year refers to YEAR(date); |
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. | end station refers to end_station_name; starting from refers to start_station_name; start_station_name = '2nd at South Park'; | hottest temperature refers to MAX(max_temperature_f); |
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. | end station refers to end_station_name; starting from refers to start_station_name; start_station_name = '2nd at South Park'; | customer refers to subscription_type = 'Customer'; subscribers refers to subscription_type = 'Subscriber'; difference = SUBTRACT(SUM(subscription_type = 'Subscriber' t), SUM(subscription_type = 'Customer')); trip in June 2013 refers to start_date BETWEEN '6/1/2013 0:00'AND '6/31/2013 12:59'; |
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. | end station refers to end_station_name; starting from refers to start_station_name; start_station_name = '2nd at South Park'; | installed after August, 2013 refers to year(installation_date)>2013; in San Jose refers to city = 'San Jose'; |
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. | end station refers to end_station_name; starting from refers to start_station_name; start_station_name = '2nd at South Park'; | start station refers to start_station_name; end station refers to end_station_name; |
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. | end station refers to end_station_name; starting from refers to start_station_name; start_station_name = '2nd at South Park'; | station refers to name; |
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. | end station refers to end_station_name; starting from refers to start_station_name; start_station_name = '2nd at South Park'; | time = '11/3/2013'; which stations are empty refers to bikes_available = '0'; |
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"? | 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'; | station refers to name; |
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"? | 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'; | 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; |
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"? | 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'; | Redwood City is the name of the city; trips in August 2013 refers to start_date like '8%2013%'; |
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"? | 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'; | started refers to start_date; the hottest day refers to max_temperature_f; |
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"? | 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'; | 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; |
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"? | 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'; | end station refers to end_station_id; docks that were left refers to docks_available; |
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"? | 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'; | 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; |
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"? | 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'; | rain of more than 0.8 inches refers to events = rain where precipitation_inches>0.8; average ride duration = DIVIDE(SUM(duration), COUNT(duration)); |
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"? | 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'; | 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'; |
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"? | 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'; | start and end station are similar refers to start_station_name = end_station_name; latitude and longitude coordinates can be used to indicate a location; |
List down the trips in which their start and end station are similar. Give me their trip IDs and location coordinates. | start and end station are similar refers to start_station_name = end_station_name; latitude and longitude coordinates can be used to indicate a location; | bike was borrowed from refers to start_station_id; when the bike station was installed refers to installation_date; |
List down the trips in which their start and end station are similar. Give me their trip IDs and location coordinates. | start and end station are similar refers to start_station_name = end_station_name; latitude and longitude coordinates can be used to indicate a location; | shortest duration refers to MIN(duration); started at the station refers to start_station_name; can hold 15 bikes refers to dock_count = 15; |
List down the trips in which their start and end station are similar. Give me their trip IDs and location coordinates. | start and end station are similar refers to start_station_name = end_station_name; latitude and longitude coordinates can be used to indicate a location; | 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; |
List down the trips in which their start and end station are similar. Give me their trip IDs and location coordinates. | start and end station are similar refers to start_station_name = end_station_name; 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)); |
List down the trips in which their start and end station are similar. Give me their trip IDs and location coordinates. | start and end station are similar refers to start_station_name = end_station_name; latitude and longitude coordinates can be used to indicate a location; | day in the month of November, 2014 refers to start_date between '11/1/2014' and '11/30/2014'; foggy weather refers to events = 'Fog'; subscriber refers to subscription_type; all of the stations bikes were borrowed from refer to start_station_name; |
List down the trips in which their start and end station are similar. Give me their trip IDs and location coordinates. | start and end station are similar refers to start_station_name = end_station_name; latitude and longitude coordinates can be used to indicate a location; | installed after August, 2013 refers to year(installation_date)>2013; in San Jose refers to city = 'San Jose'; |
List down the trips in which their start and end station are similar. Give me their trip IDs and location coordinates. | start and end station are similar refers to start_station_name = end_station_name; latitude and longitude coordinates can be used to indicate a location; | the hottest temperature refers to max_temperature_f; |
List down the trips in which their start and end station are similar. Give me their trip IDs and location coordinates. | start and end station are similar refers to start_station_name = end_station_name; latitude and longitude coordinates can be used to indicate a location; | in 2015 refers to end_date like '%2015%'; percentage = DIVIDE(COUNT(events = 'Rain'), COUNT(events)); |
List down the trips in which their start and end station are similar. Give me their trip IDs and location coordinates. | start and end station are similar refers to start_station_name = end_station_name; latitude and longitude coordinates can be used to indicate a location; | in 2006 refers to start_date LIKE'%2006%'; ended at station refers to end_station_name; Mountain View refers to city = 'Mountain View'; |
List down the trips in which their start and end station are similar. Give me their trip IDs and location coordinates. | start and end station are similar refers to start_station_name = end_station_name; latitude and longitude coordinates can be used to indicate a location; | hottest temperature refers to MAX(max_temperature_f); |
When was the bike station from which the bike was borrowed on trip ID4069 installed? | bike was borrowed from refers to start_station_id; when the bike station was installed refers to installation_date; | when the station was first installed refers to installation_date; |
When was the bike station from which the bike was borrowed on trip ID4069 installed? | bike was borrowed from refers to start_station_id; when the bike station was installed refers to installation_date; | started at refers to start_station_name; start_station_name = 'Market at 4th'; location coordinates refers to (lat, long); |
When was the bike station from which the bike was borrowed on trip ID4069 installed? | bike was borrowed from refers to start_station_id; when the bike station was installed refers to installation_date; | start and end station are similar refers to start_station_name = end_station_name; latitude and longitude coordinates can be used to indicate a location; |
When was the bike station from which the bike was borrowed on trip ID4069 installed? | bike was borrowed from refers to start_station_id; when the bike station was installed refers to installation_date; | trips refer to id; DIVIDE(SUM(duration where start_station_name = 'Adobe on Almaden', end_station_name = 'Ryland Park'), COUNT(id)); |
When was the bike station from which the bike was borrowed on trip ID4069 installed? | bike was borrowed from refers to start_station_id; when the bike station was installed refers to installation_date; | in 2006 refers to start_date LIKE'%2006%'; ended at station refers to end_station_name; Mountain View refers to city = 'Mountain View'; |
When was the bike station from which the bike was borrowed on trip ID4069 installed? | bike was borrowed from refers to start_station_id; when the bike station was installed refers to installation_date; | end station refers to end_station_name; starting from refers to start_station_name; start_station_name = '2nd at South Park'; |
When was the bike station from which the bike was borrowed on trip ID4069 installed? | bike was borrowed from refers to start_station_id; when the bike station was installed refers to installation_date; | started at refers to start_station_name; start_station_name = 'South Van Ness at Market'; average duration = DIVIDE(SUM(duration), COUNT(duration)); |
When was the bike station from which the bike was borrowed on trip ID4069 installed? | bike was borrowed from refers to start_station_id; when the bike station was installed refers to installation_date; | final station refers to end_station_name where MAX(end_date); |
When was the bike station from which the bike was borrowed on trip ID4069 installed? | bike was borrowed from refers to start_station_id; when the bike station was installed refers to installation_date; | 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'; |
When was the bike station from which the bike was borrowed on trip ID4069 installed? | bike was borrowed from refers to start_station_id; when the bike station was installed refers to installation_date; | installed on refers to installation_date; installation_date = '8/16/2013'; customers refers to subscription_type = customers; |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.