现在做程序员,发现我老是喜欢忘记前段时间运用的东西,不知道是因为每天的工作内容太杂了还是自身的原因。
嗨。。。。没办法,只要吧自己长期喜欢忘记的东西记录下来。
存储过程只是我的这个计划的开始,哈哈
创建存储过程的基本格式:
Code
--Developer:zhihui Zhou
--Date:New()as 2008-10-18
--Email:zhou5791759@163.com
--QQ:297510342
--create time to update
Create procedure update_createtime
@tbID int
as
update t_member set createTime = GetDate() where tbID = @tbID
go
添加返回值时就可以这样做
Code
--Developer:zhihui Zhou
--Date:New()as 2008-10-18
--Email:zhou5791759@163.com
--QQ:297510342
Create procedure update_createtime
@tbID int,
@createTime nvarchar(50) output
as
update t_member set createTime = GetDate() where tbID = @tbID
set @createTime = (select createTime from t_member where tbID = @tbID)
go
-----------------------------------------
--Call SQL in the method for
--start
declare @createTime nvarchar(50)
exec update_createTime 1,@createTime output
--end