Wrox Programmer Forums
|
SQL Server 2000 General 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 software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old May 1st, 2004, 08:26 AM
Authorized User
 
Join Date: Nov 2003
Posts: 29
Thanks: 0
Thanked 0 Times in 0 Posts
Default Stored Procedure...

Hi,
How do I write a stored procedure for the below SQL Query.

select UserID,UserName from [User] where UserID in (1,4,5)

Meaning: I would like to have a way for my Stored Procedure to pass 1,4,5 as a parameter. The number of IDs is going to be dynamic... Can I have a text as param and a mechanism in which i can do a split and ...
Please Help!

Advice,
Babloo
 
Old May 1st, 2004, 07:15 PM
Friend of Wrox
 
Join Date: Nov 2003
Posts: 625
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to jemacc
Default

You may want to try something like this, hopefully it will give you and idea.

CREATE PROCEDURE get_User_info
@UserName varchar (20)
@userID Int output
as
SELECT @UserName= UserName
FROM [user]
WHERE UserID = @UserID
return
go



 
Old May 1st, 2004, 11:25 PM
Friend of Wrox
 
Join Date: Jun 2003
Posts: 996
Thanks: 2
Thanked 11 Times in 11 Posts
Send a message via Yahoo to melvik
Default

sure u can! i guess u need something like this:

Code:
CREATE PROCEDURE dbo.ProcName
@Users varchar (50)
AS
 DECLARE @SelectText varchar(500)
  SET @SelectText = 'SELECT UserID,UserName FROM [User] WHERE UserID in('+@Users+')'
  EXECUTE (@SelectText)
GO
HTH.

Always:),
Hovik Melkomian.





Similar Threads
Thread Thread Starter Forum Replies Last Post
stored procedure prashant_telkar SQL Server 2000 1 July 9th, 2007 07:57 AM
Stored Procedure jezywrap SQL Server ASP 1 January 3rd, 2007 12:29 AM
stored procedure kdm260 SQL Server 2000 2 June 19th, 2006 04:45 PM
Stored Procedure rajanikrishna SQL Server 2000 0 July 18th, 2005 05:01 AM
Help About Stored Procedure zhuge6 BOOK: ASP.NET Website Programming Problem-Design-Solution 3 May 20th, 2005 09:27 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.