1. 程式人生 > 實用技巧 >MS-SQLSERVER 批量修改表中 某個欄位可為NULL

MS-SQLSERVER 批量修改表中 某個欄位可為NULL

-- 危險操作,處理前記得先備份資料庫


1
declare @sql varchar(500),@tbname varchar(100) 2 begin 3 4   -- 建立遊標 5   declare cursor_item cursor fast_forward for select [name] from sysobjects where xtype='U' AND id in(select id from syscolumns where name='myColumnName' and colstat=0 ) 6   open cursor_item;--開啟遊標 7   while
1=1 --開始迴圈 8   begin 9     fetch next from cursor_item into @tbname; --賦值到變數中 10     if(@@fetch_status!=0) break;--如果沒有結果退出迴圈
11 12     -- 拼接修改欄位的SQL語句 13     set @sql = 'alter table '+@tbname+' alter column myColumnName int NULL' 14 15     -- 執行拼接的SQL 16     exec(@sql); 17 18   end 19   close cursor_item --
關閉遊標 20   deallocate cursor_item 21 22 end;

注意:

syscolumns 儲存列資訊的系統表
sysobjects 儲存表資訊的系統表

 colstat=0 表示查詢非自增長標識列