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.

 All Forums
 SQL Server 2000 Forums
 Transact-SQL (2000)
 Parameter to lower case

Author  Topic 

Zath
Constraint Violating Yak Guru

298 Posts

Posted - 2006-10-18 : 17:18:06
Using sql server 2000, I have a stored procedure.

How do you set a parameter tolower case?

Such as @myParm.ToLower()

I know this is wrong and can't find the correct way.

Thanks,

Zath

snSQL
Master Smack Fu Yak Hacker

1837 Posts

Posted - 2006-10-18 : 17:27:22
User the lower and upper functions, like

lower(@myParm)
Go to Top of Page

Zath
Constraint Violating Yak Guru

298 Posts

Posted - 2006-10-18 : 17:32:02
Excellent!

Thanks,

Zath
Go to Top of Page
   

- Advertisement -