使用程序:SQL Server 2008
时间:2020年6月
--使用主数据库
use master
go
if exists (select * from sys.databases where name = '数据库名称')
drop database 数据库名称
go
--数据库创建
create database DigitalProductShop
go
--使用创建的库
use 数据库名称
go
--判断当前表在数据库中是否存在
if exists (select * from sys.objects where name = '数据库表名)
drop table 数据库表名
--
create table 表名(
--表内容
)
go
要点:
1、每次使用数据库前需要调用数据库,红色方框内代表当前调用的数据库
2、每次运行完代码后需要以 go 结尾