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 abstraction c++?
what is Loop function? What are different types of Loops?
Why we use #include conio h in c++?
Write a program using display() function which takes two arguments.
What does scope resolution operator do?
What is the difference between structure and class?
What does new return if there is insufficient memory to make your new object?
Can we use this pointer inside static member function?
What is new in c++?
What is the keyword auto for?
What is the difference between function overloading and operator overloading?
What does obj stand for?
Is c or c++ more useful?
Describe delete operator?
Why isn't sizeof for a struct equal to the sum of sizeof of each member?