declare @tableId int set @tableId = object_id('Atmonthd') if not exists ( select * from syscolumns where id = @tableId and name = 'OTShift_Hours' ) begin alter table Atmonthd add OTShift_Hours float end
declare @tableId int set @tableId = object_id('Atmonthd') if not exists ( select * from syscolumns where id = @tableId and name = 'OTShift_Hours' ) begin alter table Atmonthd add OTShift_Hours float end