No title

Started by gomathi rajuover 25 years ago4 messages
#1gomathi raju
gomathi_raju@usa.net

Hi friends,

I want to get the system timestamp from postgresql database.
But I dont have a dual table from where ,I can select it.
Give me a solution, from which table(system) I can get it.

Regards,
gomathi

____________________________________________________________________
Get free email and a permanent address at http://www.netaddress.com/?N=1

#2Patrick Welche
prlw1@newn.cam.ac.uk
In reply to: gomathi raju (#1)
Re: [HACKERS]

On Mon, Jun 30, 2036 at 10:05:43PM -0600, gomathi raju wrote:

Hi friends,

I want to get the system timestamp from postgresql database.
But I dont have a dual table from where ,I can select it.
Give me a solution, from which table(system) I can get it.

Could this be what you want?

template1=# select CURRENT_TIMESTAMP;
timestamp
------------------------
2000-05-24 23:40:19+01

Cheers,

Patrick

#3Chris Bitmead
chrisb@nimrod.itg.telstra.com.au
In reply to: gomathi raju (#1)
Re: [HACKERS]

gomathi raju wrote:

Hi friends,

I want to get the system timestamp from postgresql database.
But I dont have a dual table from where ,I can select it.
Give me a solution, from which table(system) I can get it.

Are you talking about
SELECT 'now'
?

#4Michael A. Mayo
mmayo@mcauleybrooklyn.org
In reply to: gomathi raju (#1)
Re: [SQL]

----- Original Message -----
From: "gomathi raju" <gomathi_raju@usa.net>

I want to get the system timestamp from postgresql database.
But I dont have a dual table from where ,I can select it.
Give me a solution, from which table(system) I can get it.

No need to get it from a system table; it is available as a sort of "global
constant," current_timestamp.

Use it like this:

SELECT CURRENT_TIMESTAMP;

See the book at: http://www.postgresql.org/docs/awbook.html for more
information.

-Mike