Re: Bug in my ( newbie ) mind?

Поиск
Список
Период
Сортировка
От Tod McQuillin
Тема Re: Bug in my ( newbie ) mind?
Дата
Msg-id Pine.GSO.4.31.0102202332430.13057-100000@sysadmin
обсуждение исходный текст
Ответ на Bug in my ( newbie ) mind?  (Christopher Sawtell <csawtell@xtra.co.nz>)
Список pgsql-general
On Wed, 21 Feb 2001, Christopher Sawtell wrote:

> chris=# select phone_prefix.prefix order by random() limit 1 || '-' ||
> lpad((random()*10000)::int, 4, '0')::text as "Phone Number";

All the things you are selecting need to come in the first part of the
query.

like,

SELECT prefix || '-' || lpad((random()*10000)::int, 4, '0')::text as
"Phone Number" from phone_prefix order by random() limit 1;
--
Tod McQuillin



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

Предыдущее
От: Christopher Sawtell
Дата:
Сообщение: Bug in my ( newbie ) mind?
Следующее
От: Dan Lyke
Дата:
Сообщение: Bug in my ( newbie ) mind?