SQL Server 資料庫增刪改查

2021-10-22 07:16:46 字數 384 閱讀 7418

sql server 資料庫

新增字段

alter table 表名 add 欄位名 varchar(50) null

修改字段

execute sp_rename 『表名.原欄位名』,『新欄位名』

刪除字段

alter table 表名 drop column 欄位名

表中新增自增id

alter table 表名 add 欄位名 int primary key identity(1,1) not null

修改表名

exec sp_rename 『原表名』, 『新錶名』;

修改字段屬性

alter table 表名 alter column 欄位名 資料型別 not null

SQL SERVER 資料庫表列的增刪改操作

syntax alter table tablename add columnname datatype 是否可空 預設值 eg alter table t user add email not null default syntax alter table tablename drop colum...

資料庫增刪改查

我們知道當我們的表建立後重複執行會出錯,一般我們會這麼處理 create table if not exists stuinfo 學了新建表我們還應該知道乙個東西,如何刪除表 deop table table name 怎麼檢視別人的見表語句呢 show create table stuinfo 怎...

資料庫簡單增刪改

記得大一時對資料庫還是比較感冒的,但是現在叫我再像以前一樣去寫sql語句似乎有點難,分享乙份增刪改吧 資料庫語句 ddl語句 建立表和刪除表 create和drop 建立表的sql語句 欄位id代表主鍵 唯一 欄位name等等,欄位名後面跟型別 除開主鍵型別其實可以不寫 create table i...