Viewing 4 posts - 1 through 4 (of 4 total)
Thanks Ryan
😀
January 6, 2010 at 3:49 pm
Compiled this function and tried to run it against AdventureWorks database.
Got error:
Msg 208, Level 16, State 1, Line 1
Invalid object name 'Tally'.
:crying:
January 6, 2010 at 3:42 pm
So if I want to find only Names with non0latin characters - I should use this SQL?
select *, dbo.IsHighAscii(TheName) As HasHighAscii from names where HasHighAscii = 1
January 6, 2010 at 11:38 am
How can I add apostrophe to this expression - char(39)?
For example, I should select all alpha-numeric name. However, some names contains apostrophe, like O'Brien.
select * from YourTable where YourColumn like...
January 6, 2010 at 11:29 am
Viewing 4 posts - 1 through 4 (of 4 total)