I just want to get the right number format here in germany, so i need to show commas as decimal separator instead of points. But this...
DECLARE @euros money
DECLARE @euros money SET @euros = 1025040.2365 SELECT REPLACE(CONVERT(varchar(30), @euros, 0), '.', ',')
should do it (at least to get 1025040,24)
1025040,24