Mysql中存储过程中的一些常见用法总结

1. ...if [exists,[not exists]]...

...if exists ...

如: 删除表如果存在表A

drop table if exists A;

... if not exists

如:建表如果不存在表A

create table if not exists A(id int); 

create temporary table if not exists  v1(
 fac_id int
);

你可能感兴趣的:(mysql,table,存储)