Thread: time precision.
Hi All,
I�m using PG-7.2.4 on Solaries.
When I do:
template1=# select time(6576);
ERROR:� TIME(6576) precision must be between 0 and 13
Where am I wrong?
Pls. help
Thanks,
Anagha
> I'm using PG-7.2.4 on Solaries. > When I do: > > template1# select time(6576); > ERROR: TIME(6576) precision must be between 0 and 13 > > Where am I wrong? What's the purpose of this function? And where did you find it in the docs? I didn't see it before. Regards, Christoph
On Wed, 30 Jul 2003, Anagha Joshi wrote: > Hi All, > I'm using PG-7.2.4 on Solaries. > When I do: > > template1=# select time(6576); > ERROR: TIME(6576) precision must be between 0 and 13 > > Where am I wrong? IIRC time(n) refers to the type time with a precision of n and n is limited as stated by the error. What are you trying to do?