difference between c and c++?
Answer Posted / ks
ALTER PROC [dbo].[sp_PAYDETAIL]
@studentid INT,
@admitdate VARCHAR(50),
@paymode VARCHAR(50),
@amount VARCHAR(50),
@ddno VARCHAR(50),
@bankname VARCHAR(50),
@courseapply VARCHAR(50)
AS
INSERT INTO TBL_PAYMENT
(StudentId,Date,PayMode,Amount,DDNo,BankName,CourseApplied)
VALUES
(@studentid,@admitdate,@paymode,@amount,@ddno,@bankname,@cou
rseapply)
/////////////////////
ALTER PROC [dbo].[sp_SHOWRECEIPTINFO]
@studentid INT
AS
SELECT ReceiptNo,CourseApplied,Amount,Date
FROM TBL_PAYMENT
WHERE StudentId=@studentid
////////////////////////////////
ALTER PROC [dbo].[sp_SHOWRECEIPT]
@studentid INT
AS
SELECT First_Name,Last_Name FROM TBL_STUDENTDETAIL
WHERE StudentId=@studentid
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What are the vectors in c++?
What is dev c++ used for?
what are Operators and explain with an example?
What is srand c++?
What is the benefit of learning c++?
Which coding certification is best?
Is it possible for a member function to delete the pointer, named this?
What is the default width for ouputting a long integer using the insertion operator?
Explain the difference between realloc() and free() in c++?
Can we declare a base-class destructor as virtual?
What is math h in c++?
What are the benefits of oop in c++?
What is boyce codd normal form in c++?
Why we use #include conio h in c++?
How to declare a function pointer?