如何判断一个已知的表中是否存在某个字段,如果不存在就创建它.

时间:2023-01-07 15:10:21

来源http://blog.csdn.net/ChampaignWolf/archive/2006/10/08/1325894.aspx

 if not exists(select 1 from syscolumns where id=object_id('表名') and name='列名')
    alter table 表名 add 列名 data_type ...
go