请教这句话什么意思

请问这句话什么意思?
一个sp其中有个调用
......
EXEC   @retcode=sp3_tb_trClassroom_u
......

最后一句话是这个
select   @retcode   as   retcode
什么意思?有点不明白

------解决方案--------------------
select @retcode as retcode

---------
做一个结果查询出来.可以返回一个记录集!
------解决方案--------------------
@retcode是存儲過程的返回值
------解决方案--------------------
select @retcode as retcode
--查詢變量的值, 別名是retcode
------解决方案--------------------
select @retcode as retcode
查询出结果
格式是:
-----------------------
retcode
3