题目6单选题
考虑下面SQL Server的存储过程CREATE procedure lookup(@a int)AsIf@a is nullBeginPrint 'You forgot to pass in a parameter'Return EndSelect * from sysobjects where id = @aretunrnA. 该存储过程会打印"You forgot to pass in a parameter"B. 该存储过程会基于无参数情况做一个查找,返回表中的所有行C. 该存储过程有语法错误D. 服务器会打印一条消息,提示该存储过程需要提供一个参数