Re: simple SQL question

Поиск
Список
Период
Сортировка
От Glenn Davy
Тема Re: simple SQL question
Дата
Msg-id 200706260102.44313.glenn@tangelosoftware.net
обсуждение исходный текст
Ответ на simple SQL question  (Joshua <joshua@joshuaneil.com>)
Список pgsql-novice
On Tue, 26 Jun 2007 12:30:34 am Joshua wrote:
> I have a column with the following values (example below)
>
> 5673
> 4731
> 4462
> 5422
> 756
> 3060
>
> I want the column to display the numbers as follows:
>
> 56.73
> 47.31
> 44.62
> 54.22
> 7.56
> 30.60
>

what happens when you try

select cast(MYCOL/100 as NUMERIC(4,2)) FROM MYTABLE

?

Glenn

> I have been playing around with string functions but cannot seem to
> figure out a quick solution. Does anyone have any suggestions?
>
> Please let me know.
>
> Thanks.
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 1: if posting/reading through Usenet, please send an appropriate
>        subscribe-nomail command to majordomo@postgresql.org so that your
>        message can get through to the mailing list cleanly

В списке pgsql-novice по дате отправления:

Предыдущее
От: Derrick Betts
Дата:
Сообщение: Re: simple SQL question
Следующее
От: Joshua
Дата:
Сообщение: another simple SQL question