How to insert current datetime (timestamp) with insert query in PostgreSQL

1 Answer

0 votes
INSERT INTO table_name (first_name, last_name, password, date_created, email) 
VALUES('fname', 'lname', 'pass123', current_timestamp, 'name@email.com');
SELECT first_name, to_char(date_created, 'yyyy-mm-dd hh:mi:ss') as current_date
FROM "table_name"

--- first_name   current_date
--- Avi          2020-05-08 05:35:46

 



answered May 9, 2020 by avibootz
edited May 9, 2020 by avibootz

Related questions

1 answer 285 views
1 answer 262 views
2 answers 321 views
...