MySql新增列的时候判断是否存在
Posted 段江涛IT
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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不支持直接写入如上内容体的格式。于是只能曲线救国了。
以上是关于MySql新增列的时候判断是否存在的主要内容,如果未能解决你的问题,请参考以下文章
SQL SERVER 新增表新增字段修改字段 判断表是否存在
spark关于join后有重复列的问题(org.apache.spark.sql.AnalysisException: Reference '*' is ambiguous)(代码片段