Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
AskSQLTeam
Ask SQLTeam Question
0 Posts |
Posted - 2001-10-14 : 22:25:21
|
| Mark Fletcher writes "Hi there,I've a stored proc as below ( Using SQLSvr 7 sp 6 )CREATE PROCEDURE test2 @pub_id varchar(1000)ASselect * from publishers where pub_id in ( @pub_id )If I execute the sp withexec test2 'TH01-S2001-3'I get row's back If I run it withexec test2 'LD01-S2001-1'I also get rows backHowever if I run like thisexec test2 "'TH01-S2001-3', 'LD01-S2001-1'"It doesn't...!?Thanks in advanced, Mark." |
|
|
|
|
|