I have a table like this:
create table1 (field1 int, field2 int default 5557, field3 int default 1337, field4 i
You can write in this way
GO ALTER TABLE Table_name ADD column_name decimal(18, 2) NOT NULL CONSTRAINT Constant_name DEFAULT 0 GO ALTER TABLE Table_name SET (LOCK_ESCALATION = TABLE) GO COMMIT