Say we want data about how many rides lasted longer than an hour. At this point we donβt care about where they started, or which bike they were on, we just want to know how many such rides there were. To ask for the total number of records a query finds, we can select COUNT(*).
The AS keyword is used after COUNT(*) to give the data that is returned a name. If we leave it off, the βcolumnβ of data will just be labeled COUNT(*). Calling it number_rides makes it much clearer what we are looking at.
Hint: Build your way to the final query. Start by selecting all the data (*) for all the trips. Then write a WHERE to only select ones that start from 31111. Finally, instead of selecting all of the columns, select just the count of the number of records.
COUNT is one of the aggregation functions provided by SQL. Aggregation is the process of combining data and COUNT combines all the records and tells us how many there are. But there are other ways we can aggregate data with SQL:
You use WHERE filtering with aggregating functions. The query below calculates the longest trip duration just for trips made by Casual member type users.
It is often helpful to not only count the number of rows but also to count the number of unique values of a column. You can do this using the DISTINCT keyword.
To count the distinct values of a column, you can simply use COUNT along with DISTINCT. For example, the query below counts how many bike numbers are used.