Declare @Id Int                               
Select @Id = Id From sysobjects Where Name = 'Tmp_Over_Under_Factor'
if not Exists(SELECT * FROM syscolumns WHERE id = @Id and Name = 'Note')
  Alter Table Tmp_Over_Under_Factor Add Note nvarchar(50) NULL