ALTER PROCEDURE [dbo].[spFetchWorkerDetails]
@WorkerID int
AS
BEGIN
SET NOCOUNT ON;
select *
from Member
where WorkerID =@WorkerID
ENDLoading
ALTER PROCEDURE [dbo].[spFetchWorkerDetails]
@WorkerID int
AS
BEGIN
SET NOCOUNT ON;
select *
from Member
where WorkerID =@WorkerID
ENDKnow the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sachin SinghPosted Jun 25, 2022, 8:37 AM