删除数据库和表
程序员文章站
2024-03-21 13:44:16
...
if DB_ID('asd')is not null
drop database asd
print '成功'
go
create database asd
go
use student2012
go
if object_id('asd','u')is not null
drop table asd
print '成功'
go
create table asd
(
sname int
)
go
上一篇: git 文档
下一篇: appium整理文档