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 advantages of prototyping?
Explain the static storage classes in c++.
What is a constant? Explain with an example.
What is the standard template library (stl)?
What is private inheritance?
Why is main function important?
Can we run c program in turbo c++?
what is VOID?
What is the default access level?
What is a base class?
Is multimap sorted c++?
When should I use unitbuf flag?
Write a program to interchange 2 variables without using the third one.
What is runtime errors c++?
write a porgram in c++ that reads an integer and print the biggest digit in the number