我使用sql server 2014并使用以下代码:
if db_id('handel') is not null
drop database handel;
create database handel;
use handel;
我在第Database 'handel' does not exist. Make sure that the name is entered correctly.
行上收到了错误:use handel
,这让我大吃一惊,就像创建数据库之前的一行一样。有人可以帮忙吗?
答案 0 :(得分:6)
你错过了GO关键字:
if db_id('handel') is not null
drop database handel;
create database handel;
GO
use handel;