数据库中执行use命令的作用

2024-11-09 04:01:12
推荐回答(2个)
回答1:

GO的意思是分批处理语句有加这个GO ,就执行GO 行的代码,执行后再执行接下来的代码,像这样的情况下就要用到use GO ,分批处理数据
use master
go
if exists (select * from sysdatabases where name = 'kejianDB')
drop database kejianDB
go
create database kejianDB
go
use kejianDB
go
--(行业表)
create table Trade
(
tra_Id int primary key identity(1,1) not null, --行业ID (主键、自增长)
tra_Name varchar(50) not null --行业名称
)
go

回答2:

指定使用的数据库