MS SQL 如果存在表,则删除此表
if exists(select * from dbo.sysobjects where id=object_id(N'T_CityGameCount'))
drop table T_CityGameCount
go
--------------------------------------------------------------------------------------------------------------------------------------------------------------
if object_id('[T_CityGameCount]') is not null
drop table T_CityGameCountgo
本文提供了一个SQL脚本示例,用于检查并删除数据库中名为T_CityGameCount的表,确保数据库结构的清晰和高效管理。
715

被折叠的 条评论
为什么被折叠?



