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
Insert Data Stored Procedure in Sql Server
WhatsApp
Rakesh
Apr 13
2015
1.3
k
0
0
Create
procedure
sp_NewUser @U_FullName nvarchar(50),
@U_Name nvarchar(30),
@U_Email nvarchar(50),
@U_Contact nvarchar(15),
@U_Password nvarchar(20),
@U_City nvarchar(25),
@U_Area_P_Code nvarchar(10),
@UR_id
int
,
@U_CreateDate datetime
as
begin
set
nocount
off
insert
into
dbo.NewUser(
[U_FullName], [U_Name], [U_Email],
[U_Contact], [U_Password], [U_City],
[U_Area_P_Code], [UR_Id], [U_CreateDate]
)
values
(
@U_FullName,
@U_Name,
@U_Email,
@U_Contact,
@U_Password,
@U_City,
@U_Area_P_Code,
@UR_id,
GETDATE()
)
end
stored procedure
Up Next
Insert Data Stored Procedure in Sql Server