IF EXISTS( SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'Product' AND COLUMN_NAME = 'PriceFinal') begin print 'Ok' end else begin alter table Product Add PriceFinal decimal(19,4) not null Default 0 end