I’m trying to get the AVG time, but the time format is not supported by the AVG function. I tried with CAST function, like in some posts were explained, but it seems doesn’t work anyway. Thanks
WITH october_fall AS
(SELECT
start_station_name,
end_station_name,
start_station_id,
end_station_id,
EXTRACT (DATE FROM started_at) AS start_date,
EXTRACT(DAYOFWEEK FROM started_at) AS start_week_date,
EXTRACT (TIME FROM started_at) AS start_time,
EXTRACT (DATE FROM ended_at) AS end_date,
EXTRACT(DAYOFWEEK FROM ended_at) AS end_week_date,
EXTRACT (TIME FROM ended_at) AS end_time,
DATETIME_DIFF (ended_at,started_at, MINUTE) AS total_lenght,
member_casual
FROM
`ciclystic.cyclistic_seasonal_analysis.fall_202010` AS fall_analysis
ORDER BY
started_at DESC)
SELECT
COUNT (start_week_date) AS avg_start_1,
AVG (start_time) AS avg_start_time_1, ## here is where the problem start
member_casual
FROM
october_fall
WHERE
start_week_date = 1
GROUP BY
member_casual
Cats love to rest! You can frequently find your feline nestled into a radiant spot…
Moissanite diamonds have rapidly gained popularity as an attractive alternative to traditional diamonds. Known for…
Introduction Parenting is one of life’s most fulfilling yet demanding roles. As children grow, parents…
In today’s fast-paced and consumer-driven society, many parents find themselves overwhelmed by the demands of…
Las Vegas, Nevada, is a city known for its vibrant energy and dynamic living. Whether…
Whether you’re embarking on a major renovation, tackling small DIY projects, or simply restocking your…