sql建表前删除存在的同名表

if exists(select * from sysobjects where name = 'xxx')
drop table xxx

原文地址:https://www.cnblogs.com/yuluhuang/p/3558802.html