我实际上是在数据库中删除一个临时表.我必须删除它只存在于数据库中.请告诉我如何检查数据库中是否存在表格.
if object_id('tempdb..#myTempTable') is not null drop table #myTempTable