Dear everybody,
I would like to know how to create a timestamp value without time zone.
I have encountered a problem that I have set following values in the table.
create table test(
a timestamp without time zone
);
INSERT INTO test (a) VALUES(current_timestamp);
but the value of a always shows the zone value like this "2001-12-27 14:54:47+08"
How to get rid of the last "+08" value?
Thanks,
Alex