Answers for "insert new column sql same value"

SQL
0

Insert and initialize a SQL column with value dependent on another column data

UPDATE table
SET col = new_value
WHERE col = old_value
AND other_col = some_other_value;

UPDATE table
SET col = new_value
WHERE col = old_value
OR other_col = some_other_value;
Posted by: Guest on June-29-2020
0

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
Posted by: Guest on December-11-2020

Code answers related to "insert new column sql same value"

Code answers related to "SQL"

Browse Popular Code Answers by Language