Answers for "alter table add date column"

SQL
12

create column sql server

ALTER TABLE table_name
ADD column_name datatype;
Posted by: Guest on March-15-2020
0

add colum date in sql

ALTER TABLE ADD COLUMN this_date DATE DEFAULT CURRENT_DATE;
Posted by: Guest on March-02-2021

Code answers related to "alter table add date column"

Code answers related to "SQL"

Browse Popular Code Answers by Language