sql create new column with default value of another column code example
Example 1: add column table sql default value
ALTER TABLE users
ADD visit_number INT DEFAULT 0;
Example 2: default column value in sql same as other column
ALTER TABLE tablename ADD newcolumn type NOT NULL DEFAULT (0)
Go
Update tablename SET newcolumn = oldcolumn Where newcolumn = 0
Go