標籤:lse sqlserver 刪除 展開 生產環境 文法 儲存 管理 font
刪除資料列
開發或者生產過程中多建、錯誤或者重複的資料列需要進行刪除操作。
使用SSMS資料庫管理工具刪除資料列方式一
1、開啟資料庫->選擇資料表-》展開資料表-》展開資料列-》選擇要刪除的資料列-》右鍵點擊-》選擇刪除-》在彈出框中點擊確定。
方式二
1、開啟資料庫-》開啟資料表-》右鍵點擊-》選擇設計。
2、在設計檢視視窗中-》選中要刪除的資料列-》右鍵點擊-》選擇刪除-》點擊儲存按鈕(或者ctrl+s)。
使用T-SQL指令碼刪除資料列刪除單個資料列
文法:alter table 資料名.dbo.表名 drop column 列名;
樣本:alter table [testss].dbo.[test1] drop column height3;
刪除多個資料列
文法:alter table 資料名.dbo.表名 drop column 列名1,列名2;
樣本:alter table [testss].dbo.[test1] drop column height1,height2;
刪除帶有預設值的資料列
文法:
begin transaction
go
alter table 資料名.dbo.表名 drop constraint 約束名;
go
alter table 資料名.dbo.表名 drop column 列名;
樣本:
begin transaction
go
alter table [testss].dbo.[test1] drop constraint DF__test1__testid__151B244E;
go
alter table [testss].dbo.[test1] drop column testid;
總結
在開發或者測試過程中,對於列的修改可是任意操作的,一旦到了生產環境中,無論資料列出現何種問題,都不要輕易修改和刪除,如果必須要修改和刪除,一定要先備份再操作。
SQLServer刪除資料列