Wie die Frage: Wie kann festgestellt werden, ob die Datenbankbibliotheken und -tabellen vorhanden sind?
继续学习奋勇向前
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 是系统表
你在程序里有个连接数据库的操作,如果没有表或库的话,会有报错信息