luvmy2kids
MIS
I have to stored procedures that I am using to call a report:
exec udsp_getcandidateinfobyid @candidateid = {?@candidateid}
exec udsp_CandidatesSupplemental @candidateid = {?@candidateid}
how can I get these to join so I won't have to type the parameter @candidateid twice....
exec udsp_getcandidateinfobyid @candidateid = {?@candidateid}
exec udsp_CandidatesSupplemental @candidateid = {?@candidateid}
how can I get these to join so I won't have to type the parameter @candidateid twice....