SQL判断临时表是否存在时间:2022-06-22 06:32:15 IF EXISTS(select * from tempdb..sysobjects where id=object_id('tempdb..#tb')) BEGIN DROP TABLE #tb END