Answers for "how to add a timestamp column in sql"

SQL
0

add timestamp column to existing table t-sql

ALTER TABLE Tbl ADD time_stamp TIMESTAMP
Posted by: Guest on January-30-2021
-1

sql syntax create timestamp column

CREATE TABLE tablename (columnname datetime NOT NULL DEFAULT CURRENT_TIMESTAMP)
Posted by: Guest on June-11-2020

Code answers related to "how to add a timestamp column in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language