select ,print均可以做输出
但如果想用print同时输出字符串和数字时,就需要遇到转换函数convert:
declare allstudents int
e.g.print’毕业人数为’+convert(char,@allstudents)
在执行时可能会遇到结果中显示了你的输出信息,而在消息中却没有,这原因可能是你使用了select
若想在消息中输出,改成print即可
select ,print均可以做输出
但如果想用print同时输出字符串和数字时,就需要遇到转换函数convert:
declare allstudents int
e.g.print’毕业人数为’+convert(char,@allstudents)
在执行时可能会遇到结果中显示了你的输出信息,而在消息中却没有,这原因可能是你使用了select
若想在消息中输出,改成print即可