Answers for "postgres insert timestamp without timezone"

0

postgres insert timestamp without timezone

INSERT INTO timestamp_demo (ts, tstz)
VALUES('2016-06-22 19:10:25-07','2016-06-22 19:10:25-07');Code language: SQL (Structured Query Language) (sql)
Posted by: Guest on June-10-2021
0

postgres insert timestamp without timezone

CREATE TABLE timestamp_demo (
    ts TIMESTAMP, 
    tstz TIMESTAMPTZ
);Code language: SQL (Structured Query Language) (sql)
Posted by: Guest on June-10-2021

Code answers related to "postgres insert timestamp without timezone"

Browse Popular Code Answers by Language