in reply to Re: Re: Thousands separator - this is getting annoying
in thread Thousands separator - this is getting annoying
If possible, I'd put the burden of conversion on the database. Depending on what you're using, and how you're querying it, you might be able to use
SELECT INT(field) FROM table
SELECT CONVERT(NUMERIC (10,2),field) FROM table
good luck!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Thousands separator - this is getting annoying
by chipmunk (Parson) on Jan 17, 2001 at 00:20 UTC |