在sql server中使用货币$格式?

发布于 2024-10-15 23:26:31 字数 112 浏览 3 评论 0原文

我的 SQL 数据库中有 645.000 等数据,我需要对其进行格式化以包含货币符号,例如 $645.000

我如何在 SQL 中实现此目的?

I have data in my sql database like 645.000 and i need to format it to include currency symbols e.g., $645.000

How can I achieve this in SQL?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

依 靠 2024-10-22 23:26:31

您不需要也不应该在 SQL Server 中对其进行格式化 - 相反,您的应用程序需要针对 UI 对其进行格式化。

您没有说明您的应用程序是用什么编码的,例如在 C# 中我们可以使用

Label1.Text = string.Format("Amount is {0:c}", amount);

然后您可以确定它不仅会使用正确的货币符号,还会使用正确的小数和千位分隔符符号。

You don't need to and should not be formatting it in SQL Server - instead it's your application that needs to format it for the UI.

You didn't say what your application is coded in, e.g. in C# we could use

Label1.Text = string.Format("Amount is {0:c}", amount);

Then you can be sure that not only will it use the correct currency symbol, it will also use the correct decimal and thousands separator symbols.

最佳男配角 2024-10-22 23:26:31

SQL Server 无法控制数字在客户端应用程序中的显示方式。修改应用程序设置、Windows 控制面板或程序代码以更改数字的显示方式。

SQL server has no control over how numbers are displayed in your client application. Modify the application settings, Windows control panel or your program code to change the way numbers are displayed.

无名指的心愿 2024-10-22 23:26:31

您的列的数据类型是什么?

一般来说,货币前缀只能在 UI(用户界面)中添加,而在数据库级别,您应该只使用数字。存储货币值的最佳数据类型是 MONEY。

what is the datatype of your column?

In general currency prefixes should be added only in the UI (User Interface) and at the database level you should work just with numbers. Best data type to store money values is MONEY.

望喜 2024-10-22 23:26:31

如果您确实需要从数据库而不是从 UI 执行此操作,请参阅此内容。

http://www.java2s.com/Code/SQLServer/Data-Type /Formatmoneycurrency.htm

Refer this if you really need to do this from the database rather than from the UI.

http://www.java2s.com/Code/SQLServer/Data-Type/Formatmoneycurrency.htm

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文