Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Return value of tz_offset
I'm facing a problem if I try to append a string to the
return value of tz_offset like this:
select 'start' || tz_offset('+02:00') || 'end' test from dual
TEST
But if I do this:
select 'start' || substr(tz_offset('+02:00'),1,6) || 'end' test from dual
TEST
it works fine.
Any Ideas?
Björn Received on Thu Sep 14 2006 - 01:44:28 CDT
![]() |
![]() |