Hossein Moradinia
Hossein Moradinia

Reputation: 6244

How Can I Format Strings With T-Sql

I want use 1000 separator(,) for numeric values.

how can i format strings with T-Sql Functions?

Upvotes: 0

Views: 135

Answers (1)

Royi Namir
Royi Namir

Reputation: 148744

select convert(varchar(10), cast(1234.333 as money), 1)

Upvotes: 4

Related Questions