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

相关文章:

  • 2021-07-07
  • 2022-12-23
  • 2022-12-23
  • 2021-12-26
猜你喜欢
  • 2022-12-23
  • 2021-12-09
  • 2022-12-23
  • 2022-12-23
  • 2021-12-31
  • 2022-03-06
  • 2022-12-23
相关资源
相似解决方案