本文介绍了更改sql中的Money格式列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述







我想知道如何更改SQL Server中money栏的格式。



目前在我的数据库中,money栏显示为1234,56



我想要它是1234.56



任何想法我怎么能改变这个?

Hi


I would like to know how would i be able to change the format of the money column in SQL Server.

Currently on my database the money column is showing as 1234,56

I would like it to be 1234.56

any idea how i could change this?

推荐答案


ALTER TABLE table_name
ALTER COLUMN column_name datatype


这篇关于更改sql中的Money格式列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 08:55