MYSQL 多表批量新增字段

2021-10-10 11:54:00 字數 2092 閱讀 2223

set @exe = concat('alter table ',tab," add create_date date comment '建立時間'");

prepare sql1 from @exe;

execute sql1;

end if;

if not exists(select 1 from information_schema.columns where table_name=tab and column_name='create_user') then

set @exe = concat('alter table ',tab," add create_user varchar(50) comment '建立人'");

prepare sql1 from @exe;

execute sql1;

end if;

if not exists(select 1 from information_schema.columns where table_name=tab and column_name='modified_date') then

set @exe = concat('alter table ',tab," add modified_date date comment '修改時間'");

prepare sql1 from @exe;

execute sql1;

end if;

if not exists(select 1 from information_schema.columns where table_name=tab and column_name='modified_user') then

set @exe = concat('alter table ',tab," add modified_user varchar(50) comment '修改人'");

在這裡插入**片

oracle 多表批量新增相同字段

目標 實現方法 先查詢表空間包含的所有表 此處表空間名要注意大小寫 select alter table table name add 欄位名 字段型別 from all tables where owner 表空間名 將查詢得出的結果右鍵全選並複製,將複製的結果貼上到sql視窗中執行即可。在網上還...

批量新增字段

將其它圖層 圖層a b 的字段新增到另一圖層 圖層c 屬性表中 下圖中 氣象資料201706 圖層已有6個字段,現在想將 point 圖層中除了objectid shape之外的字段新增到 氣象資料201706 圖層中。具體 2020 1 19 將其它圖層 圖層a b 的字段新增到另一圖層 圖層c ...

mysql 新增字段 MySql新增字段命令

mysql 新增字段 alter table t user add column user age int 11 default null comment 年齡 after user email mysql 修改字段 alter table user10 modify email varchar 2...