column label

Поиск
Список
Период
Сортировка
От Ryan
Тема column label
Дата
Msg-id 10814.65.102.128.233.1048280104.squirrel@fordparts.com
обсуждение исходный текст
Ответы Re: column label
Список pgsql-sql
Ok I have a query in a program that looks something like this

selectreference_number as foo,'(10,10)'::point <-> point(x,y) as distance
from imagemapwhere index_number = '2322' and block_number = '140'order by distancelimit 1;

I wanted to add a clause in where 'and distance < 30'
but according to the postgres manual it says I cannot do that for WHERE or
HAVING clauses, instead use the real name.

However dropping the 'as distance' from my query gives me a column name of
'?column?' which happens to not be worth a dang thing.

How can it be done?

(I suddenly have a feeling its going to require a subselect)

Ryan




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

Предыдущее
От: Stephan Szabo
Дата:
Сообщение: Re:
Следующее
От: Josh Berkus
Дата:
Сообщение: Re: Diffcult query