CLR Integration in SQL
Learn how to build a CLR function that can be used to perform string manipulations that might be rather complex in T-SQL.
2012-04-05
8,163 reads
Learn how to build a CLR function that can be used to perform string manipulations that might be rather complex in T-SQL.
2012-04-05
8,163 reads
Reading tutorials is fine. Shipping something is better. If you are trying to break...
By Steve Jones
We work hard at Redgate, though with a good work-life balance. One interesting observation...
By Arun Sirpal
Fourth in a series on Ai and databases. What Read-Only Advisory Actually Means A...
Comments posted to this topic are about the item Displaying Money
Comments posted to this topic are about the item Calculating the Harmonic Mean in...
Comments posted to this topic are about the item Liability for AI Errors
I want to get the currency sign displayed with my amount stored in a money type. Does this work?
DECLARE @Amount MONEY; SET @Amount = '?1500'; SELECT CAST( @Amount AS VARCHAR(30)) AS EurosSee possible answers