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 |
|
lane0618
Posting Yak Master
134 Posts |
Posted - 2002-05-20 : 12:15:46
|
| How do i get the " ' " symbol (single quote) to appear in the output parameter of a stored procedure?Thanks,Lane |
|
|
Page47
Master Smack Fu Yak Hacker
2878 Posts |
Posted - 2002-05-20 : 12:23:46
|
This is a tough one to answer with you saying, "Just put it there"create proc usp_lane @quote char(1) outasselect @quote = ''''godeclare @blah char(1)exec usp_lane @quote = @blah outselect @blahgo Is there more to the question?<O> |
 |
|
|
|
|
|