多个相同结构的表的字段的修改、添加

--修改多个相同结构的表的字段

declare @TableName varchar(50);
declare cur_tableNames cursor for select name from sysobjects where type = 'U' and Name like 'box_mac_%' order by name ;
open cur_tableNames
fetch next from cur_tableNames into @TableName
while @@FETCH_STATUS=0
begin
print 'exec sp_rename ''['+@TableName+'].[days5d_quiet_start]'', ''days5_quiet_start'', ''COLUMN'''
EXEC ( 'exec sp_rename ''['+@TableName+'].[days5d_quiet_start]'', ''days5_quiet_start'', ''COLUMN''')
fetch next from cur_tableNames into @TableName
end
close cur_tableNames

 

--存储过程 (多个相同结构的表的字段添加)

USE [tongji.yxyxh]
GO
/****** Object: StoredProcedure [dbo].[UpdateTable_box_mac] Script Date: 07/28/2017 13:59:26 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER procedure [dbo].[UpdateTable_box_mac]
as
begin
declare @TableName varchar(50);
declare cur_tableNames cursor for select name from sysobjects where type = 'U' and Name like 'box_mac_%' order by name;
open cur_tableNames
fetch next from cur_tableNames into @TableName
while @@FETCH_STATUS=0
begin
exec( 'alter table '+@TableName +' add [days3_start] [bit] NULL')
exec( 'alter table '+@TableName +' add [days5_start] [bit] NULL')
exec( 'alter table '+@TableName +' add [days3_quiet_start] [bit] NULL')
exec( 'alter table '+@TableName +' add [days5_quiet_start] [bit] NULL')
fetch next from cur_tableNames into @TableName
end
close cur_tableNames

end

转载于:https://www.cnblogs.com/AlexLeeLi/p/7249937.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值