我正在尝试创建一个脚本来创建和填充表,然后为我的应用程序创建存储过程以访问它们。我的脚本运行得很好,直到我进入存储过程。我正在尝试将 .sql 文件读入我的应用程序,然后在一次执行中通过我的连接运行此脚本。有什么办法可以从这部分脚本中删除“go”关键字以使其在一次执行中运行?
if object_id('GetStudentByID') is not null
drop procedure GetStudentByID;
go
create procedure GetStudentByID
(@StudentID INT)
as
select StudentID,FirstName,LastName
from Student
where StudentID = @StudentID;