SQL ServerTSQLSyntax 2023-08-01 SQL - TSQL - AlterTable To add a default to a column already in the system12345alter table employeeswith nocheck add constraint Employees__ExpInMo__Def default 0 for ExpInMo go To add a foreign key to a column already in the system12345678alter table wq_rehab_small__lining with noCheck add Constraint wq_rehab_small__Lining__Uses__wq_rehab_small foreign key (ProjectName) references wq_rehab_small(ProjectName) on update cascade on delete cascadego