多项选择题
建存储过程如下:CREATE procedure bookproc@id int,@title char(20)OUTPUT asselect @title=title from book where id=@id执行该存储过程的方法正确的是()
A.exec bookproc 1,@title output print @titleB.exec bookproc @id =1,@title output print @titleC.declare @title char(20)exec bookproc 1,@title output print @titleD.declare @title char(20)exec bookproc @id =1,@title output print @title
多项选择题 创建存储过程的片断如下:Create procedure proc_score@passed int=60,@excellent int=90AS以下()调用方式是正确的。
多项选择题 执行时,会在()出现错误。
单项选择题 SQLSever 2005中数据库中,关键字()标志着批处理的结束。