sql server中如何写脚本为数据表增加一个字段

sql server中如何写脚本为数据表增加一个字段,第1张

sql server 使用SQL语句数据表增加一个字段,使用alter table子句。

语法:alter table 表格名 add 字段名 数据类型 -alter table table_name add col_name char(5)

例,表格:tt

新增字符型字段 :test_column

SQL语句:

alter table tt add test_column char(5)

添加字段

drop procedure if exists add_column_if;

delimiter $$

create procedure add_column_if()

begin

declare

iCnt int

select count(*) into iCnt from information_schema.columns

where table_schema=(select database())

and table_schema='BONDCONTRACE_TEST'

andcolumn_name='AAA'

if (iCnt=0) then

alter table bondcontrac_test add  AAA varchar(10) default null

end if

end

call add_column_if

drop procedeure add_column_if$$

delimiter

加索引

drop  procedure if exits add_index_id

delimiter $$

create procedure add_index()

begin

declare iCint int

select count(*) from information_schema.statistcs

where table_schema=''

and table_name=''

and index_name=''

and column_name in ('','')

if (iCint=0) then

alter table tablename add key index_name('','')

end if

end'

call add_index_if

drop procedure add_index_if$$

delimiter


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/10031553.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-04
下一篇 2023-05-04

发表评论

登录后才能评论

评论列表(0条)

保存