1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 15:18:01 +00:00

Extend the explanation a bit.

This commit is contained in:
jbranchaud
2015-03-20 15:19:30 -05:00
parent c41ad8cf91
commit 2e1687eaec

View File

@@ -24,5 +24,14 @@ where it appears in a given statement.
Try running something like this to see:
```postgresql
select clock_timestamp(), clock_timestamp(), clock_timestamp(), clock_timestamp();
> select clock_timestamp(), clock_timestamp(), clock_timestamp(), clock_timestamp();
clock_timestamp | clock_timestamp | clock_timestamp | clock_timestamp
-------------------------------+-------------------------------+-------------------------------+------------------------------
2015-03-20 14:58:49.832592-05 | 2015-03-20 14:58:49.832592-05 | 2015-03-20 14:58:49.832593-05 | 2015-03-20 14:58:49.832593-05
```
You'll notice that we see a change in the clock time at the microsecond
level mid-way through the statement.
sources: [postgres docs](http://www.postgresql.org/docs/9.1/static/functions-datetime.html) and
[Jack C.](http://hashrocket.com/team/jack-christensen)