欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

删除数据库和表

程序员文章站 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

相关标签: sql

上一篇: git 文档

下一篇: appium整理文档