SQL Server 2000General discussion of Microsoft SQL Server -- for topics that don't fit in one of the more specific SQL Server forums. version 2000 only. There's a new forum for SQL Server 2005.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the SQL Server 2000 section of the Wrox Programmer to Programmer discussions. This is a community of tens of thousands of software programmers and website developers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining today you can post your own programming questions, respond to other developers’ questions, and eliminate the ads that are displayed to guests. Registration is fast, simple and absolutely free .
Hi,
im new 4 sql server. i want to create sored procedures 4 insert,update and delete. so i dont have a knowledge to create those and i dont no how to create and wht's the goodway to do. pls help me. i need it.
thx
Hi,
I totallly agree with Jaime and Scott.
Here is an example of simple stored Proc for Delete statement,
///to delete particular EmpId from Employee table:
CREATE PROCEDURE DeleteParticularEmployee
@EmpId int
AS
Delete from Employee
where Emp_Id = @EmpId
GO