Answers for "postgresql create table default value timestamp"

SQL
0

postgresql create table default value timestamp

CREATE TABLE `table_name`(
	`id` SERIAL PRIMARY KEY,
	`created_at` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
	`modified_at` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
)
Posted by: Guest on September-23-2021

Code answers related to "postgresql create table default value timestamp"

Code answers related to "SQL"

Browse Popular Code Answers by Language