mysql 删除检测数据为是滞含有该有则删除

1.mysql 删除检测数据为是滞含有该有则删除 

 drop TABLE   if EXISTS temp_visit_status_list ;


2.检查是滞有该临时表,没有则创建

 create temporary table if not exists temp_aaa -- 不存在则创建临时表
  ( a1  varchar(32),
    a2  varchar(50)
 );

猜你喜欢

转载自blog.csdn.net/builderwfy/article/details/53858622