一、添加字段的命令如下:alter table tableName add newColumn varchar(8) comment '新添加的字段'
1、添加单行字段:
ALTER TABLE role
ADD `module` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '模块'
2、添加多行字段:
ALTER TABLE role
ADD COLUMN `module` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '模块',
ADD COLUMN `type` VARCHAR(30) NOT NULL COMMENT '项目' AFTER `default_module`
扩展资料
增加字段注意事项:1、在增加字段的语句中需要注意的是,comment为注释,就像在java中//作用是一样的。
2、comment后需要加单引号将注释引起来。
3、创建新表的脚本中,可在字段定义脚本中添加comment属性来添加注释。
参考资料 百度百科 mySQL
添加字段
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
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)