MySql新增列的时候判断是否存在
drop procedure if exists schema_change; delimiter ‘;;‘; create procedure schema_change() begin if not exists( select * from information_schema.`COLUMNS` where TABLE_NAME=‘QYTB_DYAQ‘ and COLUMN_NAME=‘BDCQYWBSM‘) then alter table QYTB_DYAQ add BDCQYWBSM CHAR(1); end if; end;; delimiter ‘;‘; -- 调用存储过程 call schema_change(); drop procedure if exists schema_change;
我们通过这段代码感觉只要存储过程的内容体就能实现目的,为什么还要创建一个存储过程来处理呢?
因为Mysql不支持直接写入如上内容体的格式。于是只能曲线救国了。
相关推荐
hungzz 2020-06-16
gsmfan 2020-06-14
ncomoon 2020-06-14
xiaobaif 2020-06-13
hanshangzhi 2020-06-12
84251449 2020-05-17
cyyking 2020-05-17
jiony 2020-05-11
herohope 2020-05-03
dayi 2020-04-11
Accpcjg 2020-03-05
勇往直前 2020-03-04
要啥自行车一把梭 2020-01-19
Omega 2020-08-16
zjyzz 2020-08-16
zhaojp0 2020-06-27
zjuwangleicn 2020-06-25
wenjieyatou 2020-06-17
liaomingwu 2020-06-16