表 字段 描述編輯

2022-02-18 20:18:42 字數 988 閱讀 1028

--修改表名

exec sp_rename '原表名', '新錶名';

--新增表描述

execute sp_addextendedproperty n'ms_description', '描述', n'user', n'dbo', n'table', n'表名', null, null

--修改表描述

execute sp_updateextendedproperty n'ms_description', n'描述', n'schema', n'dbo', n'table', n'表名'

--刪除表描述

execute sp_dropextendedproperty n'ms_description', n'schema', n'dbo', n'table', n'表名'

--新增字段

alter table 表名 add 字段 int null;

--修改字段型別

alter table 表名 alter column 字段 nvarchar(50) null;

--修改欄位名

exec sp_rename '[表名].[列名]','新列名'

--刪除字段

alter table 表名 drop column 欄位名 

--新增字段描述

execute sp_addextendedproperty n'ms_description','描述'

,n'user',n'dbo',n'table',n'表名',n'column',n'字段'

--修改字段描述

exec sp_updateextendedproperty 'ms_description','描述','user',

dbo,'table','表名','column',字段

--刪除字段描述

exec sp_dropextendedproperty 'ms_description','user',dbo,'table','表名','column',字段

sql語句實現增加表 字段描述性文字

建立表及描述資訊 create table 表 a1 varchar 10 a2 char 2 為表新增描述資訊 execute sp addextendedproperty n ms description 人員資訊表 n user n dbo n table n 表 null,null 為字段a...

如何得到資料庫中所有表字段及字段中文描述

如何得到資料庫中所有表字段及字段中文描述 以下資料,通過csdn的一位師兄從sql版主那得到 sql中 select case when a.colorder 1 then d.name else end n 表名 a.colorder n 字段序號 a.name n 欄位名 case when c...

如何得到資料庫中所有表字段及字段中文描述

如何得到資料庫中所有表字段及字段中文描述 以下資料,通過csdn的一位師兄從sql版主那得到 sql中 select case when a.colorder 1 then d.name else end n 表名 a.colorder n 字段序號 a.name n 欄位名 case when c...