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 #include c++?
Is c++ still being used?
What is a flag in c++?
What is stream and its types in c++?
What are c++ templates used for?
Difference between class and structure.
Reverse the Linked List. Input: 1->2->3->4->5->NULL Output: 5->4->3->2->1->NULL
What is problem with overriding functions?
What is endl?
Which sort is best for the set: 1 2 3 5 4 a) Quick Sort b) Bubble Sort c) Merge Sort
What does iomanip mean in c++?
What is encapsulation in C++? Give an example.
Explain the pure virtual functions?
what is scupper?
What are c++ manipulators?