Database - SQL Server 2000 - Discussion

Discussion Forum : SQL Server 2000 - General Questions (Q.No. 2)
2.
Using SQL Server 2000, which of the following symbols is used to indicate parameters in stored procedures?
#
%
&
@
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
1 comments Page 1 of 1.

VIMALRAJ said:   8 years ago
If we want to fetch the auto-generated parameter, and display that parameter in C# or VB, we will use @.

Example:

Set @id=@@IDENTITY.

Here @ symbol is used to display the id in web application.

Post your comments here:

Your comments will be displayed after verification.