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 is the use of vtable?
What is a null object in c++?
What is an adjust field format flag?
What are destructors?
When should I use unitbuf flag?
What's the most powerful programming language?
What do you understand by zombie objects in c++?
What are c++ files?
What are member functions used in c++?
Explain the differences between private, public and protected and give examples.
How does work in c++?
What is the equivalent of Pascal's Real a) unsigned int b) float c) char
Describe Trees using C++ with an example.
What are the defining traits of an object-oriented language?
What do you mean by volatile and mutable keywords used in c++?