im looking to determine if a date is in daylight saving. This is used to determine the number of hours between two dates as this will effect the cost - its for a care hire. I have tried to strip the code down as much as possible. I am struggling with the syntax a little (is_daylight function does not exist) but hopefully have managed to convey what im trying to do. Any help much appreciated.
SELECT
-- lost an hour on pickup date so add an hour to the date
WHEN
is_daylight(pickup_date)=1 AND is_daylight(dropoff_date)=0
THEN
unix_timestamp(dropoff_date) - unix_timestamp(pickup_date)+3600 / 86400 as num_hours
-- not date time
ELSE
unix_timestamp(dropoff_date) - unix_timestamp(pickup_date) / 86400 as num_hours