如题,如何判断数据库的库和表是否存在?
继续学习奋勇向前
if exists(select*from sysobjects where name ='bbsUsers' )drop table bbsUsersbbsUsers 是要查询的表 sysobjects 是系统表
你在程序里有个连接数据库的操作,如果没有表或库的话,会有报错信息
if exists(select*from sysobjects where name ='bbsUsers' )
drop table bbsUsers
bbsUsers 是要查询的表
sysobjects 是系统表
你在程序里有个连接数据库的操作,如果没有表或库的话,会有报错信息