简体   繁体   中英

Command for timestamp without timezone in pgAdmin?

How can I insert current timestamp without timezone in pgAdmin while inserting data manually?

I know that timestamp can be inserted using now() . Thanks!

As documented in the manual you can use localtimestamp (instead of current_timestamp or now() )

Check the manual :

SELECT LOCALTIMESTAMP;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM