statement (of account)
Receive
ID_receive Date_receive Amount_receive TO_receive
From_receive Description_receive
1 2010/01/01 500 Bank Ahmed Payment
from the account
2 2010/02/01 700 Bank Ahmed Payment
from the account

Payment
ID_payment Date_payment Amount_payment From_payment
To_payment Description_payment
1 2010/03/01 1000 Ahmed Sales Sale goods
2 2010/04/01 1500 Ahmed Sales Sale goods

How can crate Stored Procedures for the statement (of
account) from these tables?
I want statement (of account) like this: (in sql 2005)
ID_ name description debit account credit
account balance







statement (of account) Receive ID_receive Date_receive Amount_receive TO_receive From_receive De..

Answer / prasanthi

create procedure sp_givesomename(@Id_Receive varchar(50))
as
select Id_Receive+'_'+Description_Receive+'debit account
credit account balance:'
+Amount_Receive from dbo.Receive where
Id_Receive=@Id_Receive

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More SQL Server Interview Questions

what are the different types of replication you can set up in sql server? : Sql server database administration

0 Answers  


can we have a nested transaction? : Sql server database administration

0 Answers  


Explain sql server service broker?

0 Answers  


what is web server?

3 Answers   Satyam,


Can we update data in a view?

0 Answers  






How is a full-text index updated?

0 Answers  


What are pessimistic lock and optimistic lock?

0 Answers  


Define self join in sql server joins?

0 Answers  


What is the use of nvl work?

0 Answers  


What is the use of “join” in sql server?

0 Answers  


How to override dml statements with triggers?

0 Answers  


Can you leave a union at any time?

0 Answers  


Categories