Using Stored Procedure to access three tables
How to write a stored procedure to access three tables with parameter? Help
Know 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.
Pankaj Kumar ChoudharyPosted Jun 2, 2015, 4:35 AM
As
Begin
Select * from Table1 where IId=@iid;
Select * from Table2 where Iid=@IId and name=@name
select * from Table3 where IID=@IID
End
Sivaraman DhamodaranPosted Jun 2, 2015, 2:43 AM