日期:2014-05-16 浏览次数:20438 次
if object_id('tb') is not null drop table tb go create table tb ( .. varchar(50), ... datetime, ... ) insert into tb select ...... union all select ...