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 differences between java and c++?
What is a type library?
Write a program which uses Command Line Arguments
What is using namespace std in c++?
What is virtual destructor? What is its use?
What are the 4 types of library?
Differences between private, protected and public and give examples.
Which recursive sorting technique always makes recursive calls to sort subarrays that are about half size of the original array?
Define pre-condition and post-condition to a member function in c++?
What is a namespace in c++?
What are put and get pointers?
How can a called function determine the number of arguments that have been passed to it?
What is difference between class and structure in c++?
Discussion on error handling of C++ .
Will the following program execute?