① 如何使用sql语句判断一个数据库是否已经存在
1.数据库
if exists(select 1 from master..dbo.sysdatabases where name='example')
print 'DataBase existed'
else
print 'Database not existed'
2.表
IF Exists(Select 1 From sysObjects Where Name ='表名专属' And Type In ('S','U'))
Print 'Exists Table'
Else
Print 'Not Exists Table'