適切なカルチャ情報を提供するために、SQL 2012 には FORMAT()
があります。 関数。以下に例を示します:
declare @f float = 123456.789;
select
[raw] = str(@f,20,3)
,[standard] = cast(format(@f, 'N', 'en-US') as varchar(20))
,[German] = cast(format(@f, 'N', 'de-DE') as varchar(20))
戻る
raw |standard |German |
---------------------|-----------|-----------|
123456.789 |123,456.79 |123.456,79 |
2 番目のパラメーターで、.NET と同じ規則でカスタム形式の文字列を指定することもできます。
ドキュメント:https://msdn.microsoft.com/en-US/library /hh213505.aspx