Answers for "postgres now datetime"

SQL
0

postgres datetime now

/*
The NOW() function returns the current date and time.
The return type of the NOW() function is the timestamp with time zone.
See the following example:*/

SELECT NOW();
/*-------------------------------*/
2017-03-18 08:21:36.175627+07
/*
Note that the NOW() function returns current date and time based on
the database server’s time zone setting.*/
Posted by: Guest on July-02-2021
0

postgresql get date now

SELECT NOW();
              now
-------------------------------
 2017-03-18 08:21:36.175627+07
Posted by: Guest on October-08-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language