Re: Finding Max Value in a Row

Поиск
Список
Период
Сортировка
От Thomas Kellerer
Тема Re: Finding Max Value in a Row
Дата
Msg-id jojr3q$uof$1@dough.gmane.org
обсуждение исходный текст
Ответ на Re: Finding Max Value in a Row  (Carlos Mennens <carlos.mennens@gmail.com>)
Список pgsql-sql
Carlos Mennens wrote on 11.05.2012 21:50:
> On Fri, May 11, 2012 at 3:44 PM, Thomas Kellerer<spam_eater@gmx.net>  wrote:
>> Use this:
>>
>> alter table users
>>     alter column users_id type integer using to_number(users_id, '99999');
>>
>> (Adjust the '99999' to the length of the char column)
>
> When you wrote "Adjust the '99999' to the length of the char column,
> do you mean change '99999' to '312' if my last used maximum value was
> 312? So the next sequence primary key value would be '313', right?
>
No, the number of 9's defined the number of digits in the numbers.
There must not be less 9's in the format mask than the number of digits in the highest value.

The above example would create wrong values if the highest "number" was 100000

Check the manual about details on the format mask for to_number()






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

Предыдущее
От: Carlos Mennens
Дата:
Сообщение: Re: Finding Max Value in a Row
Следующее
От: Thomas Kellerer
Дата:
Сообщение: Re: Finding Max Value in a Row