From: | Guy Fraser <guy(at)incentre(dot)net> |
---|---|
To: | "Pradeepkumar, Pyatalo (IE10)" <Pradeepkumar(dot)Pyatalo(at)honeywell(dot)com> |
Cc: | pgsql-novice(at)postgresql(dot)org |
Subject: | Re: [SQL] how to cast localtimestamp to bigint??? |
Date: | 2004-08-13 14:44:33 |
Message-ID: | 411CD3D1.2090800@incentre.net |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-novice pgsql-sql |
You don't need to use a bigint, read the documentation on data types.
There are a number of different things you can use for a timestamp, here
are a few :
abstime
abstime with timezone
timestamp
timestamp with timezone
Then when you are inserting your data, you can use 'now' as the time.
Eg.
CREATE TABLE pointy_stuff (
PointId integer,
PointName varchar(50),
PointType integer,
CreateTime abstime
);
INSERT INTO pointy_stuff (
PointId,
PointName,
PointType,
CreateTime
) VALUES (
'12345',
'point1',
'1',
'now'
);
I believe abstime is the smallest timestamp, but I could be wrong.
To output the data as a bigint I believe you can use this.
SELECT
PointId,
PointName,
PointType,
date_part('epoch',CreateTime) as unix_ts
FROM
pointy_stuff
;
Hope that helps.
Pradeepkumar, Pyatalo (IE10) wrote:
>Hi,
>
>I am having a table something like this....
>
>CREATE TABLE(PointId integer, PointName varchar(50),PointType integer,
>createtime bigint);
>
>where createtime is the current timestamp when the tuple is inserted.
>
>now how do I insert values into the above table. Is there a way to cast
>timestamp to bigint.
>Also can anyone suggest as to which date function to use -
>CURRENT_TIMESTAMP, LOCALTIMESTAMP, timeofday(), now....
>
>
>
From | Date | Subject | |
---|---|---|---|
Next Message | Sean Davis | 2004-08-13 14:47:08 | Re: Query output |
Previous Message | Eduardo Vázquez Rodríguez | 2004-08-13 14:22:58 | Query output |
From | Date | Subject | |
---|---|---|---|
Next Message | Pentilian | 2004-08-13 16:05:39 | Re: Wierd Error on update |
Previous Message | Philippe Lang | 2004-08-13 08:52:11 | Re: function expression in FROM may not refer to other relations of same query level |