2013-10-02
2,889 reads
2013-10-02
2,889 reads
2013-09-25
3,010 reads
2013-09-24
3,017 reads
2013-09-16
2,803 reads
2012-11-30
2,420 reads
2012-08-15
3,019 reads
2012-07-12
2,944 reads
2012-07-10
3,254 reads
By gbargsley
One of the first things I review when I inherit a new SQL Server...
By Arun Sirpal
It’s 07:43. Someone’s already left a message. “Something’s wrong with the DB server.” You...
By davebem
I’ve had a Dropbox account for years. Like a lot of people, I started...
hi a peer of mine who ive never known to be wrong says a...
Comments posted to this topic are about the item Displaying Money
Comments posted to this topic are about the item The Slow Growing Problems
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