Want to become a Vibe Coder? Join Vibe Coding Training here
x
C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Nullable Parameter of SQL StoreProcedure
WhatsApp
Kailash Chandra Behera
Jun 01
2015
1.4
k
0
0
This following code gives example, how to declare null able parameter inside a store procedure:
CREATE
PROCEDURE
[dbo].[usp_Customer]
@CustomerID
int
,
@CustomerName nvarchar(50) =
NULL
,
AS
BEGIN
END
declara nullable parameter in store procedure
null able parameter
Store procedure parameter
Up Next
Nullable Parameter of SQL StoreProcedure