摘要:
第一步, 创建存储过程 CREATE PROCEDURE rq_test_prce ( @projId int, @taskId int ) AS select top 10 * from task where proj_id=@projId and task_id=@taskId ... 阅读全文
摘要:
CREATE PROCEDURE rq_test_prce ( @projId int ) AS select top 10 * from task where proj_id=@projId GO 通过 {call rq_test_prce('[?projId|760?]')} 调用。 rq... 阅读全文