sqlserver中判断表或临时表是否存在的方法【点击查看详情】
sqlserver中判断表或临时表是否存在的方法:1、判断数据表是否存在 方法一: use yourdb; go if object_id(N'tablename',N'U') is not null print '存在' else print '不存在' 例如: use fireweb; go if object_id(N'TEMP_TBL',N'U') is not nu
相关视频/文章