Mark Morgan Lloyd <[EMAIL PROTECTED]> schrieb:
> What is the correct (or even any :-) way of converting a timestamp into a time
> (without timezone etc.)?
You can CAST it:
test=# select now();
now
-------------------------------
2006-11-05 11:16:05.205235+01
(1 row)
test=# select now()::time;
now
----------------
11:16:18.22527
(1 row)
Andreas
--
Really, I'm not out to destroy Microsoft. That will just be a completely
unintentional side effect. (Linus Torvalds)
"If I was god, I would recompile penguin with --enable-fly." (unknow)
Kaufbach, Saxony, Germany, Europe. N 51.05082°, E 13.56889°
---------------------------(end of broadcast)---------------------------
TIP 9: In versions below 8.0, the planner will ignore your desire to
choose an index scan if your joining column's datatypes do not
match