We have a machine running 24x7. Every day I report the number of pieces it produced per hour. In our case one working day means '2015-06-16 06:00:00' to '2015-06-17 06:00:00' for example.
Here is my code:
select date_trunc('hour', t_el_eventlog.eventtime at time zone 'CET') as hours,
count (distinct t_el_eventlog.serialnumber) as count
from t_el_eventlog
where eventtime at time zone 'CET' between '2015-06-16 06:00:00'
and '2015-06-17 06:00:00'
and sourceid = '44'
group by hours
order by hours asc
My Postgres version: "PostgreSQL 9.4.1, compiled by Visual C++ build 1800, 32-bit"
The data types of two columns which I am dealing with:
eventtime timestamp without time zone sourceid integer NOT NULL
Time zone is "Europe/Berlin".
With the above query I get the information I want, but I have to change the date every day. Is it possible to use the now()
function as default value for my case instead, so that I don't have to change the date manually everyday?
Your can use
CURRENT_DATE
:EDIT:
Erwin's comment is about the question not this answer. Using
between
for date/times is a bad idea. I suppose this should be repeated in every question that does this. But the problem is that the date/time values that are boundaries between days are counted twice.The correct logic is:
Note the "<" for the second limit. Here is a good blog on this subject. Although Aaron is focused on SQL Server, the warnings (and some of the solutions) apply to other databases as well.
Answer for
timestamp
You need to understand the nature of the data types
timestamp without time zone
andtimestamp with time zone
(names can be deceiving). If you don't, read this first:The
AT TIME ZONE
construct transforms yourtimestamp
totimestamptz
, which is almost certainly the wrong move:First, it kills performance. Applying
AT TIME ZONE
toeventtime
makes the expression not sargable. Postgres cannot use a plain index oneventtime
. But even without index, sargable expressions are cheaper. Provide bounds adjusted to the values in the table, so you don't have to manipulate every row.You could compensate with a matching expression index, but it's probably just a misunderstanding and wrong anyway.
What happens in that expression?
AT TIME ZONE 'CET'
transforms thetimestamp
valueeventtime
totimestamptz
by appending the time zone offset of your current time zone. This takes DST (daylight saving time) into account, so you get a different offset for winter timestamps. Basically you get the answer to the question:What's the absolute time (UTC timestamp) when the given time zone sees the given timestamp?
When displaying the result to the user it becomes the according local timestamp for the current time zone of the session with the according time zone offset appended. (May or may not be the same as the one used in the expression).
The string literals on the right side have no data type to them, so they intended type is derived from the assignment in the expression. Since we effectively have
timestamptz
now, both are cast totimestamptz
, assuming the current time zone of the session.Give me the UTC timestamp for the moment in time, when the local time looks like the given timestamp.
The offset varies with DST rules.
Long story short, if you operate with the same time zone everywhere:
CET
or'Europe/Berlin'
, same thing for present-day timestamps, but not for historic or (possibly) future ones, you can just cut the cruft.The second problem with the expression:
is almost always wrong withBETWEEN
timestamp
values. Details:now()
is the Postgres implementation of the SQL standardCURRENT_TIMESTAMP
. Both returntimestamptz
(nottimestamp
!). You can use either.now()::date
is equivalent toCURRENT_DATE
. Both depend of the current time zone setting.You should have an index of the form:
Or, to allow index-only scans:
If you operate in different time zones, things get more complicated and you should use
timestamptz
for everything.Alternative for
timestamptz
Before the question update, it seemed like time zones matter. When dealing with different time zones, "today" is a functional dependency of the current time zone. People tend to forget that.
To just work with the current time zone setting of the session, use the same query as above. If executed in a different time zone, the results are wrong in actuality. (Applies to the above as well.)
To guarantee a correct result for a given time zone ('Europe/Berlin' in your case) irregardless of the current time zone setting of the session, use this expression instead:
Be aware that the
AT TIME ZONE
construct returnstimestamp
fortimestamptz
input and vice-versa.As mentioned at the outset, all the gory details here: