sysdatabaes表与sysobjects表

database

sysdatabases表

sysdatabases是在master数据库中的表,是一个只读的表,里面包含所有数据库的信息

 

在创建数据库是进行存在性检测

use master

go

ifexists(select*from sysdatabases where name="数据库名")

dropdatabase 数据库名

createdatabase 数据库名

go

 

sysobjects 表

sysobjects 在所有数据库中都存在的一个表,记录了在数据库内创建的没一个对象的信息

 

在数据库中新建一张表:检测表是否已存在

use student

go

Ifexists(select*from sysobjects where 条件(包含名字和类型,表的类型为‘U’))

droptable s

createtable s (字段)

go

 

以上是 sysdatabaes表与sysobjects表 的全部内容, 来源链接: utcz.com/z/533812.html

回到顶部