Reputation: 6244
I want use 1000 separator(,) for numeric values.
how can i format strings with T-Sql Functions?
Upvotes: 0
Views: 135
Reputation: 148744
select convert(varchar(10), cast(1234.333 as money), 1)
Upvotes: 4